aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTakashi Sakamoto <o-takashi@sakamocchi.jp>2023-10-30 23:06:19 +0900
committerTakashi Sakamoto <o-takashi@sakamocchi.jp>2023-10-30 23:06:19 +0900
commit45e6efc8603e3c2a7da69e033c8fa48f0297c8b2 (patch)
tree78aea1c2a7f5281ebc9d47a6273b26cee9b0f4b7
parentfc0cb5d64c19f5325b400613b5fd7e772a7f676e (diff)
downloadhinoko-rs-45e6efc8603e3c2a7da69e033c8fa48f0297c8b2.tar.gz
bump release version to 0.4.0v0.4.0
It's time to release new version. Signed-off-by: Takashi Sakamoto <o-takashi@sakamocchi.jp>
-rw-r--r--Cargo.toml2
-rw-r--r--README.rst6
-rw-r--r--hinoko/Cargo.toml4
-rw-r--r--hinoko/README.md2
-rw-r--r--hinoko/sys/Cargo.toml2
5 files changed, 8 insertions, 8 deletions
diff --git a/Cargo.toml b/Cargo.toml
index a5a206e..554a365 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -16,6 +16,6 @@ default-members = [
[workspace.metadata.library.hinoko]
repository = "https://git.kernel.org/pub/scm/libs/ieee1394/libhinoko.git/"
purpose = """
-operate OHCI 1394 hardware via Linux FireWire character device for isochronous communication in
+operate 1394 OHCI hardware via Linux FireWire character device for isochronous communication in
IEEE 1394 bus.
"""
diff --git a/README.rst b/README.rst
index 26e0f0d..93e1431 100644
--- a/README.rst
+++ b/README.rst
@@ -2,19 +2,19 @@
Rust bindings for hinoko library
================================
-2023/07/18
+2023/10/30
Takashi Sakamoto
Introduction
============
-* This repository includes FFI and API bindings for ``libhinoko0`` which provides ``Hinoko-0.0.gir``.
+* This repository includes FFI and API bindings for ``libhinoko1`` which provides ``Hinoko-1.0.gir``.
* `<https://git.kernel.org/pub/scm/libs/ieee1394/libhinoko.git/>`_
* The crates are available in `crates.io <https://crates.io/>`_ as well.
-The latest release is version 0.3.0.
+The latest release is version 0.4.0.
Crates
======
diff --git a/hinoko/Cargo.toml b/hinoko/Cargo.toml
index b99fb6b..8cccce2 100644
--- a/hinoko/Cargo.toml
+++ b/hinoko/Cargo.toml
@@ -1,7 +1,7 @@
[package]
name = "hinoko"
edition = "2018"
-version = "0.3.0"
+version = "0.4.0"
# For publishing.
authors = ["Takashi Sakamoto"]
categories = ["api-bindings", "hardware-support", "os::linux-apis"]
@@ -23,7 +23,7 @@ libc = "0.2"
bitflags = "1.0"
glib = "0.15"
hinawa = "0.9"
-ffi = {package = "hinoko-sys", path = "sys", version = "0.3.0"}
+ffi = {package = "hinoko-sys", path = "sys", version = "0.4.0"}
[dev-dependencies]
gir-format-check = "^0.1"
diff --git a/hinoko/README.md b/hinoko/README.md
index 6536fbc..f18a736 100644
--- a/hinoko/README.md
+++ b/hinoko/README.md
@@ -16,7 +16,7 @@ Add the following line to your Cargo.toml file:
```toml
[dependencies]
-hinoko = "0.3.0"
+hinoko = "0.4"
```
The API documentation is available in <https://docs.rs/hinoko/>.
diff --git a/hinoko/sys/Cargo.toml b/hinoko/sys/Cargo.toml
index 1a094a8..4cd4761 100644
--- a/hinoko/sys/Cargo.toml
+++ b/hinoko/sys/Cargo.toml
@@ -4,7 +4,7 @@ edition = "2018"
links = "hinoko"
name = "hinoko-sys"
# For publishing.
-version = "0.3.0"
+version = "0.4.0"
authors = ["Takashi Sakamoto"]
categories = ["external-ffi-bindings", "hardware-support", "os::linux-apis"]
description = "FFI bindings for hinoko library"