aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTakashi Sakamoto <o-takashi@sakamocchi.jp>2023-10-29 23:36:58 +0900
committerTakashi Sakamoto <o-takashi@sakamocchi.jp>2023-10-29 23:36:58 +0900
commit4851ca15db70f7d163ece4d8ebe442a82c73e518 (patch)
treed3c84e52cfcb2188675d75b4910ff3b8a4f6180a
parent36f900a80df043ae0d9c0fe5b639ba05ffea565f (diff)
downloadhinawa-rs-4851ca15db70f7d163ece4d8ebe442a82c73e518.tar.gz
bump release version to 0.8.1v0.8.1
The micro update is to guarantee MSRV as rustc 1.67. 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 c4c0a71..cb5a602 100644
--- a/README.rst
+++ b/README.rst
@@ -2,7 +2,7 @@
Rust bindings for hinawa library
================================
-2023/07/16
+2023/10/29
Takashi Sakamoto
Introduction
@@ -18,7 +18,7 @@ Introduction
* Inconveniently, 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.8.0.
+* The latest release is version 0.8.1.
Crates
======
diff --git a/hinawa-sys/Cargo.toml b/hinawa-sys/Cargo.toml
index 3dce327..0cb7dd8 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.8.0"
+version = "0.8.1"
# 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 f17a77f..063f731 100644
--- a/hinawa/Cargo.toml
+++ b/hinawa/Cargo.toml
@@ -1,7 +1,7 @@
[package]
edition = "2018"
name = "hinawa"
-version = "0.8.0"
+version = "0.8.1"
# 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.8.0"}
+ffi = {package = "hinawa-sys", path = "../hinawa-sys", version = "0.8.1"}
[dev-dependencies]
gir-format-check = "^0.1"
diff --git a/hinawa/README.md b/hinawa/README.md
index fad159f..5d81022 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.8.0"
+hinawa = "0.8"
```
The API documentation is available in <https://docs.rs/hinawa/>.