Skip to content

Commit

Permalink
Release v0.1.3
Browse files Browse the repository at this point in the history
  • Loading branch information
althonos committed Oct 13, 2020
1 parent 134fbaf commit dcea108
Show file tree
Hide file tree
Showing 3 changed files with 28 additions and 4 deletions.
26 changes: 25 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,27 +6,51 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.


## [Unreleased]
[Unreleased]: https://github.com/fastobo/fastobo/compare/v0.1.2...HEAD

[Unreleased]: https://github.com/fastobo/fastobo/compare/v0.1.3...HEAD

## [v0.1.3] - 2020-10-13

[v0.1.3]: https://github.com/fastobo/fastobo/compare/v0.1.2...v0.1.3

### Fixed

- Handling of where clauses for traits with generic parameters,
by @alexanderlinne ([#1](https://github.com/althonos/blanket/pull/1)).


## [v0.1.2] - 2020-07-22

[v0.1.2]: https://github.com/fastobo/fastobo/compare/v0.1.1...v0.1.2

### Changed

- `syn` now only compiles with [`full`](https://docs.rs/syn/latest/syn/#optional-features)
feature in release mode.

### Removed
- Unused `darling` dependency.


## [v0.1.1] - 2020-07-22

[v0.1.1]: https://github.com/fastobo/fastobo/compare/v0.1.0...v0.1.1

### Added

- Support for generic arguments in trait definition.
- Implementation of `#[blanket(derive(Rc))]`.

### Fixed
- Error messages of `#[blanket(derive(Mut))]` referring `Ref` erroneously.
- Implementation of `fn(self)` methods when deriving for `Box`.

### Removed
- Unused `strum` dependency.


## [v0.1.0] - 2020-07-21

[v0.1.0]: https://github.com/fastobo/fastobo/compare/3e6065c9...v0.1.0

Initial release.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "blanket"
version = "0.1.2"
version = "0.1.3"
authors = ["Martin Larralde <martin.larralde@embl.de>"]
edition = "2018"
license = "MIT"
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -136,8 +136,8 @@ trait Visitor {

## 📝 To-Do

-Delegation of default method to external functions.
-Support for traits with generic arguments.
-Delegation of default method to external functions.
-Support for traits with generic arguments.
-`#[derive(Ref)]`
-`#[derive(Mut)]`
-`#[derive(Box)]`
Expand Down

0 comments on commit dcea108

Please sign in to comment.