Commit 96428613 authored by Toralf Wittner's avatar Toralf Wittner
Browse files

Update CHANGELOG and increment versions.



Signed-off-by: Toralf Wittner's avatarToralf Wittner <tw@dtex.org>
parent 43b612f6
Loading
Loading
Loading
Loading
+14 −0
Original line number Diff line number Diff line
@@ -6,6 +6,10 @@

# minicbor

## `0.11.0`

- Depends on `minicbor-derive-0.7.0`.

## `0.10.1`

- Small bugfix release (see commit 68963dc for details).
@@ -81,6 +85,12 @@

# minicbor-derive

## `0.7.0`

- Major internal refactoring to make attribute parsing more flexible and robust.
- Adds as new attributes `encode_bound`, `decode_bound` and `bound` to allow overriding the
  generated type parameter bounds.

## `0.6.4`

- Improve hygiene (see merge request !7).
@@ -120,6 +130,10 @@

# minicbor-io

## `0.6.0`

- Depends on `minicbor-0.11.0`.

## `0.5.0`

- Depends on `minicbor-0.10.0`.
+1 −1
Original line number Diff line number Diff line
[package]
name          = "minicbor-derive"
version       = "0.6.4"
version       = "0.7.0"
authors       = ["Toralf Wittner <tw@dtex.org>"]
license       = "BlueOak-1.0.0"
edition       = "2018"
+3 −3
Original line number Diff line number Diff line
[package]
name          = "minicbor-io"
version       = "0.5.0"
version       = "0.6.0"
authors       = ["Toralf Wittner <tw@dtex.org>"]
license       = "BlueOak-1.0.0"
edition       = "2018"
@@ -20,10 +20,10 @@ async-io = ["futures-core", "futures-io", "futures-util"]
futures-core = { version = "0.3.8", optional = true }
futures-io   = { version = "0.3.8", optional = true }
futures-util = { version = "0.3.8", features = ["io"], optional = true }
minicbor     = { path = "../minicbor", version = "0.10.0", features = ["std"] }
minicbor     = { path = "../minicbor", version = "0.11.0", features = ["std"] }

[dev-dependencies]
minicbor    = { path = "../minicbor", version = "0.10.0", features = ["std", "derive"] }
minicbor    = { path = "../minicbor", version = "0.11.0", features = ["std", "derive"] }
minicbor-io = { path = ".", features = ["async-io"] }
quickcheck  = "1.0.1"
rand        = "0.8"
+2 −2
Original line number Diff line number Diff line
[package]
name          = "minicbor"
version       = "0.10.1"
version       = "0.11.0"
authors       = ["Toralf Wittner <tw@dtex.org>"]
license       = "BlueOak-1.0.0"
edition       = "2018"
@@ -23,7 +23,7 @@ partial-derive-support = ["minicbor-derive", "partial-skip-support"]
__test-partial-skip-support = []

[dependencies]
minicbor-derive = { version = "0.6.4", path = "../minicbor-derive", optional = true }
minicbor-derive = { version = "0.7.0", path = "../minicbor-derive", optional = true }
half            = { version = "1", default-features = false, optional = true }

[dev-dependencies]