aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTakashi Sakamoto <o-takashi@sakamocchi.jp>2022-07-08 10:27:36 +0900
committerTakashi Sakamoto <o-takashi@sakamocchi.jp>2022-07-08 10:48:47 +0900
commit955e8eef70c19c2b6fb4e233b66a60fbbba47cc1 (patch)
treec73f663ef59ebb0908c9cca16e4265fa056e1dd0
parent3a9a44bab659b771d09e2367f1e984f6e99fec3f (diff)
downloadhinawa-rs-955e8eef70c19c2b6fb4e233b66a60fbbba47cc1.tar.gz
hinawa/hinawa-sys: dump crate version to 0.0.91 for pre-release take 2v0.0.91
It's pre-release take 2 to publish crates in crates.io.
-rw-r--r--README.rst13
-rw-r--r--hinawa-sys/Cargo.toml2
-rw-r--r--hinawa/Cargo.toml4
-rw-r--r--hinawa/README.md2
4 files changed, 6 insertions, 15 deletions
diff --git a/README.rst b/README.rst
index 4bc5e65..beb1031 100644
--- a/README.rst
+++ b/README.rst
@@ -2,7 +2,7 @@
Rust bindings for hinawa library
================================
-2022/07/07
+2022/07/08
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.90. This is pre-release to publish crates in crates.io.
+* The latest release is version 0.0.91. This is pre-release to publish crates in crates.io.
License
=======
@@ -45,12 +45,3 @@ Examples
========
See ``hinawa/examples`` directory.
-
-How to generate FFI and API crates
-==================================
-
-::
-
- $ ./generator.py
-
-end
diff --git a/hinawa-sys/Cargo.toml b/hinawa-sys/Cargo.toml
index 1c5567c..1ac0aa3 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.90"
+version = "0.0.91"
# 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 8f84aee..93b7c29 100644
--- a/hinawa/Cargo.toml
+++ b/hinawa/Cargo.toml
@@ -1,7 +1,7 @@
[package]
edition = "2018"
name = "hinawa"
-version = "0.0.90"
+version = "0.0.91"
# 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"}
+ffi = {package = "hinawa-sys", path = "../hinawa-sys", version = "0.0.91"}
[dev-dependencies]
gir-format-check = "^0.1"
diff --git a/hinawa/README.md b/hinawa/README.md
index 1aeb5e9..cf507ad 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.90"
+hinawa = "0.0.91"
```
The API documentation is available in <https://docs.rs/hinawa/>.