Skip to content

Commit b3cc129

Browse files
author
Andronik Ordian
authored
update changelogs and bump versions (#387)
1 parent 844f899 commit b3cc129

File tree

4 files changed

+9
-4
lines changed

4 files changed

+9
-4
lines changed

primitive-types/CHANGELOG.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,9 @@ The format is based on [Keep a Changelog].
55
[Keep a Changelog]: http://keepachangelog.com/en/1.0.0/
66

77
## [Unreleased]
8-
- Added `no_std` support for `serde` feature. [#385](https://github.com/paritytech/parity-common/pull/385)
8+
9+
## [0.7.2] - 2020-05-05
10+
- Added `serde_no_std` feature. [#385](https://github.com/paritytech/parity-common/pull/385)
911

1012
## [0.7.1] - 2020-04-27
1113
- Added `arbitrary` feature. [#378](https://github.com/paritytech/parity-common/pull/378)

primitive-types/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "primitive-types"
3-
version = "0.7.1"
3+
version = "0.7.2"
44
authors = ["Parity Technologies <[email protected]>"]
55
license = "MIT OR Apache-2.0"
66
homepage = "https://github.com/paritytech/parity-common"
@@ -10,7 +10,7 @@ edition = "2018"
1010
[dependencies]
1111
fixed-hash = { version = "0.6", path = "../fixed-hash", default-features = false }
1212
uint = { version = "0.8.3", path = "../uint", default-features = false }
13-
impl-serde = { version = "0.3.0", path = "impls/serde", default-features = false, optional = true }
13+
impl-serde = { version = "0.3.1", path = "impls/serde", default-features = false, optional = true }
1414
impl-codec = { version = "0.4.1", path = "impls/codec", default-features = false, optional = true }
1515
impl-rlp = { version = "0.2", path = "impls/rlp", default-features = false, optional = true }
1616

primitive-types/impls/serde/CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,9 @@ The format is based on [Keep a Changelog].
66

77
## [Unreleased]
88

9+
## [0.3.1] - 2020-05-05
10+
- Added `no_std` support. [#385](https://github.com/paritytech/parity-common/pull/385)
11+
912
## [0.2.3] - 2019-10-29
1013
### Fixed
1114
- Fixed a bug in empty slice serialization. [#253](https://github.com/paritytech/parity-common/pull/253)

primitive-types/impls/serde/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "impl-serde"
3-
version = "0.3.0"
3+
version = "0.3.1"
44
authors = ["Parity Technologies <[email protected]>"]
55
edition = "2018"
66
license = "MIT OR Apache-2.0"

0 commit comments

Comments
 (0)