Skip to content

Commit

Permalink
Add changelog entry
Browse files Browse the repository at this point in the history
  • Loading branch information
MegaBluejay committed Aug 8, 2023
1 parent 88ae590 commit 6b7b11d
Showing 1 changed file with 11 additions and 13 deletions.
24 changes: 11 additions & 13 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](http://keepachangelog.com/)
and this project adheres to [Semantic Versioning](http://semver.org/).


## 1.0.0 - Unreleased

### Breaking changes
Expand Down Expand Up @@ -72,22 +71,23 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
- Fix `Error` derive not working with `const` generics.
- Support trait objects for source in Error, e.g.
`Box<dyn Error + Send + 'static>`
- Fix bounds on derived `IntoIterator` impls for generic structs
([#284](https://github.com/JelteF/derive_more/pull/284))

## 0.99.10 - 2020-09-11

### Added

- `From` supports additional types for conversion: `#[from(types(u8, u16))]`.


## 0.99.7 - 2020-05-16

### Changed

- When specifying specific features of the crate to only enable specific
derives, the `extra-traits` feature of `syn` is not always enabled
when those the specified features do not require it. This should speed up
compile time of `syn` when this feature is not needed.
derives, the `extra-traits` feature of `syn` is not always enabled
when those the specified features do not require it. This should speed up
compile time of `syn` when this feature is not needed.

### Fixed

Expand All @@ -98,8 +98,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
### Changed

- Make sure output of derives is deterministic, for better support in
rust-analyzer

rust-analyzer

## 0.99.5 - 2020-03-28

Expand All @@ -114,7 +113,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
([#107](https://github.com/JelteF/derive_more/issues/114))

- The `tests` directory is now correctly included in the crate (requested by
Debian package maintainers)
Debian package maintainers)

## 0.99.4 - 2020-03-28 [YANKED]

Expand All @@ -126,22 +125,21 @@ tests did not run in CI.
### Fixed

- Fix generic bounds for `Deref` and `DerefMut` with no `forward`, i.e. no bounds
are necessary. ([#107](https://github.com/JelteF/derive_more/issues/114))

are necessary. ([#107](https://github.com/JelteF/derive_more/issues/114))

## 0.99.2 - 2019-11-17

### Fixed

- Hotfix for a regression in allowed `Display` derives using `#` flag, such as
`{:#b}` ([#107](https://github.com/JelteF/derive_more/issues/107))
`{:#b}` ([#107](https://github.com/JelteF/derive_more/issues/107))

## 0.99.1 - 2019-11-12

### Fixed

- Hotfix for a regression in allowed `From` derives
([#105](https://github.com/JelteF/derive_more/issues/105))
([#105](https://github.com/JelteF/derive_more/issues/105))

## 0.99.0 - 2019-11-11

Expand All @@ -153,13 +151,13 @@ breaking backwards compatibility.
This is why the next release with breaking changes is planned to be 1.0.0.

### Breaking changes

- The minimum supported rust version (MSRV) is now Rust 1.36.
- When using in a Rust 2015 crate, you should add `extern crate core` to your
code.
- `no_std` feature is removed, the library now supports `no_std` without having
to configure any features.


### Added

- `Deref` derives now dereference to the type in the newtype. So if you have
Expand Down

0 comments on commit 6b7b11d

Please sign in to comment.