-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Bump version numbers and add changelog
- Loading branch information
Showing
3 changed files
with
28 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
# Changelog | ||
|
||
The version numbers follow a simple scheme: `<major>.<minor>`. Increments in major | ||
version number signal a change in the user interface. This means the users will likely | ||
have to adjust their config files or read up on changes to command names and their | ||
options. Increments in minor version signal code changes that do not require any | ||
adjustments from the users. | ||
|
||
## miteclock 1.0 | ||
|
||
After a year of use without any serious issues, the program is ready for version 1! This | ||
release features the following changes: | ||
|
||
### Features and Bugs | ||
|
||
- Added `status` command to show current state of mite timer. | ||
- Fixed a bug caused by us not trimming whitespace from an entry's note when comparing | ||
it to entries already present. This broke the idempotency guarantee when starting the | ||
clock for the same shortcut multiple times. | ||
|
||
### Development Changes | ||
|
||
- Switched to `src`-based layout, per recommended current practice. | ||
- Updated dependencies and dropped python 3.6 support. | ||
- Added backoff and timeouts to mite API requests. | ||
- Increased test coverage. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[tool.poetry] | ||
name = "miteclock" | ||
version = "0.2.2" | ||
version = "1.0" | ||
description = "Clock in and out of mite.yo.lk quickly." | ||
authors = ["Ilia Kurenkov <[email protected]>"] | ||
license="MIT" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
__version__ = "0.2.2" | ||
__version__ = "1.0" |