Skip to content

Commit

Permalink
Prepare 1.3.0 (#119)
Browse files Browse the repository at this point in the history
* 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
  • Loading branch information
jadamcrain committed May 2, 2023
1 parent e3e58ff commit 7c068ea
Show file tree
Hide file tree
Showing 11 changed files with 35 additions and 34 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Expand Up @@ -314,12 +314,12 @@ jobs:
git commit -m "[rodbus] Release ${GITHUB_REF##*/}"
git push
- name: Import PGP key
uses: crazy-max/ghaction-import-gpg@v3
uses: crazy-max/ghaction-import-gpg@v5
with:
gpg-private-key: ${{ secrets.SFIO_PGP_PRIVATE_KEY }}
passphrase: ${{ secrets.SFIO_PGP_PRIVATE_KEY_PASSPHRASE }}
- name: Login to OSSRH
uses: whelk-io/maven-settings-xml-action@v14
uses: whelk-io/maven-settings-xml-action@v21
with:
servers: '[{ "id": "ossrh", "username": "${{ secrets.SFIO_OSSRH_USERNAME }}", "password": "${{ secrets.SFIO_OSSRH_PASSWORD }}" }]'
- name: Deploy Java
Expand Down
4 changes: 2 additions & 2 deletions CHANGELOG.md
@@ -1,5 +1,5 @@
### 1.3.0-rc1 ###
* :wrench: Update to rustls 0.21.0 which allows peer names with IP addresses in the SAN extension.
### 1.3.0 ###
* :wrench: Update to rustls 0.21 which allows peer names with IP addresses in the SAN extension.
* :wrench: Move common TLS configuration to its own crate shared with our Modbus library.
* :star: PEM parser now supports extracting PKCS#1 private keys, i.e. PEM files with `BEGIN RSA PRIVATE KEY`.
* :book: Documentation improvements in the bindings via [oo-bindgen 0.8.3](https://github.com/stepfunc/oo_bindgen/blob/main/CHANGELOG.md).
Expand Down
45 changes: 23 additions & 22 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion ffi/bindings/dotnet/rodbus-tests/rodbus-tests.csproj
Expand Up @@ -11,7 +11,7 @@
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="16.5.0" />
<PackageReference Include="MSTest.TestAdapter" Version="2.1.0" />
<PackageReference Include="MSTest.TestFramework" Version="2.1.0" />
<PackageReference Include="coverlet.collector" Version="1.3.0-rc1" />
<PackageReference Include="coverlet.collector" Version="1.3.0" />
</ItemGroup>

<ItemGroup>
Expand Down
2 changes: 1 addition & 1 deletion ffi/rodbus-bindings/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "rodbus-bindings"
version = "1.3.0-rc1"
version = "1.3.0"
authors = ["Step Function I/O LLC <info@stepfunc.io>"]
edition = "2021"
description = "oobindgen schema for Rodbus"
Expand Down
2 changes: 1 addition & 1 deletion ffi/rodbus-ffi-java/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "rodbus-ffi-java"
version = "1.3.0-rc1"
version = "1.3.0"
authors = ["Step Function I/O LLC <info@stepfunc.io>"]
edition = "2021"
build = "build.rs"
Expand Down
2 changes: 1 addition & 1 deletion ffi/rodbus-ffi/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "rodbus-ffi"
version = "1.3.0-rc1"
version = "1.3.0"
authors = ["Step Function I/O LLC <info@stepfunc.io>"]
edition = "2021"
description = "FFI for Rodbus"
Expand Down
2 changes: 1 addition & 1 deletion ffi/rodbus-schema/Cargo.toml
@@ -1,7 +1,7 @@
[package]
name = "rodbus-schema"
# this is the version that all the FFI libraries get, since it's in their schema
version = "1.3.0-rc1"
version = "1.3.0"
authors = ["Step Function I/O LLC <info@stepfunc.io>"]
edition = "2021"
description = "oobindgen schema for Rodbus"
Expand Down
2 changes: 1 addition & 1 deletion guide/sitedata.json
@@ -1,4 +1,4 @@
{
"version": "1.3.0-rc1",
"version": "1.3.0",
"github_url": "https://github.com/stepfunc/rodbus"
}
2 changes: 1 addition & 1 deletion rodbus-client/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "rodbus-client"
version = "1.3.0-rc1"
version = "1.3.0"
authors = ["Step Function I/O LLC <info@stepfunc.io>>"]
edition = "2021"
description = "A command line program for making Modbus client requests using the Rodbus crate"
Expand Down
2 changes: 1 addition & 1 deletion rodbus/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "rodbus"
version = "1.3.0-rc1"
version = "1.3.0"
authors = ["Step Function I/O LLC <info@stepfunc.io>"]
edition = "2021"
description = "A high-performance async implementation of the Modbus protocol using tokio"
Expand Down

0 comments on commit 7c068ea

Please sign in to comment.