Skip to content

Commit

Permalink
Bump version up to 0.13.0
Browse files Browse the repository at this point in the history
  • Loading branch information
locka99 committed Jan 1, 2024
1 parent 693ab42 commit 5546db3
Show file tree
Hide file tree
Showing 16 changed files with 38 additions and 68 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
@@ -1,5 +1,8 @@
# Changelog

## 0.13
- In progress

## 0.12
- JSON serialization of most built-in data types
- Update to Rust 2021 profile
Expand Down
22 changes: 11 additions & 11 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 docs/client.md
Expand Up @@ -56,7 +56,7 @@ add that dependency:

```toml
[dependencies]
opcua = { version = "0.11", features = ["client"] }
opcua = { version = "0.12", features = ["client"] }
```

## Import types
Expand Down
4 changes: 2 additions & 2 deletions docs/server.md
Expand Up @@ -33,7 +33,7 @@ To use the server crate we need to add a dependency to the `Cargo.toml`.

```
[dependencies]
opcua = { "0.11", features = ["server"] }
opcua = { "0.12", features = ["server"] }
```

## Import types
Expand Down Expand Up @@ -252,7 +252,7 @@ In your `Cargo.toml`, ensure to add `console-logging` to your opcua features:

```toml
[dependencies]
opcua = { "0.11", features = ["....", "console-logging"]}
opcua = { "0.12", features = ["....", "console-logging"]}
```

In your `main()`:
Expand Down
4 changes: 2 additions & 2 deletions integration/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "opcua-integration"
version = "0.12.0" # OPCUARustVersion
version = "0.13.0" # OPCUARustVersion
authors = ["Adam Lock <locka99@gmail.com>"]
edition = "2021"

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

[dev-dependencies.opcua]
path = "../lib"
version = "0.12.0" # OPCUARustVersion
version = "0.13.0" # OPCUARustVersion
features = ["all"]
2 changes: 1 addition & 1 deletion lib/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "opcua"
version = "0.12.0" # OPCUARustVersion
version = "0.13.0" # OPCUARustVersion
description = "OPC UA client and server API"
authors = ["Adam Lock <locka99@gmail.com>"]
homepage = "https://github.com/locka99/opcua"
Expand Down
4 changes: 2 additions & 2 deletions samples/chess-server/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "opcua-chess-server"
version = "0.12.0" # OPCUARustVersion
version = "0.13.0" # OPCUARustVersion
authors = ["Adam Lock <locka99@gmail.com>"]
edition = "2021"

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

[dependencies.opcua]
path = "../../lib"
version = "0.12.0" # OPCUARustVersion
version = "0.13.0" # OPCUARustVersion
features = ["server", "console-logging"]
4 changes: 2 additions & 2 deletions samples/demo-server/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "opcua-demo-server"
version = "0.12.0" # OPCUARustVersion
version = "0.13.0" # OPCUARustVersion
authors = ["Adam Lock <locka99@gmail.com>"]
edition = "2021"

Expand All @@ -18,5 +18,5 @@ tokio = { version = "1", features = ["full"] }

[dependencies.opcua]
path = "../../lib"
version = "0.12.0" # OPCUARustVersion
version = "0.13.0" # OPCUARustVersion
features = ["all"]
4 changes: 2 additions & 2 deletions samples/discovery-client/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "opcua-discovery-client"
version = "0.12.0" # OPCUARustVersion
version = "0.13.0" # OPCUARustVersion
authors = ["Adam Lock <locka99@gmail.com>"]
edition = "2021"

Expand All @@ -9,5 +9,5 @@ pico-args = "0.5"

[dependencies.opcua]
path = "../../lib"
version = "0.12.0" # OPCUARustVersion
version = "0.13.0" # OPCUARustVersion
features = ["client", "console-logging"]
4 changes: 2 additions & 2 deletions samples/event-client/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "opcua-event-client"
version = "0.12.0" # OPCUARustVersion
version = "0.13.0" # OPCUARustVersion
authors = ["Adam Lock <locka99@gmail.com>"]
edition = "2021"

Expand All @@ -9,5 +9,5 @@ pico-args = "0.5"

[dependencies.opcua]
path = "../../lib"
version = "0.12.0" # OPCUARustVersion
version = "0.13.0" # OPCUARustVersion
features = ["client", "console-logging"]
4 changes: 2 additions & 2 deletions samples/mqtt-client/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "opcua-mqtt-client"
version = "0.12.0" # OPCUARustVersion
version = "0.13.0" # OPCUARustVersion
authors = ["Adam Lock <locka99@gmail.com>"]
edition = "2021"

Expand All @@ -10,5 +10,5 @@ rumqttc = "0.23"

[dependencies.opcua]
path = "../../lib"
version = "0.12.0" # OPCUARustVersion
version = "0.13.0" # OPCUARustVersion
features = ["client", "console-logging"]
4 changes: 2 additions & 2 deletions samples/simple-client/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "opcua-simple-client"
version = "0.12.0" # OPCUARustVersion
version = "0.13.0" # OPCUARustVersion
authors = ["Adam Lock <locka99@gmail.com>"]
edition = "2021"

Expand All @@ -9,5 +9,5 @@ pico-args = "0.5"

[dependencies.opcua]
path = "../../lib"
version = "0.12.0" # OPCUARustVersion
version = "0.13.0" # OPCUARustVersion
features = ["client", "console-logging"]
4 changes: 2 additions & 2 deletions samples/simple-server/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "opcua-simple-server"
version = "0.12.0" # OPCUARustVersion
version = "0.13.0" # OPCUARustVersion
authors = ["Adam Lock <locka99@gmail.com>"]
edition = "2021"

Expand All @@ -10,5 +10,5 @@ log = "0.4"

[dependencies.opcua]
path = "../../lib"
version = "0.12.0" # OPCUARustVersion
version = "0.13.0" # OPCUARustVersion
features = ["server", "console-logging"]
4 changes: 2 additions & 2 deletions samples/web-client/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "opcua-web-client"
version = "0.12.0" # OPCUARustVersion
version = "0.13.0" # OPCUARustVersion
authors = ["Adam Lock <locka99@gmail.com>"]
edition = "2021"

Expand All @@ -15,6 +15,6 @@ tokio = { version = "1", features = ["full"] }

[dependencies.opcua]
path = "../../lib"
version = "0.12.0" # OPCUARustVersion
version = "0.13.0" # OPCUARustVersion
features = ["client", "console-logging"]

8 changes: 2 additions & 6 deletions tools/certificate-creator/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "opcua-certificate-creator"
version = "0.12.0" # OPCUARustVersion
version = "0.13.0" # OPCUARustVersion
description = "OPC UA certificate creator"
authors = ["Adam Lock <locka99@gmail.com>"]
homepage = "https://github.com/locka99/opcua"
Expand All @@ -18,8 +18,4 @@ pico-args = "0.5"

[dependencies.opcua]
path = "../../lib"
version = "0.12.0" # OPCUARustVersion

#[dependencies.opcua-core]
#path = "../../core"
#version = "0.12.0" # OPCUARustVersion
version = "0.13.0" # OPCUARustVersion
29 changes: 0 additions & 29 deletions tools/publish.sh

This file was deleted.

0 comments on commit 5546db3

Please sign in to comment.