Skip to content

Commit

Permalink
v0.99.1
Browse files Browse the repository at this point in the history
  • Loading branch information
whatisaphone committed Mar 9, 2020
1 parent 0ee5ae9 commit b7e93c2
Show file tree
Hide file tree
Showing 5 changed files with 16 additions and 10 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Changelog

## v0.99.1 – 2020-03-08

### Fixed

- Compile error due to missing features ([#12](https://github.com/whatisaphone/genawaiter/issues/12))

## v0.99.0 – 2020-02-16

### Added
Expand Down
10 changes: 5 additions & 5 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

[package]
name = "genawaiter"
version = "0.99.0"
version = "0.99.1"
authors = ["John Simon <john@whatisaph.one>"]
edition = "2018"
license = "MIT"
Expand All @@ -16,8 +16,8 @@ include = ["Cargo.toml", "README-crates-io.md", "src/**/*.rs"]

[dependencies]
futures-core = { version = "0.3.1", optional = true }
genawaiter-proc-macro = { version = "0.99.0", path = "./genawaiter-proc-macro", optional = true }
genawaiter-macro = { version = "0.99.0", path = "./genawaiter-macro" }
genawaiter-proc-macro = { version = "0.99.1", path = "./genawaiter-proc-macro", optional = true }
genawaiter-macro = { version = "0.99.1", path = "./genawaiter-macro" }
proc-macro-hack = { version = "0.5", optional = true }

[workspace]
Expand Down
2 changes: 1 addition & 1 deletion genawaiter-macro/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "genawaiter-macro"
version = "0.99.0"
version = "0.99.1"
authors = ["Devin R <devin.ragotzy@gmail.com>"]
license = "MIT/Apache-2.0"
description = "Convenience macros for generators (genawaiter)"
Expand Down
2 changes: 1 addition & 1 deletion genawaiter-proc-macro/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "genawaiter-proc-macro"
version = "0.99.0"
version = "0.99.1"
authors = ["Devin R <devin.ragotzy@gmail.com>"]
license = "MIT/Apache-2.0"
description = "procedural macro for generators (genawaiter)"
Expand Down

0 comments on commit b7e93c2

Please sign in to comment.