Update to v0.14

master
Paul Woolcock 6 years ago
parent c66c305df5
commit a05a67f3cb
  1. 3
      .clog.toml
  2. 16
      CHANGELOG.md
  3. 2
      Cargo.toml
  4. 2
      README.md
  5. 4
      src/helpers/mod.rs

@ -0,0 +1,3 @@
[clog]
changelog = "CHANGELOG.md"

@ -1,3 +1,19 @@
<a name="v0.14.0"></a>
## 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

@ -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 <theaaronepower@gmail.com>", "Paul Woolcock <paul@woolcock.us>"]

@ -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

@ -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;

Loading…
Cancel
Save