Skip to content

Commit

Permalink
Release 0.9, Bump versions to 0.10
Browse files Browse the repository at this point in the history
  • Loading branch information
locka99 committed Mar 20, 2022
1 parent 34da1b9 commit 70aec38
Show file tree
Hide file tree
Showing 19 changed files with 73 additions and 70 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
# Changelog

## 0.10
- Focus on asynchronous behaviour, especially in server's message processing but also in client.

## 0.9
- Multiple chunk support in client and server, sending and receiving.
- Upgrade from Tokio 0.1 to 1.x long term support and use `async` / `await` semantics to simplify tasks
Expand Down
34 changes: 17 additions & 17 deletions Cargo.lock

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

8 changes: 4 additions & 4 deletions client/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "opcua-client"
version = "0.9.0" # OPCUARustVersion
version = "0.10.0" # OPCUARustVersion
description = "OPC UA client API"
authors = ["Adam Lock <[email protected]>"]
homepage = "https://github.com/locka99/opcua"
Expand Down Expand Up @@ -31,12 +31,12 @@ lazy_static = "1.4.0"

[dependencies.opcua-types]
path = "../types"
version = "0.9.0" # OPCUARustVersion
version = "0.10.0" # OPCUARustVersion

[dependencies.opcua-crypto]
path = "../crypto"
version = "0.9.0" # OPCUARustVersion
version = "0.10.0" # OPCUARustVersion

[dependencies.opcua-core]
path = "../core"
version = "0.9.0" # OPCUARustVersion
version = "0.10.0" # OPCUARustVersion
2 changes: 1 addition & 1 deletion console-logging/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "opcua-console-logging"
version = "0.9.0" # OPCUARustVersion
version = "0.10.0" # OPCUARustVersion
description = "Logging to the console for OPC UA used by client and server"
authors = ["Adam Lock <[email protected]>"]
homepage = "https://github.com/locka99/opcua"
Expand Down
6 changes: 3 additions & 3 deletions core/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "opcua-core"
version = "0.9.0" # OPCUARustVersion
version = "0.10.0" # OPCUARustVersion
description = "Core components for OPC UA used by client and server"
authors = ["Adam Lock <[email protected]>"]
homepage = "https://github.com/locka99/opcua"
Expand Down Expand Up @@ -35,11 +35,11 @@ url = "1.6"

[dependencies.opcua-types]
path = "../types"
version = "0.9.0" # OPCUARustVersion
version = "0.10.0" # OPCUARustVersion

[dependencies.opcua-crypto]
path = "../crypto"
version = "0.9.0" # OPCUARustVersion
version = "0.10.0" # OPCUARustVersion

[dev-dependencies]
tempdir = "0.3"
Expand Down
6 changes: 3 additions & 3 deletions crypto/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "opcua-crypto"
version = "0.9.0" # OPCUARustVersion
version = "0.10.0" # OPCUARustVersion
description = "Encryption / decryption used by OPC UA client and server"
authors = ["Adam Lock <[email protected]>"]
homepage = "https://github.com/locka99/opcua"
Expand Down Expand Up @@ -34,11 +34,11 @@ foreign-types = "0.3"

[dependencies.opcua-types]
path = "../types"
version = "0.9.0" # OPCUARustVersion
version = "0.10.0" # OPCUARustVersion

[dev-dependencies.opcua-console-logging]
path = "../console-logging"
version = "0.9.0" # OPCUARustVersion
version = "0.10.0" # OPCUARustVersion

[dev-dependencies]
tempdir = "0.3"
Expand Down
12 changes: 6 additions & 6 deletions integration/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "opcua-integration"
version = "0.9.0" # OPCUARustVersion
version = "0.10.0" # OPCUARustVersion
authors = ["Adam Lock <[email protected]>"]
edition = "2018"

Expand All @@ -10,20 +10,20 @@ chrono = "0.4"

[dev-dependencies.opcua-server]
path = "../server"
version = "0.9.0" # OPCUARustVersion
version = "0.10.0" # OPCUARustVersion

[dev-dependencies.opcua-client]
path = "../client"
version = "0.9.0" # OPCUARustVersion
version = "0.10.0" # OPCUARustVersion

[dev-dependencies.opcua-crypto]
path = "../crypto"
version = "0.9.0" # OPCUARustVersion
version = "0.10.0" # OPCUARustVersion

