From a05a67f3cb0674883c925983f1bd9123f4db28b1 Mon Sep 17 00:00:00 2001 From: Paul Woolcock Date: Wed, 29 Aug 2018 12:28:36 -0400 Subject: [PATCH] Update to v0.14 --- .clog.toml | 3 +++ CHANGELOG.md | 16 ++++++++++++++++ Cargo.toml | 2 +- README.md | 2 +- src/helpers/mod.rs | 4 ++-- 5 files changed, 23 insertions(+), 4 deletions(-) create mode 100644 .clog.toml diff --git a/.clog.toml b/.clog.toml new file mode 100644 index 0000000..a853fbd --- /dev/null +++ b/.clog.toml @@ -0,0 +1,3 @@ +[clog] +changelog = "CHANGELOG.md" + diff --git a/CHANGELOG.md b/CHANGELOG.md index c04fdaa..7ebea25 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,19 @@ + +## v0.14.0 (2018-08-29) + +#### Features + +* **helpers:** add json helper module ([46871da4](46871da4)) + +#### Breaking Changes + +* **client:** fix broken paged\_routes\_with\_id methods ([c66c305d](c66c305d), closes [#42](42)) + +#### Bug Fixes + +* **client:** fix broken paged\_routes\_with\_id methods ([c66c305d](c66c305d), closes [#42](42)) + + # 0.13 (2018/08/27) ## Features diff --git a/Cargo.toml b/Cargo.toml index cb8ba05..237a2f2 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "elefren" -version = "0.13.0" +version = "0.14.0" description = "A wrapper around the Mastodon API." authors = ["Aaron Power ", "Paul Woolcock "] diff --git a/README.md b/README.md index b01895c..500e62f 100644 --- a/README.md +++ b/README.md @@ -19,7 +19,7 @@ To add `elefren` to your project, add the following to the `[dependencies]` section of your `Cargo.toml` ```toml -elefren = "0.13" +elefren = "0.14" ``` ## Usage diff --git a/src/helpers/mod.rs b/src/helpers/mod.rs index 1d24774..82e7d7b 100644 --- a/src/helpers/mod.rs +++ b/src/helpers/mod.rs @@ -5,7 +5,7 @@ /// /// ```toml,ignore /// [dependencies.elefren] -/// version = "0.13" +/// version = "0.14" /// features = ["toml"] /// ``` pub mod toml; @@ -17,7 +17,7 @@ pub mod toml; /// /// ```toml,ignore /// [dependencies.elefen] -/// version = "0.12" +/// version = "0.14" /// features = ["json"] /// ``` pub mod json;