aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTakashi Sakamoto <o-takashi@sakamocchi.jp>2023-08-03 22:11:38 +0900
committerTakashi Sakamoto <o-takashi@sakamocchi.jp>2023-08-03 22:11:38 +0900
commit7dcfb3d78682a1113c92de9f66d0c79b47687dcd (patch)
treed762a8e4533887efd8cbf2c4a8ba78385ef1a5d2
parent02e0b53c0bea858822030cb1300e1af8b40bdce9 (diff)
downloadhinawa-rs-7dcfb3d78682a1113c92de9f66d0c79b47687dcd.tar.gz
bump release version to 0.9.0v0.9.0
It's time to release new version since libhinawa 4.0.0 was released. Signed-off-by: Takashi Sakamoto <o-takashi@sakamocchi.jp>
-rw-r--r--README.rst12
-rw-r--r--hinawa/Cargo.toml4
-rw-r--r--hinawa/README.md4
-rw-r--r--hinawa/sys/Cargo.toml2
-rw-r--r--hinawa/sys/README.md2
5 files changed, 12 insertions, 12 deletions
diff --git a/README.rst b/README.rst
index b2e08d8..36c4bfe 100644
--- a/README.rst
+++ b/README.rst
@@ -8,17 +8,17 @@ Takashi Sakamoto
Introduction
============
-* This repository includes FFI and API bindings for ``libhinawa2`` v2.6.0 or later which
- provides ``Hinawa-3.0.gir``.
+* This repository includes FFI and API bindings for ``libhinawa`` v4.0.0 or later which
+ provides ``Hinawa-4.0.gir``.
* `<https://git.kernel.org/pub/scm/libs/ieee1394/libhinawa.git/>`_
* The crates are available in `crates.io <https://crates.io/>`_ as well.
-* 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.
+* Inconveniently, it includes no support for ``libhinawa`` v2.6.1 or former, which provides
+ ``Hinawa-3.0.gir``, ``Hinawa-2.0.gir``, and ``Hinawa-1.0.gir``.
-* The latest release is version 0.8.1.
+* The latest release is version 0.9.0.
Crates
======
@@ -41,7 +41,7 @@ MIT License
Dependencies
============
-* `libhinawa 2.6.0 or later <https://git.kernel.org/pub/scm/libs/ieee1394/libhinawa.git/>`_
+* `libhinawa 4.0.0 or later <https://git.kernel.org/pub/scm/libs/ieee1394/libhinawa.git/>`_
* FFI crate (``hinawa-sys``)
* ``libc`` >= 0.2
diff --git a/hinawa/Cargo.toml b/hinawa/Cargo.toml
index 62229b5..a4e3dda 100644
--- a/hinawa/Cargo.toml
+++ b/hinawa/Cargo.toml
@@ -1,7 +1,7 @@
[package]
edition = "2018"
name = "hinawa"
-version = "0.8.1"
+version = "0.9.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 = "sys", version = "0.8.1"}
+ffi = {package = "hinawa-sys", path = "sys", version = "0.9.0"}
[dev-dependencies]
gir-format-check = "^0.1"
diff --git a/hinawa/README.md b/hinawa/README.md
index b0514db..16b3afc 100644
--- a/hinawa/README.md
+++ b/hinawa/README.md
@@ -1,7 +1,7 @@
# hinawa crate
Rust API bindings and wrappers for
-[hinawa library](https://git.kernel.org/pub/scm/libs/ieee1394/libhinawa.git/) to operate OHCI 1394
+[hinawa library](https://git.kernel.org/pub/scm/libs/ieee1394/libhinawa.git/) to operate 1394 OHCI
hardware via Linux FireWire character device for asynchronous communication in IEEE 1394 bus.
The hinawa library version 4.0 is the minimum supported version for underlying library.
@@ -16,7 +16,7 @@ Add the following line to your Cargo.toml file:
```toml
[dependencies]
-hinawa = "0.8"
+hinawa = "0.9"
```
The API documentation is available in <https://docs.rs/hinawa/>.
diff --git a/hinawa/sys/Cargo.toml b/hinawa/sys/Cargo.toml
index 221dad5..f62ec6e 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.1"
+version = "0.9.0"
# For publishing.
authors = ["Takashi Sakamoto"]
categories = ["external-ffi-bindings", "hardware-support", "os::linux-apis"]
diff --git a/hinawa/sys/README.md b/hinawa/sys/README.md
index 5413b82..fc5dfdd 100644
--- a/hinawa/sys/README.md
+++ b/hinawa/sys/README.md
@@ -1,7 +1,7 @@
# hinawa-sys crate
Rust FFI bindings and wrappers for
-[hinawa library](https://git.kernel.org/pub/scm/libs/ieee1394/libhinawa.git/) to operate OHCI 1394
+[hinawa library](https://git.kernel.org/pub/scm/libs/ieee1394/libhinawa.git/) to operate 1394 OHCI
hardware via Linux FireWire character device for asynchronous communication in IEEE 1394 bus.
The hinawa library version 4.0 is the minimum supported version for underlying library.