Skip to content

Commit 18bc65a

Browse files
committed
[Release] Prepare 1.1.0
1 parent 6681752 commit 18bc65a

File tree

4 files changed

+32
-21
lines changed

4 files changed

+32
-21
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+
## [1.1.0] - 2019-11-03
810
### Added
911
- `assert_impl_any!` macro
1012
- `assert_impl_one!` macro
@@ -162,7 +164,8 @@ Initial release
162164
[Keep a Changelog]: http://keepachangelog.com/en/1.0.0/
163165
[Semantic Versioning]: http://semver.org/spec/v2.0.0.html
164166

165-
[Unreleased]: https://github.com/nvzqz/static-assertions-rs/compare/v1.0.0...HEAD
167+
[Unreleased]: https://github.com/nvzqz/static-assertions-rs/compare/v1.1.0...HEAD
168+
[1.1.0]: https://github.com/nvzqz/static-assertions-rs/compare/v1.0.0...v1.1.0
166169
[1.0.0]: https://github.com/nvzqz/static-assertions-rs/compare/v0.3.4...v1.0.0
167170
[0.3.4]: https://github.com/nvzqz/static-assertions-rs/compare/v0.3.3...v0.3.4
168171
[0.3.3]: https://github.com/nvzqz/static-assertions-rs/compare/v0.3.2...v0.3.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 = "1.0.0"
3+
version = "1.1.0"
44
authors = ["Nikolai Vazquez"]
55
license = "MIT OR Apache-2.0"
66
readme = "README.md"

README.md

+25-17
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ adding the following to your project's
3333

3434
```toml
3535
[dependencies]
36-
static_assertions = "1.0.0"
36+
static_assertions = "1.1.0"
3737
```
3838

3939
and this to your crate root (`main.rs` or `lib.rs`):
@@ -53,9 +53,13 @@ This crate exposes the following macros:
5353
- [`assert_eq_size_val!`]
5454
- [`assert_fields!`]
5555
- [`assert_impl_all!`]
56+
- [`assert_impl_any!`]
57+
- [`assert_impl_one!`]
5658
- [`assert_not_impl_all!`]
5759
- [`assert_not_impl_any!`]
5860
- [`assert_obj_safe!`]
61+
- [`assert_trait_sub_all!`]
62+
- [`assert_trait_super_all!`]
5963
- [`assert_type_eq_all!`]
6064
- [`assert_type_ne_all!`]
6165
- [`const_assert!`]
@@ -119,7 +123,7 @@ This crate exposes the following macros:
119123

120124
```toml
121125
[dev-dependencies]
122-
static_assertions = "1.0.0"
126+
static_assertions = "1.1.0"
123127
```
124128

125129
and then assertions can be conditionally run behind `#[cfg(test)]`:
@@ -163,18 +167,22 @@ at your choosing.
163167
[pull request]: https://github.com/nvzqz/static-assertions-rs/pulls
164168
[docs]: https://docs.rs/static_assertions
165169

