Skip to content

Commit af51c88

Browse files
author
Jared Stanbrough
committed
feat(rust): ockam_core crate 0.2.0
1 parent 03b798a commit af51c88

4 files changed

Lines changed: 19 additions & 4 deletions

File tree

implementations/rust/ockam/ockam_core/CHANGELOG.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,3 +10,18 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1010

1111
- `Error` - an error type that can be returned is both `std` and `no_std` modes.
1212
- `Result` - a result type that can be returned is both `std` and `no_std` modes.
13+
14+
## v0.2.0 - 2021-02-04
15+
### Added
16+
17+
- Runs Worker `initialize` function when the Worker is started.
18+
- Uses `From` trait in place of `Into` in Node error
19+
- Create Worker example
20+
21+
### Removed
22+
- Worker Builder
23+
24+
### Modified
25+
26+
- Moved Worker and Address types to this crate.
27+
- Renamed executor commands to messages

implementations/rust/ockam/ockam_core/Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

implementations/rust/ockam/ockam_core/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "ockam_core"
3-
version = "0.1.0"
3+
version = "0.2.0"
44
authors = ["Ockam Developers"]
55
edition = "2018"
66
license = "Apache-2.0"

implementations/rust/ockam/ockam_core/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ Add this to your `Cargo.toml`:
2121

2222
```
2323
[dependencies]
24-
ockam_core = "0.1.0"
24+
ockam_core = "0.2.0"
2525
```
2626

2727
## Crate Features
@@ -32,7 +32,7 @@ disabled as follows
3232

3333
```
3434
[dependencies]
35-
ockam_core = { version = "0.1.0", default-features = false }
35+
ockam_core = { version = "0.2.0", default-features = false }
3636
```
3737

3838
Please note that Cargo features are unioned across the entire dependency

0 commit comments

Comments
 (0)