CHANGELOG.md in dovico-1.2.0 vs CHANGELOG.md in dovico-1.3.0
- old
+ new
@@ -1,7 +1,42 @@
# Next version
- Your contribution!
+# Version 1.3.0
+- Update [README.md](README.md)
+- Fix bug when no time entries were to be submitted
+- **Breaking change**: Specific days must be configured in the special `specific_days` section in the configuration file
+- Specific weeks or months can be defined with `specific_weeks` and `specific_months` configuration
+~~~json
+assignments:
+ default_day:
+ - project_id: 1234
+ task_id: 100
+ hours: 3
+ - project_id: 9999
+ task_id: 120
+ hours: 2
+ - project_id: 4321
+ task_id: 424
+ hours: 2
+ specific_days:
+ # Quotes around day are mandatory
+ # On leave: use an empty array
+ '2016-01-17': []
+ # Specific day: redefine each tasks
+ '2017-12-19':
+ - project_id: 1234
+ task_id: 456
+ hours: 6
+ - project_id: 4321
+ task_id: 424
+ hours: 1
+ specific_weeks:
+ '2016-52': [] # Christmas week
+ specific_months:
+ '2016-07': [] # No work on July
+~~~
+
# Version 1.2.0
- Update [README.md](README.md)
- Add `--clear` option to delete time entries
- Fix a typo on Projet URL
- Fix formatting tasks list when mutliple tasks are associated to an assignment