Skip to content

Commit 8125bcb

Browse files
committed
[Release] Prepare 0.3.0
1 parent e971c47 commit 8125bcb

File tree

4 files changed

+18
-15
lines changed

4 files changed

+18
-15
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.3.0] - 2018-11-14
810
### Changed
911
- Bumped minimum supported (automatically tested) Rust version to 1.24.0
1012
- Moved message parameter for `assert_cfg!()` to last argument position, making
@@ -85,7 +87,8 @@ Initial release
8587
[Keep a Changelog]: http://keepachangelog.com/en/1.0.0/
8688
[Semantic Versioning]: http://semver.org/spec/v2.0.0.html
8789

88-
[Unreleased]: https://github.com/nvzqz/static-assertions-rs/compare/v0.2.5...HEAD
90+
[Unreleased]: https://github.com/nvzqz/static-assertions-rs/compare/v0.3.0...HEAD
91+
[0.3.0]: https://github.com/nvzqz/static-assertions-rs/compare/v0.2.5...v0.3.0
8992
[0.2.5]: https://github.com/nvzqz/static-assertions-rs/compare/v0.2.4...v0.2.5
9093
[0.2.4]: https://github.com/nvzqz/static-assertions-rs/compare/v0.2.3...v0.2.4
9194
[0.2.3]: https://github.com/nvzqz/static-assertions-rs/compare/v0.2.2...v0.2.3

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.5"
3+
version = "0.3.0"
44
authors = ["Nikolai Vazquez"]
55
license = "MIT/Apache-2.0"
66
homepage = "https://github.com/nvzqz/static-assertions-rs"

README.md

+10-10
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ adding the following to your project's
3131

3232
```toml
3333
[dependencies]
34-
static_assertions = "0.2.5"
34+
static_assertions = "0.3.0"
3535
```
3636

3737
and this to your crate root (`main.rs` or `lib.rs`):
@@ -44,15 +44,15 @@ extern crate static_assertions;
4444
## Usage
4545

4646
This crate exposes the following macros:
47-
- [`assert_cfg!`](https://docs.rs/static_assertions/0.2.5/static_assertions/macro.assert_cfg.html)
48-
- [`assert_eq_size!`](https://docs.rs/static_assertions/0.2.5/static_assertions/macro.assert_eq_size.html)
49-
- [`assert_eq_size_ptr!`](https://docs.rs/static_assertions/0.2.5/static_assertions/macro.assert_eq_size_ptr.html)
50-
- [`assert_eq_size_val!`](https://docs.rs/static_assertions/0.2.5/static_assertions/macro.assert_eq_size_val.html)
51-
- [`assert_fields!`](https://docs.rs/static_assertions/0.2.5/static_assertions/macro.assert_fields.html)
52-
- [`assert_impl!`](https://docs.rs/static_assertions/0.2.5/static_assertions/macro.assert_impl.html)
53-
- [`assert_obj_safe!`](https://docs.rs/static_assertions/0.2.5/static_assertions/macro.assert_obj_safe.html)
54-
- [`const_assert!`](https://docs.rs/static_assertions/0.2.5/static_assertions/macro.const_assert.html)
55-
- [`const_assert_eq!`](https://docs.rs/static_assertions/0.2.5/static_assertions/macro.const_assert_eq.html)
47+
- [`assert_cfg!`](https://docs.rs/static_assertions/0.3.0/static_assertions/macro.assert_cfg.html)
48+
- [`assert_eq_size!`](https://docs.rs/static_assertions/0.3.0/static_assertions/macro.assert_eq_size.html)
49+
- [`assert_eq_size_ptr!`](https://docs.rs/static_assertions/0.3.0/static_assertions/macro.assert_eq_size_ptr.html)
50+
- [`assert_eq_size_val!`](https://docs.rs/static_assertions/0.3.0/static_assertions/macro.assert_eq_size_val.html)
51+
- [`assert_fields!`](https://docs.rs/static_assertions/0.3.0/static_assertions/macro.assert_fields.html)
52+
- [`assert_impl!`](https://docs.rs/static_assertions/0.3.0/static_assertions/macro.assert_impl.html)
53+
- [`assert_obj_safe!`](https://docs.rs/static_assertions/0.3.0/static_assertions/macro.assert_obj_safe.html)
54+
- [`const_assert!`](https://docs.rs/static_assertions/0.3.0/static_assertions/macro.const_assert.html)
55+
- [`const_assert_eq!`](https://docs.rs/static_assertions/0.3.0/static_assertions/macro.const_assert_eq.html)
5656

5757
### Limitations
5858

src/lib.rs

+3-3
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
//!
1616
//! ```toml
1717
//! [dependencies]
18-
//! static_assertions = "0.2.5"
18+
//! static_assertions = "0.3.0"
1919
//! ```
2020
//!
2121
//! and this to your crate root (`main.rs` or `lib.rs`):
@@ -64,7 +64,7 @@
6464
//!
6565
//! ```toml
6666
//! [dependencies.static_assertions]
67-
//! version = "0.2.5"
67+
//! version = "0.3.0"
6868
//! features = ["nightly"]
6969
//! ```
7070
//!
@@ -117,7 +117,7 @@
117117
//! [compile-time]: https://en.wikipedia.org/wiki/Compile_time
118118
//! [`Cargo.toml`]: https://doc.rust-lang.org/cargo/reference/manifest.html
119119
120-
#![doc(html_root_url = "https://docs.rs/static_assertions/0.2.5")]
120+
#![doc(html_root_url = "https://docs.rs/static_assertions/0.3.0")]
121121
#![doc(html_logo_url = "https://raw.githubusercontent.com/nvzqz/static-assertions-rs/assets/Icon.png")]
122122

123123
#![no_std]

0 commit comments

Comments
 (0)