Skip to content

Commit

Permalink
Version 0.6.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Árpád Goretity committed Jul 7, 2019
1 parent 4f6febc commit b926935
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 5 deletions.
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,10 @@

## Changelog

### v0.6.0

* Fix [#6](https://github.com/H2CO3/avocado/issues/6) by adding a context dictionary to `Error`.

### v0.5.0

* Fix [#5](https://github.com/H2CO3/avocado/issues/5) by adding an `#[options(...)]` attribute to the `Doc` derive proc-macro.
Expand Down
4 changes: 2 additions & 2 deletions avocado/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "avocado"
version = "0.5.0" # remember to update version in lib.rs too!
version = "0.6.0" # remember to update version in lib.rs too!
edition = "2018"
authors = ["Árpád Goretity <[email protected]>"]
repository = "https://github.com/H2CO3/avocado.git"
Expand All @@ -25,7 +25,7 @@ uuid = { version = "0.7.2", optional = true, features = ["v4", "serde
typemap = "0.3.3"

[dev-dependencies]
avocado_derive = { version = "0.5.0", path = "../avocado_derive" }
avocado_derive = { version = "0.6.0", path = "../avocado_derive" }
magnet_derive = "0.8.0"
lazy_static = "1.2.0"
scopeguard = "1.0.0"
Expand Down
2 changes: 1 addition & 1 deletion avocado/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -664,7 +664,7 @@
//! * `raw_uuid` (default): augments the [`Uid`](uid/struct.Uid.html) type
//! with convenience methods for working with UUID-based entity/document IDs.
#![doc(html_root_url = "https://docs.rs/avocado/0.5.0")]
#![doc(html_root_url = "https://docs.rs/avocado/0.6.0")]
#![deny(missing_debug_implementations, missing_copy_implementations,
trivial_casts, trivial_numeric_casts,
unsafe_code,
Expand Down
2 changes: 1 addition & 1 deletion avocado_derive/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "avocado_derive"
version = "0.5.0" # remember to update version in lib.rs too!
version = "0.6.0" # remember to update version in lib.rs too!
edition = "2018"
authors = ["Árpád Goretity <[email protected]>"]
repository = "https://github.com/H2CO3/avocado.git"
Expand Down
2 changes: 1 addition & 1 deletion avocado_derive/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
#![crate_type = "proc-macro"]
#![recursion_limit="128"]
#![doc(html_root_url = "https://docs.rs/avocado_derive/0.5.0")]
#![doc(html_root_url = "https://docs.rs/avocado_derive/0.6.0")]
#![deny(missing_debug_implementations, missing_copy_implementations,
trivial_casts, trivial_numeric_casts,
unsafe_code,
Expand Down

0 comments on commit b926935

Please sign in to comment.