Skip to content

Commit

Permalink
release v1.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
soywod committed Aug 14, 2020
2 parents a69c838 + 2d01392 commit 5db4436
Show file tree
Hide file tree
Showing 33 changed files with 2,479 additions and 2,066 deletions.
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
.stack-work/
unfog.cabal
*~
dist-newstyle
*~
113 changes: 71 additions & 42 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,30 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [1.0.0]

The args parser becomes more solid (based on
[optparse](https://github.com/pcapriotti/optparse-applicative#custom-parsing-and-error-handling)
lib). The due time is simplified and normalized (using ISO notation instead of
custom one), since it's not considered as a main feature. Tags are replaced by
project. A project is just a unique tag (or a simple category). The aim of
those changes is to simplify the usage of Unfog, and to focus on the core
concept (create tasks, attach tasks to projects, start/stop tasks, check
reports).

### Added

- Save last state in a file [#25]

### Changed

- **[BREAKING]** Refactor id system [#33]
- **[BREAKING]** Refactor parser [#31]

### Fixed

- No parse due time [#34]

## [0.4.5] - 2020-07-27

### Changed
Expand Down Expand Up @@ -184,45 +208,50 @@ First release :tada:

- Linux binaries

[unreleased]: https://github.com/soywod/unfog.cli/compare/v0.4.5...HEAD
[0.4.5]: https://github.com/soywod/unfog.cli/compare/v0.4.4...v0.4.5
[0.4.4]: https://github.com/soywod/unfog.cli/compare/v0.4.3...v0.4.4
[0.4.3]: https://github.com/soywod/unfog.cli/compare/v0.4.2...v0.4.3
[0.4.2]: https://github.com/soywod/unfog.cli/compare/v0.4.1...v0.4.2
[0.4.1]: https://github.com/soywod/unfog.cli/compare/v0.4.0...v0.4.1
[0.4.0]: https://github.com/soywod/unfog.cli/compare/v0.3.3...v0.4.0
[0.3.3]: https://github.com/soywod/unfog.cli/compare/v0.3.2...v0.3.3
[0.3.2]: https://github.com/soywod/unfog.cli/compare/v0.3.1...v0.3.2
[0.3.1]: https://github.com/soywod/unfog.cli/compare/v0.3.0...v0.3.1
[0.3.0]: https://github.com/soywod/unfog.cli/compare/v0.2.2...v0.3.0
[0.2.2]: https://github.com/soywod/unfog.cli/compare/v0.2.1...v0.2.2
[0.2.1]: https://github.com/soywod/unfog.cli/compare/v0.2.0...v0.2.1
[0.2.0]: https://github.com/soywod/unfog.cli/compare/v0.1.4...v0.2.0
[0.1.4]: https://github.com/soywod/unfog.cli/compare/v0.1.3...v0.1.4
[0.1.3]: https://github.com/soywod/unfog.cli/compare/v0.1.2...v0.1.3
[0.1.2]: https://github.com/soywod/unfog.cli/compare/v0.1.1...v0.1.2
[0.1.1]: https://github.com/soywod/unfog.cli/compare/v0.1.0...v0.1.1
[0.1.0]: https://github.com/soywod/unfog.cli/releases/tag/v0.1.0

[#1]: https://github.com/soywod/unfog.cli/issues/1
[#2]: https://github.com/soywod/unfog.cli/issues/2
[#3]: https://github.com/soywod/unfog.cli/issues/3
[#4]: https://github.com/soywod/unfog.cli/issues/4
[#5]: https://github.com/soywod/unfog.cli/issues/5
[#6]: https://github.com/soywod/unfog.cli/issues/6
[#8]: https://github.com/soywod/unfog.cli/issues/8
[#9]: https://github.com/soywod/unfog.cli/issues/9
[#10]: https://github.com/soywod/unfog.cli/issues/10
[#11]: https://github.com/soywod/unfog.cli/issues/11
[#12]: https://github.com/soywod/unfog.cli/issues/12
[#13]: https://github.com/soywod/unfog.cli/issues/13
[#15]: https://github.com/soywod/unfog.cli/issues/15
[#16]: https://github.com/soywod/unfog.cli/issues/16
[#18]: https://github.com/soywod/unfog.cli/issues/18
[#20]: https://github.com/soywod/unfog.cli/issues/20
[#22]: https://github.com/soywod/unfog.cli/issues/22
[#23]: https://github.com/soywod/unfog.cli/issues/23
[#24]: https://github.com/soywod/unfog.cli/issues/24
[#26]: https://github.com/soywod/unfog.cli/issues/26
[#27]: https://github.com/soywod/unfog.cli/issues/27
[#30]: https://github.com/soywod/unfog.cli/issues/30
[unreleased]: https://github.com/soywod/unfog/compare/v1.0.0...HEAD
[1.0.0]: https://github.com/soywod/unfog/compare/v0.4.5...v1.0.0
[0.4.5]: https://github.com/soywod/unfog/compare/v0.4.4...v0.4.5
[0.4.4]: https://github.com/soywod/unfog/compare/v0.4.3...v0.4.4
[0.4.3]: https://github.com/soywod/unfog/compare/v0.4.2...v0.4.3
[0.4.2]: https://github.com/soywod/unfog/compare/v0.4.1...v0.4.2
[0.4.1]: https://github.com/soywod/unfog/compare/v0.4.0...v0.4.1
[0.4.0]: https://github.com/soywod/unfog/compare/v0.3.3...v0.4.0
[0.3.3]: https://github.com/soywod/unfog/compare/v0.3.2...v0.3.3
[0.3.2]: https://github.com/soywod/unfog/compare/v0.3.1...v0.3.2
[0.3.1]: https://github.com/soywod/unfog/compare/v0.3.0...v0.3.1
[0.3.0]: https://github.com/soywod/unfog/compare/v0.2.2...v0.3.0
[0.2.2]: https://github.com/soywod/unfog/compare/v0.2.1...v0.2.2
[0.2.1]: https://github.com/soywod/unfog/compare/v0.2.0...v0.2.1
[0.2.0]: https://github.com/soywod/unfog/compare/v0.1.4...v0.2.0
[0.1.4]: https://github.com/soywod/unfog/compare/v0.1.3...v0.1.4
[0.1.3]: https://github.com/soywod/unfog/compare/v0.1.2...v0.1.3
[0.1.2]: https://github.com/soywod/unfog/compare/v0.1.1...v0.1.2
[0.1.1]: https://github.com/soywod/unfog/compare/v0.1.0...v0.1.1
[0.1.0]: https://github.com/soywod/unfog/releases/tag/v0.1.0

[#1]: https://github.com/soywod/unfog/issues/1
[#2]: https://github.com/soywod/unfog/issues/2
[#3]: https://github.com/soywod/unfog/issues/3
[#4]: https://github.com/soywod/unfog/issues/4
[#5]: https://github.com/soywod/unfog/issues/5
[#6]: https://github.com/soywod/unfog/issues/6
[#8]: https://github.com/soywod/unfog/issues/8
[#9]: https://github.com/soywod/unfog/issues/9
[#10]: https://github.com/soywod/unfog/issues/10
[#11]: https://github.com/soywod/unfog/issues/11
[#12]: https://github.com/soywod/unfog/issues/12
[#13]: https://github.com/soywod/unfog/issues/13
[#15]: https://github.com/soywod/unfog/issues/15
[#16]: https://github.com/soywod/unfog/issues/16
[#18]: https://github.com/soywod/unfog/issues/18
[#20]: https://github.com/soywod/unfog/issues/20
[#22]: https://github.com/soywod/unfog/issues/22
[#23]: https://github.com/soywod/unfog/issues/23
[#24]: https://github.com/soywod/unfog/issues/24
[#25]: https://github.com/soywod/unfog/issues/25
[#26]: https://github.com/soywod/unfog/issues/26
[#27]: https://github.com/soywod/unfog/issues/27
[#30]: https://github.com/soywod/unfog/issues/30
[#31]: https://github.com/soywod/unfog/issues/31
[#33]: https://github.com/soywod/unfog/issues/33
[#34]: https://github.com/soywod/unfog/issues/34
Loading

0 comments on commit 5db4436

Please sign in to comment.