Skip to content

Commit

Permalink
Prepare for 0.2.0 release
Browse files Browse the repository at this point in the history
  • Loading branch information
LukasKalbertodt committed Jul 30, 2020
1 parent 069d70a commit e7622e4
Show file tree
Hide file tree
Showing 3 changed files with 22 additions and 4 deletions.
20 changes: 19 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,27 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
## [Unreleased]


## [0.2.0] - 2020-07-30
### Breaking
- The minimal required Rust version is now 1.45

### Added
- Add `serde` feature which implements `Serialize` and `Deserialize` for atomic
types as appropriate (#2)

### Changed
- Some methods previously gated by the `nightly` feature are now always
available (they were stabilized in Rust 1.45).

### Removed
- Remove `nightly` feature.This means `atomig` no longer uses
`cfg(target_has_atomic)` gates. They will be added once they get stabilized.


## 0.1.0 - 2019-07-24
### Added
- Everything.


[Unreleased]: https://github.com/LukasKalbertodt/atomic/compare/v0.1.0...HEAD
[Unreleased]: https://github.com/LukasKalbertodt/atomic/compare/v0.2.0...HEAD
[0.2.0]: https://github.com/LukasKalbertodt/atomic/compare/v0.1.0...v0.2.0
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "atomig"
version = "0.1.0"
version = "0.2.0"
authors = ["Lukas Kalbertodt <lukas.kalbertodt@gmail.com>"]
edition = "2018"

Expand All @@ -24,7 +24,7 @@ travis-ci = { repository = "LukasKalbertodt/atomig" }
derive = ["atomig-macro"]

[dependencies]
atomig-macro = { version = "0.1.0", path = "atomig-macro", optional = true }
atomig-macro = { version = "0.2.0", path = "atomig-macro", optional = true }
serde = { version = "1", default-features = false, optional = true }

[dev-dependencies]
Expand Down
2 changes: 1 addition & 1 deletion atomig-macro/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "atomig-macro"
version = "0.1.0"
version = "0.2.0"
authors = ["Lukas Kalbertodt <lukas.kalbertodt@gmail.com>"]
edition = "2018"

Expand Down

0 comments on commit e7622e4

Please sign in to comment.