Skip to content
This repository has been archived by the owner on Nov 9, 2023. It is now read-only.

Release 0.7 #114

Merged
merged 1 commit into from Feb 23, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
6 changes: 3 additions & 3 deletions canon/CHANGELOG.md
Expand Up @@ -2,7 +2,7 @@

## [Unreleased]

## [0.6.7] 2022-02-23
## [0.7.0] 2022-02-23

# Added

Expand Down Expand Up @@ -155,8 +155,8 @@

Initial release

[Unreleased]: https://github.com/dusk-network/canonical/compare/canonical-0.6.7...HEAD
[0.6.7]: https://github.com/dusk-network/canonical/compare/canonical-0.6.6...canonical-0.6.7
[Unreleased]: https://github.com/dusk-network/canonical/compare/canonical-0.7.0...HEAD
[0.7.0]: https://github.com/dusk-network/canonical/compare/canonical-0.6.6...canonical-0.7.0
[0.6.6]: https://github.com/dusk-network/canonical/compare/canonical-0.6.5...canonical-0.6.6
[0.6.5]: https://github.com/dusk-network/canonical/compare/canonical-0.6.4...canonical-0.6.5
[0.6.4]: https://github.com/dusk-network/canonical/compare/canonical-0.6.3...canonical-0.6.4
Expand Down
6 changes: 3 additions & 3 deletions canon/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "canonical"
version = "0.6.7"
version = "0.7.0"
authors = ["Kristoffer Ström <kristoffer@dusk.network>"]
edition = "2018"
readme = "../README.md"
Expand All @@ -17,8 +17,8 @@ dusk-varint = "0.1"
lazy_static = "1.4.0"

[dev-dependencies]
canonical_derive = { path = "../canon_derive", version = "0.6" }
canonical_fuzz = { path = "../canon_fuzz", version = "0.6" }
canonical_derive = { path = "../canon_derive", version = "0.7" }
canonical_fuzz = { path = "../canon_fuzz", version = "0.7" }

[target.'cfg(not(target_arch = "wasm32"))'.dependencies]
blake2b_simd = "0.3"
Expand Down
4 changes: 2 additions & 2 deletions canon_derive/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "canonical_derive"
version = "0.6.2"
version = "0.7.0"
authors = ["Kristoffer Ström <kristoffer@dusk.network>"]
edition = "2018"
readme = "README.md"
Expand All @@ -13,7 +13,7 @@ license = "MPL-2.0"
proc-macro2 = "1.0"
quote = "1.0"
syn = { version = "1.0" }
canonical = { path = "../canon", version = "0.6" }
canonical = { path = "../canon", version = "0.7" }
lazy_static = "1.4.0"

[dev-dependencies]
Expand Down
4 changes: 2 additions & 2 deletions canon_fuzz/Cargo.toml
@@ -1,13 +1,13 @@
[package]
name = "canonical_fuzz"
version = "0.6.2"
version = "0.7.0"
authors = ["Kristoffer Ström <kristoffer@dusk.network>"]
edition = "2018"
repository = "https://github.com/dusk-network/canonical/canon_fuzz"
description = "Fuzzing helpers for Canonical encodings"
license = "MPL-2.0"

[dependencies]
canonical = { path = "../canon", version = "0.6.0" }
canonical = { path = "../canon", version = "0.7.0" }
arbitrary = { version = "1.0" }
rand = "0.8.3"