From 945d8d3f190c910278cda1072170096b22af5cd4 Mon Sep 17 00:00:00 2001 From: Matthias Beyer Date: Tue, 19 Sep 2017 14:39:15 +0200 Subject: Bump version: 0.3.0 -> 0.4.0 --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 8556319..c082666 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "task-hookrs" -version = "0.3.0" +version = "0.4.0" authors = ["Matthias Beyer ", "Mario Krehl ", ] -- cgit v1.2.3 From 56fc9309992356d5515676f60b75808d644efe8c Mon Sep 17 00:00:00 2001 From: Matthias Beyer Date: Tue, 19 Sep 2017 14:45:17 +0200 Subject: Add changelog --- CHANGELOG.md | 40 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 40 insertions(+) create mode 100644 CHANGELOG.md diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 0000000..75952ec --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,40 @@ +# Changelog + +This changelog was started with the 0.4.0 release. + +## Next + +## 0.4.0 + +* Dependencies updated +* Unused "log" dependency removed +* Interface changed: The provided types are only data containers with + read/write functionality, no aggregate functionality anymore. + This mainly means that `Task::add_annotation()` and + `Task::add_annotations()` were removed, but all other data-accessor + functions got a mutable variant. + +## 0.3.0 + +* Dependencies updated +* Update serde so we do not need to de/ser on our own anymore +* Added examples +* Test task importing in travis-ci + +## 0.2.2 + +* Dependencies updated + +## 0.2.1 + +* Relicensed to MPL2.0 + +## 0.2.0 + +* Annotation support +* Documentation +* Dead code removed + +## 0.1.0 + +* Initial version -- cgit v1.2.3