Skip to content

Commit 3df979a

Browse files
authored
Prepare 1.4.0-M1 (#137)
* update changelog * bump version
1 parent ccd3c23 commit 3df979a

File tree

11 files changed

+18
-15
lines changed

11 files changed

+18
-15
lines changed

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
### 1.4.0-M1 ###
2+
* :wrench: Avoid task spawning in client FFI methods. See [#136](https://github.com/stepfunc/rodbus/pull/136).
3+
14
### 1.3.1 ###
25
* :bug: Fix issue with master channels not properly exiting and thrashing CPU. See [#120](https://github.com/stepfunc/rodbus/issues/120).
36

Cargo.lock

Lines changed: 6 additions & 6 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

ffi/bindings/java/examples/pom.xml

Lines changed: 1 addition & 1 deletion
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.3.1</version>
19+
<version>1.4.0-M1</version>
2020
</dependency>
2121
</dependencies>
2222
</project>

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

Lines changed: 1 addition & 1 deletion
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.3.1</version>
29+
<version>1.4.0-M1</version>
3030
</dependency>
3131
<dependency>
3232
<groupId>org.junit.jupiter</groupId>

ffi/rodbus-bindings/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "rodbus-bindings"
3-
version = "1.3.1"
3+
version = "1.4.0-M1"
44
authors = ["Step Function I/O LLC <info@stepfunc.io>"]
55
edition = "2021"
66
description = "oobindgen schema for Rodbus"

ffi/rodbus-ffi-java/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "rodbus-ffi-java"
3-
version = "1.3.1"
3+
version = "1.4.0-M1"
44
authors = ["Step Function I/O LLC <info@stepfunc.io>"]
55
edition = "2021"
66
build = "build.rs"

ffi/rodbus-ffi/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "rodbus-ffi"
3-
version = "1.3.1"
3+
version = "1.4.0-M1"
44
authors = ["Step Function I/O LLC <info@stepfunc.io>"]
55
edition = "2021"
66
description = "FFI for Rodbus"

ffi/rodbus-schema/Cargo.toml

Lines changed: 1 addition & 1 deletion
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.3.1"
4+
version = "1.4.0-M1"
55
authors = ["Step Function I/O LLC <info@stepfunc.io>"]
66
edition = "2021"
77
description = "oobindgen schema for Rodbus"

guide/sitedata.json

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

rodbus-client/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "rodbus-client"
3-
version = "1.3.1"
3+
version = "1.4.0-M1"
44
authors = ["Step Function I/O LLC <info@stepfunc.io>>"]
55
edition = "2021"
66
description = "A command line program for making Modbus client requests using the Rodbus crate"

rodbus/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "rodbus"
3-
version = "1.3.1"
3+
version = "1.4.0-M1"
44
authors = ["Step Function I/O LLC <info@stepfunc.io>"]
55
edition = "2021"
66
description = "A high-performance async implementation of the Modbus protocol using tokio"

0 commit comments

Comments
 (0)