Skip to content

Commit

Permalink
Prep 0.2.0 release
Browse files Browse the repository at this point in the history
  • Loading branch information
mtdowling committed Aug 26, 2017
1 parent 04777be commit aa86c85
Show file tree
Hide file tree
Showing 5 changed files with 16 additions and 7 deletions.
9 changes: 9 additions & 0 deletions CHANGELOG.md
@@ -1,5 +1,14 @@
# CHANGELOG

## 0.2.0 - 2017-09-26

* Now works with Serde 1.0:
https://github.com/mtdowling/jmespath.rs/pull/24
* impl `Error` for `JmespathError`:
https://github.com/mtdowling/jmespath.rs/pull/22
* Removed parentheses around `Fn` to fix syntactic error:
https://github.com/mtdowling/jmespath.rs/pull/20

## 0.1.1 - 2017-01-07

* Now works on stable by placing specialization behind the `specialized`
Expand Down
4 changes: 2 additions & 2 deletions Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "jmespath"
version = "0.1.1"
version = "0.2.0"
authors = ["Michael Dowling <mtdowling@gmail.com>"]
description = "Rust implementation of JMESPath, a query language for JSON"
readme = "README.md"
Expand All @@ -14,7 +14,7 @@ build = "build.rs"
[dependencies]
serde = { version = "1", features = ["rc"] }
serde_json = "1"
lazy_static = "^0.2.2"
lazy_static = "^0.2.8"

[build-dependencies]
serde_json = "1"
Expand Down
4 changes: 2 additions & 2 deletions README.md
Expand Up @@ -16,7 +16,7 @@ by adding `jmespath` to the dependencies in your project's `Cargo.toml`.

```toml
[dependencies]
jmespath = "^0.1.1"
jmespath = "^0.2.0"
```

If you are using a nightly compiler, or reading this when specialization in Rust
Expand All @@ -26,7 +26,7 @@ efficient code:

```toml
[dependencies.jmespath]
version = "^0.1.1"
version = "^0.2.0"
features = ["specialized"]
```

Expand Down
2 changes: 1 addition & 1 deletion jmespath-cli/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "jmespath-cli"
version = "0.0.1"
version = "0.0.2"
authors = ["Michael Dowling <mtdowling@gmail.com>"]
license = "MIT"

Expand Down
4 changes: 2 additions & 2 deletions jmespath-macros/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "jmespath-macros"
version = "0.1.0"
version = "0.1.1"
authors = ["Michael Dowling <mtdowling@gmail.com>"]
readme = "README.md"
keywords = ["json", "jmespath", "query"]
Expand All @@ -12,7 +12,7 @@ description = "Statically compiles JMESPath expressions."

[dependencies.jmespath]
path = ".."
version = "0.1.0"
version = "0.2.0"

[lib]
name = "jmespath_macros"
Expand Down

0 comments on commit aa86c85

Please sign in to comment.