Skip to content

Commit 7c068ea

Browse files
authored
Prepare 1.3.0 (#119)
* bump rustls to 0.21.1 to get mTLS patch * update changelog * bump action versions in release workflow * set version 1.3.0 * bump dependency patch versions
1 parent e3e58ff commit 7c068ea

File tree

11 files changed

+35
-34
lines changed

11 files changed

+35
-34
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -314,12 +314,12 @@ jobs:
314314
git commit -m "[rodbus] Release ${GITHUB_REF##*/}"
315315
git push
316316
- name: Import PGP key
317-
uses: crazy-max/ghaction-import-gpg@v3
317+
uses: crazy-max/ghaction-import-gpg@v5
318318
with:
319319
gpg-private-key: ${{ secrets.SFIO_PGP_PRIVATE_KEY }}
320320
passphrase: ${{ secrets.SFIO_PGP_PRIVATE_KEY_PASSPHRASE }}
321321
- name: Login to OSSRH
322-
uses: whelk-io/maven-settings-xml-action@v14
322+
uses: whelk-io/maven-settings-xml-action@v21
323323
with:
324324
servers: '[{ "id": "ossrh", "username": "${{ secrets.SFIO_OSSRH_USERNAME }}", "password": "${{ secrets.SFIO_OSSRH_PASSWORD }}" }]'
325325
- name: Deploy Java

CHANGELOG.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
### 1.3.0-rc1 ###
2-
* :wrench: Update to rustls 0.21.0 which allows peer names with IP addresses in the SAN extension.
1+
### 1.3.0 ###
2+
* :wrench: Update to rustls 0.21 which allows peer names with IP addresses in the SAN extension.
33
* :wrench: Move common TLS configuration to its own crate shared with our Modbus library.
44
* :star: PEM parser now supports extracting PKCS#1 private keys, i.e. PEM files with `BEGIN RSA PRIVATE KEY`.
55
* :book: Documentation improvements in the bindings via [oo-bindgen 0.8.3](https://github.com/stepfunc/oo_bindgen/blob/main/CHANGELOG.md).

Cargo.lock

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

ffi/bindings/dotnet/rodbus-tests/rodbus-tests.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="16.5.0" />
1212
<PackageReference Include="MSTest.TestAdapter" Version="2.1.0" />
1313
<PackageReference Include="MSTest.TestFramework" Version="2.1.0" />
14-
<PackageReference Include="coverlet.collector" Version="1.3.0-rc1" />
14+
<PackageReference Include="coverlet.collector" Version="1.3.0" />
1515
</ItemGroup>
1616

1717
<ItemGroup>

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.0-rc1"
3+
version = "1.3.0"
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.0-rc1"
3+
version = "1.3.0"
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.0-rc1"
3+
version = "1.3.0"
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.0-rc1"
4+
version = "1.3.0"
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.0-rc1",
2+
"version": "1.3.0",
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.0-rc1"
3+
version = "1.3.0"
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.0-rc1"
3+
version = "1.3.0"
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)