Skip to content
This repository was archived by the owner on Sep 4, 2022. It is now read-only.

Commit 1adcae1

Browse files
committed
Bump version: 0.3.1
1 parent ecc3c3b commit 1adcae1

File tree

2 files changed

+9
-4
lines changed

2 files changed

+9
-4
lines changed

CHANGELOG.md

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
66

77
## [Unreleased]
88

9-
## [0.3.0] 2020-12-31
9+
## [0.3.1] - 2020-12-31
10+
### Fixed
11+
- (Hopefully) got `cargo install ipld-schema` to compile successfully.
12+
13+
## [0.3.0] - 2020-12-31
1014
### Added
1115
- CLI program called `ipld-schema` which can generate and validate schema and the data they describe.
1216
- Public `Opt` type that drives all CLI functionality and enables library users to achieve the same things.
@@ -31,7 +35,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
3135
- Partial DSL parser that can read the schema-schema.
3236
- Serde deserializers to read IPDL's [reified JSON form of the schema-schema](./specs/schemas/schema-schema.ipldsch.json) and a test verifying correspondence to parsed DSL form.
3337

34-
[Unreleased]: https://github.com/mx00s/ipld-schema/compare/0.3.0...HEAD
38+
[Unreleased]: https://github.com/mx00s/ipld-schema/compare/0.3.1...HEAD
39+
[0.3.0]: https://github.com/mx00s/ipld-schema/compare/0.3.0...0.3.1
3540
[0.3.0]: https://github.com/mx00s/ipld-schema/compare/0.2.0...0.3.0
3641
[0.2.0]: https://github.com/mx00s/ipld-schema/compare/0.1.1...0.2.0
3742
[0.1.1]: https://github.com/mx00s/ipld-schema/compare/b47846afc50ff594ed144197de35c81142b595bd...0.1.1

Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "ipld-schema"
3-
version = "0.3.0"
3+
version = "0.3.1"
44
authors = ["Sage Mitchell <[email protected]>"]
55
edition = "2018"
66
description = "IPLD Schema tools"
@@ -21,7 +21,7 @@ base64 = "0.13.0"
2121
peg = "0.6.3"
2222
proptest = "0.10.1"
2323
rand = "0.7.3" # intentionally not upgrading to avoid ./target/... path collision warning
24-
serde = "1.0.118"
24+
serde = { version = "1.0.118", features = ["derive"] }
2525
structopt = { version = "0.3.21", optional = true }
2626
test-strategy = "0.1.1"
2727

0 commit comments

Comments
 (0)