summaryrefslogtreecommitdiffstats
path: root/CHANGELOG.md
blob: d3ac7312c05d24031a65fbb7b21750950b0dce08 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
# Changelog

This changelog was started with the 0.4.0 release.

## Next

## 0.9.0

* Support for taskwarrior 2.6.0 serialization format
* MSRV was updated to 1.63.0

## 0.8.0

* Replace "failure" with "thiserror"
* Cleanup the codebase for rust edition 2021

## 0.7.0

* Bugfix: "imask" field in taskwarrior is a float, change type to f64.
  This is a breaking API change, thus the minor version is bumped.
* CI setup was fixed to actually fail when an error happens during
  compilation/testing. We had luck that it worked before without issue.
* All rustc versions from 1.32 until beta are tested now via travis, for maximum
  backwards compat

## 0.6.0

* Switched error handling to `failure`
* Added TaskBuilder
* Added support for user defined attributes (short UDA) via the task-hookrs::uda module.
  (This reintroduced the dependency to the "log" crate.)

## 0.5.0

* The "uuid" dependency was updated from 0.5 to 0.6

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