Skip to content
This repository has been archived by the owner on Jun 2, 2019. It is now read-only.

Commit

Permalink
prepare for 1.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Chris Palmer committed Apr 1, 2016
1 parent 92106ea commit aa5db62
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 6 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# Changelog

## feed 1.1.0
+ added to_xml
+ updated quick-xml to 0.1.8
+ updated chrono to 0.2.20

## feed 1.0.5
+ changed println to debug
+ updated curl to 0.2.18
Expand Down
6 changes: 3 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "feed"
version = "1.0.5"
version = "1.1.0"
authors = ["Chris Palmer <[email protected]"]
repository = "https://github.com/red-oxide/feed"
documentation = "http://red-oxide.github.io/feed"
Expand All @@ -12,6 +12,6 @@ license = "LGPL-3.0"
[dependencies]
url = "0.5.5"
curl = "0.2.18"
quick-xml = "0.1.7"
chrono = "0.2.19"
quick-xml = "0.1.8"
chrono = "0.2.20"
log = "0.3.5"
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ Library for passing feeds from an URL and retrieving the elements
To include feed as a cargo dependency you have to add it to your Cargo.toml:
```Toml
[dependencies]
feed = "1.0.5"
feed = "1.1.0"
```

## Bugs and feature requests
Expand Down
4 changes: 2 additions & 2 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
// Use of this source code is governed by the LGPLv3 license that can be
// found in the LICENSE file.

//! # feed 1.0.5
//! # feed 1.1.0
//!
//! This Library is for parsing through a rss field and creating a `Feed`
//! struct containing all elements of a `Channel` based on the rss spec.
Expand All @@ -12,7 +12,7 @@
//!
//! ```Toml
//! [dependencies]
//! feedreader = "1.0.5"
//! feedreader = "1.1.0"
//! ```
//!
//! And put this in your crate root:
Expand Down

0 comments on commit aa5db62

Please sign in to comment.