aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTakashi Sakamoto <o-takashi@sakamocchi.jp>2023-07-16 17:13:47 +0900
committerTakashi Sakamoto <o-takashi@sakamocchi.jp>2023-07-16 17:13:47 +0900
commitc835f063fbe892cb555a593d971a7c88b85fe493 (patch)
treee63be81af27bf24ed5fd462d8638bd089d02f7e2
parentcde82311a1b300ce634234ef5acd0c3ed3a8b2bc (diff)
downloadhinawa-rs-c835f063fbe892cb555a593d971a7c88b85fe493.tar.gz
bump release version to 0.8.0v0.8.0
It's time to release new version since libhinawa 2.6 was released. Signed-off-by: Takashi Sakamoto <o-takashi@sakamocchi.jp>
-rw-r--r--README.rst8
-rw-r--r--hinawa-sys/Cargo.toml2
-rw-r--r--hinawa-sys/README.md2
-rw-r--r--hinawa/Cargo.toml4
-rw-r--r--hinawa/README.md4
5 files changed, 10 insertions, 10 deletions
diff --git a/README.rst b/README.rst
index 1b98cff..c4c0a71 100644
--- a/README.rst
+++ b/README.rst
@@ -2,13 +2,13 @@
Rust bindings for hinawa library
================================
-2023/04/23
+2023/07/16
Takashi Sakamoto
Introduction
============
-* This repository includes FFI and API bindings for ``libhinawa2`` v2.5.0 or later which
+* This repository includes FFI and API bindings for ``libhinawa2`` v2.6.0 or later which
provides ``Hinawa-3.0.gir``.
* `<https://git.kernel.org/pub/scm/libs/ieee1394/libhinawa.git/>`_
@@ -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.7.0.
+* The latest release is version 0.8.0.
Crates
======
@@ -41,7 +41,7 @@ MIT License
Dependencies
============
-* `libhinawa 2.5.0 or later <https://git.kernel.org/pub/scm/libs/ieee1394/libhinawa.git/>`_
+* `libhinawa 2.6.0 or later <https://git.kernel.org/pub/scm/libs/ieee1394/libhinawa.git/>`_
* FFI crate (``hinawa-sys``)
* ``libc`` >= 0.2
diff --git a/hinawa-sys/Cargo.toml b/hinawa-sys/Cargo.toml
index 4f4b344..7042db6 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.7.0"
+version = "0.8.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 0d919c7..23e8581 100644
--- a/hinawa-sys/README.md
+++ b/hinawa-sys/README.md
@@ -4,7 +4,7 @@ Rust FFI bindings and wrappers for
[hinawa library](https://git.kernel.org/pub/scm/libs/ieee1394/libhinawa.git/) to operate OHCI 1394
hardware via Linux FireWire character device for asynchronous communication in IEEE 1394 bus.
-The hinawa library version 2.5 is the minimum supported version for underlying library.
+The hinawa library version 2.6 is the minimum supported version for underlying library.
The hinawa-sys crate is automatically generated by [gir tool](https://gtk-rs.org/gir/book/) provided
by [gtk-rs project](https://gtk-rs.org/). Hinawa-3.0 file from hinawa library is used for the
diff --git a/hinawa/Cargo.toml b/hinawa/Cargo.toml
index b5e584e..f17a77f 100644
--- a/hinawa/Cargo.toml
+++ b/hinawa/Cargo.toml
@@ -1,7 +1,7 @@
[package]
edition = "2018"
name = "hinawa"
-version = "0.7.0"
+version = "0.8.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.7.0"}
+ffi = {package = "hinawa-sys", path = "../hinawa-sys", version = "0.8.0"}
[dev-dependencies]
gir-format-check = "^0.1"
diff --git a/hinawa/README.md b/hinawa/README.md
index f7234ec..fad159f 100644
--- a/hinawa/README.md
+++ b/hinawa/README.md
@@ -4,7 +4,7 @@ Rust API bindings and wrappers for
[hinawa library](https://git.kernel.org/pub/scm/libs/ieee1394/libhinawa.git/) to operate OHCI 1394
hardware via Linux FireWire character device for asynchronous communication in IEEE 1394 bus.
-The hinawa library version 2.5 is the minimum supported version for underlying library.
+The hinawa library version 2.6 is the minimum supported version for underlying library.
The hinawa crate is automatically generated by [gir tool](https://gtk-rs.org/gir/book/) provided
by [gtk-rs project](https://gtk-rs.org/). Hinawa-3.0 file from hinawa library is used for the
@@ -16,7 +16,7 @@ Add the following line to your Cargo.toml file:
```toml
[dependencies]
-hinawa = "0.7.0"
+hinawa = "0.8.0"
```
The API documentation is available in <https://docs.rs/hinawa/>.