Skip to content

Commit

Permalink
Release 0.9.1
Browse files Browse the repository at this point in the history
  • Loading branch information
emgre committed Nov 1, 2021
1 parent 5537537 commit 5d9e98a
Show file tree
Hide file tree
Showing 7 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
@@ -1,4 +1,4 @@
### Next ###
### 0.9.1 ###
* Client callbacks are now not blocking.
See [#53](https://github.com/stepfunc/rodbus/pull/53).
* Fix leak of `tracing::Span` in bindings.
Expand Down
2 changes: 1 addition & 1 deletion ffi/bindings/java/examples/pom.xml
Expand Up @@ -16,7 +16,7 @@
<dependency>
<groupId>io.stepfunc</groupId>
<artifactId>rodbus</artifactId>
<version>0.9.0</version>
<version>0.9.1</version>
</dependency>
</dependencies>
</project>
2 changes: 1 addition & 1 deletion ffi/bindings/java/rodbus-tests/pom.xml
Expand Up @@ -26,7 +26,7 @@
<dependency>
<groupId>io.stepfunc</groupId>
<artifactId>rodbus</artifactId>
<version>0.9.0</version>
<version>0.9.1</version>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
Expand Down
2 changes: 1 addition & 1 deletion ffi/rodbus-ffi/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "rodbus-ffi"
version = "0.9.0"
version = "0.9.1"
authors = ["Adam Crain <adam@stepfunc.io>", "Émile Grégoire <emile@stepfunc.io>"]
edition = "2018"
description = "FFI for Rodbus"
Expand Down
2 changes: 1 addition & 1 deletion guide/sitedata.json
@@ -1,4 +1,4 @@
{
"version": "0.9.0",
"version": "0.9.1",
"github_url": "https://github.com/stepfunc/rodbus"
}
4 changes: 2 additions & 2 deletions rodbus-client/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "rodbus-client"
version = "0.9.0"
version = "0.9.1"
authors = ["Adam Crain <adam@stepfunc.io>", "Émile Grégoire <emile@stepfunc.io>"]
edition = "2018"
description = "A command line program for making Modbus client requests using the Rodbus crate"
Expand All @@ -14,7 +14,7 @@ name = "rodbus-client"
path = "src/main.rs"

[dependencies]
rodbus = { path = "../rodbus", version = "0.9.0" }
rodbus = { path = "../rodbus", version = "0.9.1" }
clap = "2.33"
tokio = { version = "1.5", features = ["macros", "time"] }
tracing = "0.1"
Expand Down
2 changes: 1 addition & 1 deletion rodbus/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "rodbus"
version = "0.9.0"
version = "0.9.1"
authors = ["Adam Crain <adam@stepfunc.io>", "Émile Grégoire <emile@stepfunc.io>"]
edition = "2018"
description = "A high-performance async implementation of the Modbus protocol using tokio"
Expand Down

0 comments on commit 5d9e98a

Please sign in to comment.