Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release v0.10.0 #121

Merged
merged 3 commits into from
Jul 29, 2021
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.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 13 additions & 8 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,34 +7,41 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.9.2] - 2021-07-09
## [0.10.0] - 2021-07-29
### Added
- Add capture_docs attribute [(#118)](https://github.com/paritytech/scale-info/pull/118)

### Fixed
- Allow codec attributes, in case missing Encode/Decode derives [(#117)](https://github.com/paritytech/scale-info/pull/117)

### Changed
- Erase PhantomData fields [(#111](https://github.com/paritytech/scale-info/pull/111), [#115)](https://github.com/paritytech/scale-info/pull/115)
- Make variant index explicit, remove discriminant [(#112)](https://github.com/paritytech/scale-info/pull/112)
- Include type id in serialized type registry [(#114)](https://github.com/paritytech/scale-info/pull/114)
- Improve docs feature [(#116)](https://github.com/paritytech/scale-info/pull/116)

## [0.9.2] - 2021-07-09
### Added
- Add index getter to Variant [(#110)](https://github.com/paritytech/scale-info/pull/110)

## [0.9.1] - 2021-07-06
### Fixed

- Option constructor macro hygiene [(#108)](https://github.com/paritytech/scale-info/pull/108)

## [0.9.0] - 2021-06-30
### Changed

- Reverted parity-scale-codec prerelease requirement from [0.8.0-rc.1]
- Reexport parity-scale-codec for derive [(#106)](https://github.com/paritytech/scale-info/pull/106)

### Added

- Add `skip_type_params` attribute [(#96)](https://github.com/paritytech/scale-info/pull/96)

## [0.8.0-rc.1] - 2021-06-29
### Changed

- Bump parity-scale-codec to 2.2.0-rc.2 [(#102)](https://github.com/paritytech/scale-info/pull/102)

## [0.7.0] - 2021-06-29
### Added

- Handle more SCALE attributes: skip, index [(#44)](https://github.com/paritytech/scale-info/pull/44)
- Implement `TypeInfo` for `BTreeSet` [(#85)](https://github.com/paritytech/scale-info/pull/85)
- Implement `TypeInfo` for `Cow` [(#84)](https://github.com/paritytech/scale-info/pull/84)
Expand All @@ -48,15 +55,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Add `docs` feature [(#101)](https://github.com/paritytech/scale-info/pull/101)

### Changed

- Upgrade proc-macro-crate to v1 [(#77)](https://github.com/paritytech/scale-info/pull/77)
- Use const generics for array TypeInfo impls [(#54)](https://github.com/paritytech/scale-info/pull/54)
- Replace NonZeroU32 type lookup ids with u32 [(#90)](https://github.com/paritytech/scale-info/pull/90)
- Remove HasCompact::Type bounds [(#83)](https://github.com/paritytech/scale-info/pull/83)
- Unify sequence types [(#100)](https://github.com/paritytech/scale-info/pull/100)

### Fixed

- Fix serde and decode features without default features [(#74)](https://github.com/paritytech/scale-info/pull/74)
- Remove type parameter defaults [(#71)](https://github.com/paritytech/scale-info/pull/71)
- Fix trait bounds for associated types [(#76)](https://github.com/paritytech/scale-info/pull/76)
Expand Down
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "scale-info"
version = "0.9.2"
version = "0.10.0"
authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018"

Expand All @@ -16,7 +16,7 @@ include = ["Cargo.toml", "src/**/*.rs", "README.md", "LICENSE"]
[dependencies]
bitvec = { version = "0.20.1", default-features = false, features = ["alloc"], optional = true }
cfg-if = "1.0"
scale-info-derive = { version = "0.6.1", path = "derive", default-features = false, optional = true }
scale-info-derive = { version = "0.7.0", path = "derive", default-features = false, optional = true }
serde = { version = "1", default-features = false, optional = true, features = ["derive", "alloc"] }
derive_more = { version = "0.99.1", default-features = false, features = ["from"] }
scale = { package = "parity-scale-codec", version = "2", default-features = false, features = ["derive"] }
Expand Down
2 changes: 1 addition & 1 deletion derive/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "scale-info-derive"
version = "0.6.1"
version = "0.7.0"
authors = ["Parity Technologies <admin@parity.io>", "Centrality Developers <support@centrality.ai>"]
edition = "2018"

Expand Down