[dev-dependencies.opcua-core]
path = "../core"
version = "0.9.0" # OPCUARustVersion
version = "0.10.0" # OPCUARustVersion

[dev-dependencies.opcua-console-logging]
path = "../console-logging"
version = "0.9.0" # OPCUARustVersion
version = "0.10.0" # OPCUARustVersion
4 changes: 2 additions & 2 deletions samples/chess-server/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "opcua-chess-server"
version = "0.9.0" # OPCUARustVersion
version = "0.10.0" # OPCUARustVersion
authors = ["Adam Lock <[email protected]>"]
edition = "2018"

Expand All @@ -9,4 +9,4 @@ uci = "0.1.1"

[dependencies.opcua-server]
path = "../../server"
version = "0.9.0" # OPCUARustVersion
version = "0.10.0" # OPCUARustVersion
6 changes: 3 additions & 3 deletions samples/demo-server/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "opcua-demo-server"
version = "0.9.0" # OPCUARustVersion
version = "0.10.0" # OPCUARustVersion
authors = ["Adam Lock <[email protected]>"]
edition = "2018"

Expand All @@ -17,9 +17,9 @@ pico-args = "0.3"

[dependencies.opcua-server]
path = "../../server"
version = "0.9.0" # OPCUARustVersion
version = "0.10.0" # OPCUARustVersion
features = ["http", "discovery-server-registration"]

[dependencies.opcua-console-logging]
path = "../../console-logging"
version = "0.9.0" # OPCUARustVersion
version = "0.10.0" # OPCUARustVersion
6 changes: 3 additions & 3 deletions samples/discovery-client/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "opcua-discovery-client"
version = "0.9.0" # OPCUARustVersion
version = "0.10.0" # OPCUARustVersion
authors = ["Adam Lock <[email protected]>"]
edition = "2018"

Expand All @@ -9,8 +9,8 @@ pico-args = "0.3"

[dependencies.opcua-client]
path = "../../client"
version = "0.9.0" # OPCUARustVersion
version = "0.10.0" # OPCUARustVersion

[dependencies.opcua-console-logging]
path = "../../console-logging"
version = "0.9.0" # OPCUARustVersion
version = "0.10.0" # OPCUARustVersion
6 changes: 3 additions & 3 deletions samples/event-client/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "opcua-event-client"
version = "0.9.0" # OPCUARustVersion
version = "0.10.0" # OPCUARustVersion
authors = ["Adam Lock <[email protected]>"]
edition = "2018"

Expand All @@ -9,8 +9,8 @@ pico-args="0.3"

[dependencies.opcua-client]
path = "../../client"
version = "0.9.0" # OPCUARustVersion
version = "0.10.0" # OPCUARustVersion

[dependencies.opcua-console-logging]
path = "../../console-logging"
version = "0.9.0" # OPCUARustVersion
version = "0.10.0" # OPCUARustVersion
6 changes: 3 additions & 3 deletions samples/modbus-server/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "opcua-modbus-server"
version = "0.9.0" # OPCUARustVersion
version = "0.10.0" # OPCUARustVersion
authors = ["Adam Lock <[email protected]>"]
edition = "2018"

Expand All @@ -18,8 +18,8 @@ serde_yaml = "0.8"

[dependencies.opcua-server]
path = "../../server"
version = "0.9.0" # OPCUARustVersion
version = "0.10.0" # OPCUARustVersion

[dependencies.opcua-console-logging]
path = "../../console-logging"
version = "0.9.0" # OPCUARustVersion
version = "0.10.0" # OPCUARustVersion
6 changes: 3 additions & 3 deletions samples/mqtt-client/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "opcua-mqtt-client"
version = "0.9.0" # OPCUARustVersion
version = "0.10.0" # OPCUARustVersion
authors = ["Adam Lock <[email protected]>"]
edition = "2018"

Expand All @@ -11,8 +11,8 @@ rumqtt = { git = "https://github.com/AtherEnergy/rumqtt.git", rev = "83b46945250

[dependencies.opcua-client]
path = "../../client"
version = "0.9.0" # OPCUARustVersion
version = "0.10.0" # OPCUARustVersion

[dependencies.opcua-console-logging]
path = "../../console-logging"
version = "0.9.0" # OPCUARustVersion
version = "0.10.0" # OPCUARustVersion
Loading

0 comments on commit 70aec38

Please sign in to comment.