Skip to content

Commit

Permalink
Bump version numbers and add changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
iliakur committed Oct 3, 2021
1 parent 78aa87e commit 3871b72
Show file tree
Hide file tree
Showing 3 changed files with 28 additions and 2 deletions.
26 changes: 26 additions & 0 deletions CHANGELOG.md
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.
2 changes: 1 addition & 1 deletion pyproject.toml
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"
Expand Down
2 changes: 1 addition & 1 deletion src/miteclock/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "0.2.2"
__version__ = "1.0"

0 comments on commit 3871b72

Please sign in to comment.