Skip to content

Commit

Permalink
all: downgrade crate version to 0.0.90 for pre-release
Browse files Browse the repository at this point in the history
It's pre-release to publish crates in crates.io.

Signed-off-by: Takashi Sakamoto <[email protected]>
  • Loading branch information
takaswie committed Jul 7, 2022
1 parent 96b2c71 commit 14d6fbb
Show file tree
Hide file tree
Showing 11 changed files with 27 additions and 26 deletions.
19 changes: 10 additions & 9 deletions README.rst
Original file line number Diff line number Diff line change
@@ -1,27 +1,28 @@
==========================
alsa-gobject Rust bindings
==========================
===========================================
Rust bindings for libraries in alsa-gobject
===========================================

2022/06/30
2022/07/07
Takashi Sakamoto

Introduction
============

* This repository includes FFI and API bindings for libraries in alsa-gobject project.

* https://github.com/alsa-project/alsa-gobject/
* `<https://github.com/alsa-project/alsa-gobject/>`_

The latest release is `version 0.3.0 <https://github.com/alsa-project/alsa-gobject-rs/releases/tag/v0.3.0>`_
which supports `alsa-gobject version 0.3.0 <https://github.com/alsa-project/alsa-gobject/releases/tag/v0.3.0>`_.
* The crates are available in `crates.io <https://crates.io/>`_ as well.

* The latest release is version 0.0.99. This is pre-release to publish crates in crates.io.

License
=======

MIT License

Sample code
===========
Examples
========

* ``alsactl/examples/dump-elem-data.rs``

Expand Down
2 changes: 1 addition & 1 deletion alsactl-sys/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ build = "build.rs"
edition = "2018"
links = "alsactl"
name = "alsactl-sys"
version = "0.3.0"
version = "0.0.90"
# For publishing.
authors = ["Takashi Sakamoto"]
categories = ["external-ffi-bindings", "hardware-support", "os::linux-apis"]
Expand Down
4 changes: 2 additions & 2 deletions alsactl/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
edition = "2018"
name = "alsactl"
version = "0.3.0"
version = "0.0.90"
# For publishing.
authors = ["Takashi Sakamoto"]
categories = ["api-bindings", "hardware-support", "os::linux-apis"]
Expand All @@ -20,7 +20,7 @@ name = "alsactl"
libc = "0.2"
bitflags = "1.0"
glib = "0.15"
ffi = {package = "alsactl-sys", path = "../alsactl-sys", version = "0.3" }
ffi = {package = "alsactl-sys", path = "../alsactl-sys", version = "0.0.90" }

[dev-dependencies]
gir-format-check = "^0.1"
2 changes: 1 addition & 1 deletion alsahwdep-sys/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ build = "build.rs"
edition = "2018"
links = "alsahwdep"
name = "alsahwdep-sys"
version = "0.3.0"
version = "0.0.90"
# For publishing.
authors = ["Takashi Sakamoto"]
categories = ["external-ffi-bindings", "hardware-support", "os::linux-apis"]
Expand Down
4 changes: 2 additions & 2 deletions alsahwdep/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
edition = "2018"
name = "alsahwdep"
version = "0.3.0"
version = "0.0.90"
# For publishing.
authors = ["Takashi Sakamoto"]
categories = ["api-bindings", "hardware-support", "os::linux-apis"]
Expand All @@ -20,7 +20,7 @@ name = "alsahwdep"
libc = "0.2"
bitflags = "1.0"
glib = "0.15"
ffi = {package = "alsahwdep-sys", path = "../alsahwdep-sys", version = "0.3" }
ffi = {package = "alsahwdep-sys", path = "../alsahwdep-sys", version = "0.0.90" }

[dev-dependencies]
gir-format-check = "^0.1"
Expand Down
2 changes: 1 addition & 1 deletion alsarawmidi-sys/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ build = "build.rs"
edition = "2018"
links = "alsarawmidi"
name = "alsarawmidi-sys"
version = "0.3.0"
version = "0.0.90"
# For publishing.
authors = ["Takashi Sakamoto <[email protected]>"]
categories = ["external-ffi-bindings", "hardware-support", "os::linux-apis"]
Expand Down
4 changes: 2 additions & 2 deletions alsarawmidi/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
edition = "2018"
name = "alsarawmidi"
version = "0.3.0"
version = "0.0.90"
# For publishing.
authors = ["Takashi Sakamoto"]
categories = ["api-bindings", "hardware-support", "os::linux-apis"]
Expand All @@ -21,7 +21,7 @@ libc = "0.2"
bitflags = "1.0"
glib = "0.15"

ffi = {package = "alsarawmidi-sys", path = "../alsarawmidi-sys", version = "0.3" }
ffi = {package = "alsarawmidi-sys", path = "../alsarawmidi-sys", version = "0.0.90" }

[dev-dependencies]
gir-format-check = "^0.1"
4 changes: 2 additions & 2 deletions alsaseq-sys/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ build = "build.rs"
edition = "2018"
links = "alsaseq"
name = "alsaseq-sys"
version = "0.3.0"
version = "0.0.90"
# For publishing.
authors = ["Takashi Sakamoto"]
categories = ["external-ffi-bindings", "hardware-support", "os::linux-apis"]
Expand Down Expand Up @@ -40,7 +40,7 @@ version = "0.15"

[dependencies.alsatimer-sys]
path = "../alsatimer-sys"
version = "0.3"
version = "0.0.90"

[dev-dependencies]
shell-words = "1.0.0"
Expand Down
6 changes: 3 additions & 3 deletions alsaseq/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
edition = "2018"
name = "alsaseq"
version = "0.3.0"
version = "0.0.90"
# For publishing.
authors = ["Takashi Sakamoto"]
categories = ["api-bindings", "hardware-support", "os::linux-apis"]
Expand All @@ -20,8 +20,8 @@ name = "alsaseq"
libc = "0.2"
bitflags = "1.0"
glib = "0.15"
alsatimer = { path = "../alsatimer", version = "0.3" }
ffi = {package = "alsaseq-sys", path = "../alsaseq-sys", version = "0.3" }
alsatimer = { path = "../alsatimer", version = "0.0.90" }
ffi = {package = "alsaseq-sys", path = "../alsaseq-sys", version = "0.0.90" }

[dev-dependencies]
gir-format-check = "^0.1"
Expand Down
2 changes: 1 addition & 1 deletion alsatimer-sys/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ build = "build.rs"
edition = "2018"
links = "alsatimer"
name = "alsatimer-sys"
version = "0.3.0"
version = "0.0.90"
# For publishing.
authors = ["Takashi Sakamoto"]
categories = ["external-ffi-bindings", "hardware-support", "os::linux-apis"]
Expand Down
4 changes: 2 additions & 2 deletions alsatimer/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
edition = "2018"
name = "alsatimer"
version = "0.3.0"
version = "0.0.90"
# For publishing.
authors = ["Takashi Sakamoto"]
categories = ["api-bindings", "hardware-support", "os::linux-apis"]
Expand All @@ -20,7 +20,7 @@ name = "alsatimer"
libc = "0.2"
bitflags = "1.0"
glib = "0.15"
ffi = {package= "alsatimer-sys", path = "../alsatimer-sys", version = "0.3" }
ffi = {package= "alsatimer-sys", path = "../alsatimer-sys", version = "0.0.90" }

[dev-dependencies]
gir-format-check = "^0.1"

0 comments on commit 14d6fbb

Please sign in to comment.