aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTakashi Sakamoto <o-takashi@sakamocchi.jp>2024-02-25 10:05:05 +0900
committerTakashi Sakamoto <o-takashi@sakamocchi.jp>2024-02-25 10:05:05 +0900
commit00d5fdca7c3630baa54dae2672e6243b43bd52a2 (patch)
tree159f11752d7793de86ef03a2922290f5e24793d2
parent19e4fad81c7b2c3f9036bad2ccfb01dd1055b55b (diff)
downloadhinawa-rs-main.tar.gz
bump release version to 0.11.0HEADv0.11.0main
It's time to release the new version. Signed-off-by: Takashi Sakamoto <o-takashi@sakamocchi.jp>
-rw-r--r--README.rst6
-rw-r--r--hinawa/Cargo.toml4
-rw-r--r--hinawa/README.md4
-rw-r--r--hinawa/sys/Cargo.toml2
4 files changed, 8 insertions, 8 deletions
diff --git a/README.rst b/README.rst
index c08707e..6b22a1c 100644
--- a/README.rst
+++ b/README.rst
@@ -2,7 +2,7 @@
Rust bindings for hinawa library
================================
-2024/01/04
+2024/02/25
Takashi Sakamoto
Introduction
@@ -18,7 +18,7 @@ Introduction
* Inconveniently, it includes no support for ``libhinawa`` v2.6 or former, which provides
``Hinawa-3.0.gir``, ``Hinawa-2.0.gir``, and ``Hinawa-1.0.gir``.
-* The latest release is version 0.10.0.
+* The latest release is version 0.11.0.
Crates
======
@@ -41,7 +41,7 @@ MIT License
Dependencies
============
-* `libhinawa 4.0.0 or later <https://git.kernel.org/pub/scm/libs/ieee1394/libhinawa.git/>`_
+* `libhinawa 4.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 1b8ccb3..f9dbd1c 100644
--- a/hinawa/Cargo.toml
+++ b/hinawa/Cargo.toml
@@ -1,7 +1,7 @@
[package]
edition = "2021"
name = "hinawa"
-version = "0.10.0"
+version = "0.11.0"
# For publishing.
authors = ["Takashi Sakamoto"]
categories = ["api-bindings", "hardware-support", "os::linux-apis"]
@@ -23,7 +23,7 @@ name = "hinawa"
[dependencies]
libc = "0.2"
glib = "0.19"
-ffi = {package = "hinawa-sys", version = "0.10.0"}
+ffi = {package = "hinawa-sys", version = "0.11.0"}
[dev-dependencies]
gir-format-check = "^0.1"
diff --git a/hinawa/README.md b/hinawa/README.md
index 48c4329..faad8ad 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.10"
+hinawa = "0.11"
```
The API documentation is available in <https://docs.rs/hinawa/>.
@@ -45,4 +45,4 @@ Some programs are available under `examples` directory.
* `read-quadlet.rs`
- * demonstration to read quadlet data from node in IEEE 1394 bus.
+ * demonstration to read quadlet data from node in IEEE 1394 bus identified as `/dev/fw1`.
diff --git a/hinawa/sys/Cargo.toml b/hinawa/sys/Cargo.toml
index 2915d56..9f605f7 100644
--- a/hinawa/sys/Cargo.toml
+++ b/hinawa/sys/Cargo.toml
@@ -3,7 +3,7 @@ build = "build.rs"
edition = "2021"
links = "hinawa"
name = "hinawa-sys"
-version = "0.10.0"
+version = "0.11.0"
authors = ["Takashi Sakamoto"]
categories = ["external-ffi-bindings", "hardware-support", "os::linux-apis"]
description = "FFI bindings for hinawa library"