summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMatthias Beyer <mail@beyermatthias.de>2019-05-29 12:56:16 +0200
committerMatthias Beyer <mail@beyermatthias.de>2019-05-29 12:56:16 +0200
commit0f98e227633458e315e6c2e167ffc2ab0653ce7a (patch)
tree1f9865531c1db71f414ebdc1ddfcf63cbf627dd3
parentb223e569552b1dc41aba4abec5be1dd0afc9ab6a (diff)
parentfcfae9809a28b654c122e9c2a3136fc7a1157c9f (diff)
Merge branch 'prepare-0.9.0'
-rw-r--r--CHANGELOG.md9
-rw-r--r--Cargo.toml4
-rw-r--r--toml-query_derive/Cargo.toml4
3 files changed, 13 insertions, 4 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index aad25c9..b13ce1f 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -3,7 +3,14 @@
This changelog was started with the 0.4.0 release, so there are no logs before
that version.
-# Next
+# 0.9.0
+
+* Dependencies were updated to toml 0.5.
+* Sources were updated to use rust 2018
+* A feature was added to read partial documents directly into a structure
+ This feature was introduced as normal trait, but later a proc macro was added
+ to easily derive it.
+
# 0.8.0
diff --git a/Cargo.toml b/Cargo.toml
index 94c9a3d..df10622 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "toml-query"
-version = "0.8.0"
+version = "0.9.0"
authors = ["Matthias Beyer <mail@beyermatthias.de>"]
description = "Library to work with toml::Value objects more conveniently"
@@ -35,7 +35,7 @@ version = "1.0"
optional = true
[dependencies.toml-query_derive]
-version = "0.8.0"
+version = "0.9.0"
path = "./toml-query_derive/"
[dev-dependencies]
diff --git a/toml-query_derive/Cargo.toml b/toml-query_derive/Cargo.toml
index 2922e58..87fdcf7 100644
--- a/toml-query_derive/Cargo.toml
+++ b/toml-query_derive/Cargo.toml
@@ -1,7 +1,9 @@
[package]
name = "toml-query_derive"
-version = "0.8.0"
+version = "0.9.0"
authors = ["Matthias Beyer <mail@beyermatthias.de>"]
+description = "Proc-macro for toml-query"
+license = "MPL-2.0"
[lib]
proc-macro = true