166-
[`assert_cfg!`]: https://docs.rs/static_assertions/1.0.0/static_assertions/macro.assert_cfg.html
167-
[`assert_eq_align!`]: https://docs.rs/static_assertions/1.0.0/static_assertions/macro.assert_eq_align.html
168-
[`assert_eq_size!`]: https://docs.rs/static_assertions/1.0.0/static_assertions/macro.assert_eq_size.html
169-
[`assert_eq_size_ptr!`]: https://docs.rs/static_assertions/1.0.0/static_assertions/macro.assert_eq_size_ptr.html
170-
[`assert_eq_size_val!`]: https://docs.rs/static_assertions/1.0.0/static_assertions/macro.assert_eq_size_val.html
171-
[`assert_fields!`]: https://docs.rs/static_assertions/1.0.0/static_assertions/macro.assert_fields.html
172-
[`assert_impl_all!`]: https://docs.rs/static_assertions/1.0.0/static_assertions/macro.assert_impl_all.html
173-
[`assert_not_impl_all!`]: https://docs.rs/static_assertions/1.0.0/static_assertions/macro.assert_not_impl_all.html
174-
[`assert_not_impl_any!`]: https://docs.rs/static_assertions/1.0.0/static_assertions/macro.assert_not_impl_any.html
175-
[`assert_obj_safe!`]: https://docs.rs/static_assertions/1.0.0/static_assertions/macro.assert_obj_safe.html
176-
[`assert_type_eq_all!`]: https://docs.rs/static_assertions/1.0.0/static_assertions/macro.assert_type_eq_all.html
177-
[`assert_type_ne_all!`]: https://docs.rs/static_assertions/1.0.0/static_assertions/macro.assert_type_ne_all.html
178-
[`const_assert!`]: https://docs.rs/static_assertions/1.0.0/static_assertions/macro.const_assert.html
179-
[`const_assert_eq!`]: https://docs.rs/static_assertions/1.0.0/static_assertions/macro.const_assert_eq.html
180-
[`const_assert_ne!`]: https://docs.rs/static_assertions/1.0.0/static_assertions/macro.const_assert_ne.html
170+
[`assert_cfg!`]: https://docs.rs/static_assertions/1.1.0/static_assertions/macro.assert_cfg.html
171+
[`assert_eq_align!`]: https://docs.rs/static_assertions/1.1.0/static_assertions/macro.assert_eq_align.html
172+
[`assert_eq_size!`]: https://docs.rs/static_assertions/1.1.0/static_assertions/macro.assert_eq_size.html
173+
[`assert_eq_size_ptr!`]: https://docs.rs/static_assertions/1.1.0/static_assertions/macro.assert_eq_size_ptr.html
174+
[`assert_eq_size_val!`]: https://docs.rs/static_assertions/1.1.0/static_assertions/macro.assert_eq_size_val.html
175+
[`assert_fields!`]: https://docs.rs/static_assertions/1.1.0/static_assertions/macro.assert_fields.html
176+
[`assert_impl_all!`]: https://docs.rs/static_assertions/1.1.0/static_assertions/macro.assert_impl_all.html
177+
[`assert_impl_any!`]: https://docs.rs/static_assertions/1.1.0/static_assertions/macro.assert_impl_any.html
178+
[`assert_impl_one!`]: https://docs.rs/static_assertions/1.1.0/static_assertions/macro.assert_impl_one.html
179+
[`assert_not_impl_all!`]: https://docs.rs/static_assertions/1.1.0/static_assertions/macro.assert_not_impl_all.html
180+
[`assert_not_impl_any!`]: https://docs.rs/static_assertions/1.1.0/static_assertions/macro.assert_not_impl_any.html
181+
[`assert_obj_safe!`]: https://docs.rs/static_assertions/1.1.0/static_assertions/macro.assert_obj_safe.html
182+
[`assert_trait_sub_all!`]: https://docs.rs/static_assertions/1.1.0/static_assertions/macro.assert_trait_sub_all.html
183+
[`assert_trait_super_all!`]: https://docs.rs/static_assertions/1.1.0/static_assertions/macro.assert_trait_super_all.html
184+
[`assert_type_eq_all!`]: https://docs.rs/static_assertions/1.1.0/static_assertions/macro.assert_type_eq_all.html
185+
[`assert_type_ne_all!`]: https://docs.rs/static_assertions/1.1.0/static_assertions/macro.assert_type_ne_all.html
186+
[`const_assert!`]: https://docs.rs/static_assertions/1.1.0/static_assertions/macro.const_assert.html
187+
[`const_assert_eq!`]: https://docs.rs/static_assertions/1.1.0/static_assertions/macro.const_assert_eq.html
188+
[`const_assert_ne!`]: https://docs.rs/static_assertions/1.1.0/static_assertions/macro.const_assert_ne.html

src/lib.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
//!
2727
//! ```toml
2828
//! [dependencies]
29-
//! static_assertions = "1.0.0"
29+
//! static_assertions = "1.1.0"
3030
//! ```
3131
//!
3232
//! and this to your crate root (`main.rs` or `lib.rs`):
@@ -76,7 +76,7 @@
7676
//! [compile-time]: https://en.wikipedia.org/wiki/Compile_time
7777
//! [`Cargo.toml`]: https://doc.rust-lang.org/cargo/reference/manifest.html
7878
79-
#![doc(html_root_url = "https://docs.rs/static_assertions/1.0.0")]
79+
#![doc(html_root_url = "https://docs.rs/static_assertions/1.1.0")]
8080
#![doc(html_logo_url = "https://raw.githubusercontent.com/nvzqz/static-assertions-rs/assets/Icon.png")]
8181

8282
#![no_std]

0 commit comments

Comments
 (0)