diff --git a/CHANGELOG.md b/CHANGELOG.md index a4c2f65..88f29b0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,12 +1,13 @@ # History -## 0.7.0 (2023-04-06) +## 0.7.0 (2023-04-07) +- add option and environment variable alternatives for all settings - add setting to specify timezone for display - setting : `TIME_ZONE` - option: `--time-zone ` - environment variable: `WORKEDON_TIME_ZONE` -- add option and environment variable alternative for settings +- fix usage of date/time formatting settings - BREAKING (for advanced users only): removed the `db` and `conf` subcommands and moved their options under the main `workedon` command to free up reserved keywords `db` and `conf`. @@ -16,7 +17,7 @@ - `workedon db --version` is now `workedon --db-version` - `workedon conf --print-path` is now `workedon --print-settings-path` - `workedon conf --print` is now `workedon --print-settings` -- fix usage of date/time formatting + - all above options are now hidden from the user ## 0.6.3 (2023-04-02) @@ -92,6 +93,7 @@ ## 0.5.0 (2023-01-14) - Breaking: rename database to won.db +(A new database will be created and the old one will no longer be used.) ## 0.4.5 (2023-01-13) diff --git a/README.md b/README.md index 5b25dde..50296f1 100644 --- a/README.md +++ b/README.md @@ -248,7 +248,7 @@ Credits - [dateparser](https://github.com/scrapinghub/dateparser), for an amazing date parser. This project would not be possible without it. - [peewee](https://github.com/coleifer/peewee), for a nice and - tiny ORM to interact with sqlite. + tiny ORM to interact with SQLite. - [Click](https://click.palletsprojects.com), for making writing CLI tools a complete pleasure. - [jrnl](https://github.com/jrnl-org/jrnl), diff --git a/workedon/__init__.py b/workedon/__init__.py index 550e298..2d7d04b 100644 --- a/workedon/__init__.py +++ b/workedon/__init__.py @@ -3,4 +3,4 @@ __author__ = "Visesh Prasad" __email__ = "viseshrprasad@gmail.com" __name__ = "workedon" -__version__ = "0.6.3" +__version__ = "0.7.0"