aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTakashi Sakamoto <o-takashi@sakamocchi.jp>2022-07-14 18:08:30 +0900
committerTakashi Sakamoto <o-takashi@sakamocchi.jp>2022-07-14 18:08:30 +0900
commit7a2396ee30502b620516394cd7937241594030fc (patch)
tree59c5bf9d05263fa3e1eab8bda762d7ceb1eae9a9
parent821b73827c5f6885ee853f7786f1dff958e9d9c8 (diff)
downloadhinawa-rs-7a2396ee30502b620516394cd7937241594030fc.tar.gz
hinawa/hinawa-sys: bump crate version to 0.7.0 for official releasev0.7.0
It's official release in crates.io. Signed-off-by: Takashi Sakamoto <o-takashi@sakamocchi.jp>
-rw-r--r--README.rst4
-rw-r--r--hinawa-sys/Cargo.toml2
-rw-r--r--hinawa/Cargo.toml4
-rw-r--r--hinawa/README.md2
4 files changed, 6 insertions, 6 deletions
diff --git a/README.rst b/README.rst
index e917792..856fcce 100644
--- a/README.rst
+++ b/README.rst
@@ -2,7 +2,7 @@
Rust bindings for hinawa library
================================
-2022/07/08
+2022/07/14
Takashi Sakamoto
Introduction
@@ -18,7 +18,7 @@ Introduction
* Unfortunately, it includes no support for ``libhinawa 1`` or former (``Hinawa-2.0.gir`` or
``Hinawa-1.0.gir``) as well as sound unit support deprecated at libhinawa v2.5.0.
-* The latest release is version 0.0.91. This is pre-release to publish crates in crates.io.
+* The latest release is version 0.7.0.
Crates
======
diff --git a/hinawa-sys/Cargo.toml b/hinawa-sys/Cargo.toml
index 1ac0aa3..3b0781e 100644
--- a/hinawa-sys/Cargo.toml
+++ b/hinawa-sys/Cargo.toml
@@ -3,7 +3,7 @@ build = "build.rs"
edition = "2018"
links = "hinawa"
name = "hinawa-sys"
-version = "0.0.91"
+version = "0.7.0"
# For publishing.
authors = ["Takashi Sakamoto"]
categories = ["external-ffi-bindings", "hardware-support", "os::linux-apis"]
diff --git a/hinawa/Cargo.toml b/hinawa/Cargo.toml
index 93b7c29..31fc851 100644
--- a/hinawa/Cargo.toml
+++ b/hinawa/Cargo.toml
@@ -1,7 +1,7 @@
[package]
edition = "2018"
name = "hinawa"
-version = "0.0.91"
+version = "0.7.0"
# For publishing.
authors = ["Takashi Sakamoto"]
categories = ["api-bindings", "hardware-support", "os::linux-apis"]
@@ -22,7 +22,7 @@ name = "hinawa"
[dependencies]
libc = "0.2"
glib = "0.15"
-ffi = {package = "hinawa-sys", path = "../hinawa-sys", version = "0.0.91"}
+ffi = {package = "hinawa-sys", path = "../hinawa-sys", version = "0.7.0"}
[dev-dependencies]
gir-format-check = "^0.1"
diff --git a/hinawa/README.md b/hinawa/README.md
index eec6f9f..ab490a1 100644
--- a/hinawa/README.md
+++ b/hinawa/README.md
@@ -16,7 +16,7 @@ Add the following line to your Cargo.toml file:
```toml
[dependencies]
-hinawa = "0.0.91"
+hinawa = "0.7.0"
```
The API documentation is available in <https://docs.rs/hinawa/>.