Skip to content

Commit e86837d

Browse files
authored
Prepare 1.4.0-RC1 (#139)
* update changelog * update version
1 parent 7453f72 commit e86837d

File tree

11 files changed

+17
-16
lines changed

11 files changed

+17
-16
lines changed

CHANGELOG.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
1-
### 1.4.0-M1 ###
1+
### 1.4.0-RC1 ###
22
* :wrench: Avoid task spawning in client FFI methods. See [#136](https://github.com/stepfunc/rodbus/pull/136).
3+
* :wrench: Requests in the client API now fail immediately while the client is connecting.
34

45
### 1.3.1 ###
56
* :bug: Fix issue with master channels not properly exiting and thrashing CPU. See [#120](https://github.com/stepfunc/rodbus/issues/120).

Cargo.lock

+6-6
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

ffi/bindings/java/examples/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
<dependency>
1717
<groupId>io.stepfunc</groupId>
1818
<artifactId>rodbus</artifactId>
19-
<version>1.4.0-M1</version>
19+
<version>1.4.0-RC1</version>
2020
</dependency>
2121
</dependencies>
2222
</project>

ffi/bindings/java/rodbus-tests/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
<dependency>
2727
<groupId>io.stepfunc</groupId>
2828
<artifactId>rodbus</artifactId>
29-
<version>1.4.0-M1</version>
29+
<version>1.4.0-RC1</version>
3030
</dependency>
3131
<dependency>
3232
<groupId>org.junit.jupiter</groupId>

ffi/rodbus-bindings/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "rodbus-bindings"
3-
version = "1.4.0-M1"
3+
version = "1.4.0-RC1"
44
description = "application to generate bindings for Rodbus"
55
readme = "../README.md"
66

ffi/rodbus-ffi-java/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "rodbus-ffi-java"
3-
version = "1.4.0-M1"
3+
version = "1.4.0-RC1"
44
authors = ["Step Function I/O LLC <[email protected]>"]
55
edition = "2021"
66
build = "build.rs"

ffi/rodbus-ffi/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "rodbus-ffi"
3-
version = "1.4.0-M1"
3+
version = "1.4.0-RC1"
44
authors = ["Step Function I/O LLC <[email protected]>"]
55
edition = "2021"
66
description = "FFI for Rodbus"

ffi/rodbus-schema/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "rodbus-schema"
33
# this is the version that all the FFI libraries get, since it's in their schema
4-
version = "1.4.0-M1"
4+
version = "1.4.0-RC1"
55
description = "oobindgen schema for Rodbus"
66
readme = "../README.md"
77

guide/sitedata.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
{
2-
"version": "1.4.0-M1",
2+
"version": "1.4.0-RC1",
33
"github_url": "https://github.com/stepfunc/rodbus"
44
}

rodbus-client/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "rodbus-client"
3-
version = "1.4.0-M1"
3+
version = "1.4.0-RC1"
44
description = "A command line program for making Modbus client requests using the Rodbus crate"
55
readme = "README.md"
66

rodbus/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "rodbus"
3-
version = "1.4.0-M1"
3+
version = "1.4.0-RC1"
44
description = "A high-performance async implementation of the Modbus protocol using tokio"
55
readme = "README.md"
66

0 commit comments

Comments
 (0)