Changelog
*Sourced from [static_assertions's changelog](https://github.com/nvzqz/static-assertions-rs/blob/master/CHANGELOG.md).*
> ## [1.0.0]: - 2019-10-02
> ### Added
> - `assert_eq_align!` macro
>
> ### Removed
> - **[breaking]** Labels from macros that needed them 🎉
> - Made possible by [`const _`] in Rust 1.37
> - **[breaking]** `assert_impl!` macro
>
> ### Fixed
> - `assert_fields!` now works for `enum` types with multiple variants
>
> ### Changed
> - **[breaking]** `const_assert!` macro to only take one expression
> - Reasoning: when custom error messages are added in the future (via
> [`assert!`]), having the macro allow for multiple comma-separated
> expressions may lead to ambiguity
> - **[breaking]** Trait assertions to use `Type: Trait` syntax
> - **[breaking]** Field assertions to use `Type: field1, field2` syntax
> - **[breaking]** Renamed `assert_{ne,eq}_type!` to `assert_type_{ne,eq}_all!`
>
> ## [0.3.4] - 2019-06-12
> ### Changed
> - Aliased `assert_impl!` to `assert_impl_all!` and deprecated `assert_impl!`
>
> ### Added
> - `assert_impl_all!` as replacement to `assert_impl!`
> - `assert_not_impl_all!` and `assert_not_impl_any!` macro counterparts to
> `assert_impl_all!`
>
> ### Fixed
> - `assert_eq_type!` now works with types involving lifetimes
Commits
- [`e718a13`](https://github.com/nvzqz/static-assertions-rs/commit/e718a131b078cd55967768dc83340b393aa0e078) [Release] Prepare 1.0.0
- [`2494104`](https://github.com/nvzqz/static-assertions-rs/commit/249410496ccb7cd7ab1d5e2c5fe76c35ec94656c) Reword `assert_obj_safe!` docs
- [`cebf567`](https://github.com/nvzqz/static-assertions-rs/commit/cebf5677cec6f49bd7ffadd186c3bb843198e305) Make `assert_type_eq_all!` fit 80 columns
- [`38c0160`](https://github.com/nvzqz/static-assertions-rs/commit/38c0160aeb7e84227376d138e29e2be0fd8bcca9) Add `assert_eq_align!` macro
- [`f6623e9`](https://github.com/nvzqz/static-assertions-rs/commit/f6623e9a16fb20be7b8b094426031717f2ad43c5) Separate type with colon in `assert_fields!`
- [`a400255`](https://github.com/nvzqz/static-assertions-rs/commit/a400255cdf040c646e8f2a50360bcf5341778241) Make `-> ()` in functions implicit
- [`dff7daa`](https://github.com/nvzqz/static-assertions-rs/commit/dff7daa4d51b3a6ac141fa09dce83857a7b46e5e) Improve `assert_impl_all!` docs
- [`54d2ad5`](https://github.com/nvzqz/static-assertions-rs/commit/54d2ad58b4f32d63ac4822a3f8feba43859c6409) Move `assert_not_impl_{all,any}!` macros
- [`1ddb736`](https://github.com/nvzqz/static-assertions-rs/commit/1ddb73640e38bd062d82cd7afef9e02e151732c2) Fix how `assert_fields!` works with enums
- [`e7ac9f8`](https://github.com/nvzqz/static-assertions-rs/commit/e7ac9f84603f1906dcb308bc7276b74e5e2eb925) Rename `assert_{ne,eq}_type!` macros
- Additional commits viewable in [compare view](https://github.com/nvzqz/static-assertions-rs/compare/v0.3.3...v1.0.0)
Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.
Dependabot commands and options
You can trigger Dependabot actions by commenting on this PR:
- `@dependabot rebase` will rebase this PR
- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it
- `@dependabot merge` will merge this PR after your CI passes on it
- `@dependabot squash and merge` will squash and merge this PR after your CI passes on it
- `@dependabot cancel merge` will cancel a previously requested merge and block automerging
- `@dependabot reopen` will reopen this PR if it is closed
- `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
- `@dependabot use these labels` will set the current labels as the default for future PRs for this repo and language
- `@dependabot use these reviewers` will set the current reviewers as the default for future PRs for this repo and language
- `@dependabot use these assignees` will set the current assignees as the default for future PRs for this repo and language
- `@dependabot use this milestone` will set the current milestone as the default for future PRs for this repo and language
- `@dependabot badge me` will comment on this PR with code to add a "Dependabot enabled" badge to your readme
Additionally, you can set the following in your Dependabot [dashboard](https://app.dependabot.com):
- Update frequency (including time of day and day of week)
- Pull request limits (per update run and/or open at any time)
- Out-of-range updates (receive only lockfile updates, if desired)
- Security updates (receive only security updates, if desired)
Bumps static_assertions from 0.3.3 to 1.0.0.
Changelog
*Sourced from [static_assertions's changelog](https://github.com/nvzqz/static-assertions-rs/blob/master/CHANGELOG.md).* > ## [1.0.0]: - 2019-10-02 > ### Added > - `assert_eq_align!` macro > > ### Removed > - **[breaking]** Labels from macros that needed them 🎉 > - Made possible by [`const _`] in Rust 1.37 > - **[breaking]** `assert_impl!` macro > > ### Fixed > - `assert_fields!` now works for `enum` types with multiple variants > > ### Changed > - **[breaking]** `const_assert!` macro to only take one expression > - Reasoning: when custom error messages are added in the future (via > [`assert!`]), having the macro allow for multiple comma-separated > expressions may lead to ambiguity > - **[breaking]** Trait assertions to use `Type: Trait` syntax > - **[breaking]** Field assertions to use `Type: field1, field2` syntax > - **[breaking]** Renamed `assert_{ne,eq}_type!` to `assert_type_{ne,eq}_all!` > > ## [0.3.4] - 2019-06-12 > ### Changed > - Aliased `assert_impl!` to `assert_impl_all!` and deprecated `assert_impl!` > > ### Added > - `assert_impl_all!` as replacement to `assert_impl!` > - `assert_not_impl_all!` and `assert_not_impl_any!` macro counterparts to > `assert_impl_all!` > > ### Fixed > - `assert_eq_type!` now works with types involving lifetimesCommits
- [`e718a13`](https://github.com/nvzqz/static-assertions-rs/commit/e718a131b078cd55967768dc83340b393aa0e078) [Release] Prepare 1.0.0 - [`2494104`](https://github.com/nvzqz/static-assertions-rs/commit/249410496ccb7cd7ab1d5e2c5fe76c35ec94656c) Reword `assert_obj_safe!` docs - [`cebf567`](https://github.com/nvzqz/static-assertions-rs/commit/cebf5677cec6f49bd7ffadd186c3bb843198e305) Make `assert_type_eq_all!` fit 80 columns - [`38c0160`](https://github.com/nvzqz/static-assertions-rs/commit/38c0160aeb7e84227376d138e29e2be0fd8bcca9) Add `assert_eq_align!` macro - [`f6623e9`](https://github.com/nvzqz/static-assertions-rs/commit/f6623e9a16fb20be7b8b094426031717f2ad43c5) Separate type with colon in `assert_fields!` - [`a400255`](https://github.com/nvzqz/static-assertions-rs/commit/a400255cdf040c646e8f2a50360bcf5341778241) Make `-> ()` in functions implicit - [`dff7daa`](https://github.com/nvzqz/static-assertions-rs/commit/dff7daa4d51b3a6ac141fa09dce83857a7b46e5e) Improve `assert_impl_all!` docs - [`54d2ad5`](https://github.com/nvzqz/static-assertions-rs/commit/54d2ad58b4f32d63ac4822a3f8feba43859c6409) Move `assert_not_impl_{all,any}!` macros - [`1ddb736`](https://github.com/nvzqz/static-assertions-rs/commit/1ddb73640e38bd062d82cd7afef9e02e151732c2) Fix how `assert_fields!` works with enums - [`e7ac9f8`](https://github.com/nvzqz/static-assertions-rs/commit/e7ac9f84603f1906dcb308bc7276b74e5e2eb925) Rename `assert_{ne,eq}_type!` macros - Additional commits viewable in [compare view](https://github.com/nvzqz/static-assertions-rs/compare/v0.3.3...v1.0.0)Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting
@dependabot rebase
.Dependabot commands and options
You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually - `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself) - `@dependabot use these labels` will set the current labels as the default for future PRs for this repo and language - `@dependabot use these reviewers` will set the current reviewers as the default for future PRs for this repo and language - `@dependabot use these assignees` will set the current assignees as the default for future PRs for this repo and language - `@dependabot use this milestone` will set the current milestone as the default for future PRs for this repo and language - `@dependabot badge me` will comment on this PR with code to add a "Dependabot enabled" badge to your readme Additionally, you can set the following in your Dependabot [dashboard](https://app.dependabot.com): - Update frequency (including time of day and day of week) - Pull request limits (per update run and/or open at any time) - Out-of-range updates (receive only lockfile updates, if desired) - Security updates (receive only security updates, if desired)