Skip to content

Commit 9f9c15d

Browse files
committed
[Release] Prepare 0.2.5
1 parent 4954519 commit 9f9c15d

File tree

4 files changed

+7
-4
lines changed

4 files changed

+7
-4
lines changed

CHANGELOG.md

+4-1
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,8 @@ The format is based on [Keep a Changelog] and this project adheres to
55
[Semantic Versioning].
66

77
## [Unreleased]
8+
9+
## [0.2.5] - 2017-12-12
810
### Changed
911
- `assert_eq_size_ptr` wraps its code inside of a closure, ensuring that the
1012
unsafe code inside never runs
@@ -75,7 +77,8 @@ Initial release
7577
[Keep a Changelog]: http://keepachangelog.com/en/1.0.0/
7678
[Semantic Versioning]: http://semver.org/spec/v2.0.0.html
7779

78-
[Unreleased]: https://github.com/nvzqz/static-assertions-rs/compare/v0.2.4...HEAD
80+
[Unreleased]: https://github.com/nvzqz/static-assertions-rs/compare/v0.2.5...HEAD
81+
[0.2.5]: https://github.com/nvzqz/static-assertions-rs/compare/v0.2.4...v0.2.5
7982
[0.2.4]: https://github.com/nvzqz/static-assertions-rs/compare/v0.2.3...v0.2.4
8083
[0.2.3]: https://github.com/nvzqz/static-assertions-rs/compare/v0.2.2...v0.2.3
8184
[0.2.2]: https://github.com/nvzqz/static-assertions-rs/compare/v0.2.1...v0.2.2

Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "static_assertions"
3-
version = "0.2.4"
3+
version = "0.2.5"
44
authors = ["Nikolai Vazquez"]
55
license = "MIT/Apache-2.0"
66
homepage = "https://github.com/nvzqz/static-assertions-rs"

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ following to your project's `Cargo.toml`:
1111

1212
```toml
1313
[dependencies]
14-
static_assertions = "0.2.4"
14+
static_assertions = "0.2.5"
1515
```
1616

1717
and this to your crate root:

src/lib.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
//!
1212
//! ```toml
1313
//! [dependencies]
14-
//! static_assertions = "0.2.4"
14+
//! static_assertions = "0.2.5"
1515
//! ```
1616
//!
1717
//! and this to your crate root:

0 commit comments

Comments
 (0)