Skip to content

Commit 2c604ce

Browse files
Version 2.1 (#147)
* rel : migrate to version 2.1 * rel : CHANGELOG.md updated
1 parent 9f471e9 commit 2c604ce

7 files changed

Lines changed: 12 additions & 9 deletions

File tree

.github/ISSUE_TEMPLATE/bug_report.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -86,6 +86,7 @@ body:
8686
label: MyTimer version
8787
description: Which version of MyTimer are you using?
8888
options:
89+
- MyTimer 2.1
8990
- MyTimer 2.0
9091
- MyTimer 1.9
9192
- MyTimer 1.8

CHANGELOG.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
55
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).
66

77
## [Unreleased]
8+
## [2.1] - 2025-02-28
89
### Added
910
- 4 new tones
1011
- `--vertical` argument
@@ -208,7 +209,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
208209
- Count-up mode
209210
- Alarm
210211

211-
[Unreleased]: https://github.com/sepandhaghighi/mytimer/compare/v2.0...dev
212+
[Unreleased]: https://github.com/sepandhaghighi/mytimer/compare/v2.1...dev
213+
[2.1]: https://github.com/sepandhaghighi/mytimer/compare/v2.0...v2.1
212214
[2.0]: https://github.com/sepandhaghighi/mytimer/compare/v1.9...v2.0
213215
[1.9]: https://github.com/sepandhaghighi/mytimer/compare/v1.8...v1.9
214216
[1.8]: https://github.com/sepandhaghighi/mytimer/compare/v1.7...v1.8

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -55,13 +55,13 @@ The main objective of <strong>MyTimer</strong> is to offer a minimalistic and di
5555
## Installation
5656

5757
### Source Code
58-
- Download [Version 2.0](https://github.com/sepandhaghighi/mytimer/archive/v2.0.zip) or [Latest Source](https://github.com/sepandhaghighi/mytimer/archive/dev.zip)
58+
- Download [Version 2.1](https://github.com/sepandhaghighi/mytimer/archive/v2.1.zip) or [Latest Source](https://github.com/sepandhaghighi/mytimer/archive/dev.zip)
5959
- `pip install .`
6060

6161
### PyPI
6262

6363
- Check [Python Packaging User Guide](https://packaging.python.org/installing/)
64-
- `pip install mytimer==2.0`
64+
- `pip install mytimer==2.1`
6565

6666

6767
## Usage

SECURITY.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@
44

55
| Version | Supported |
66
| ------------- | ------------------ |
7-
| 2.0 | :white_check_mark: |
8-
| < 2.0 | :x: |
7+
| 2.1 | :white_check_mark: |
8+
| < 2.1 | :x: |
99

1010
## Reporting a Vulnerability
1111

mytimer/params.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# -*- coding: utf-8 -*-
22
"""mytimer params."""
33

4-
MY_TIMER_VERSION = "2.0"
4+
MY_TIMER_VERSION = "2.1"
55
ADDITIONAL_INFO = "Additional information: Press `Ctrl+C` to exit."
66
INPUT_ERROR_MESSAGE = "[Error] Wrong input"
77
SOUND_ERROR_MESSAGE = "[Error] Unable to play sound"

otherfiles/version_check.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
import codecs
66

77
Failed = 0
8-
VERSION = "2.0"
8+
VERSION = "2.1"
99

1010
README_ITEMS = [
1111
"[Version {0}](https://github.com/sepandhaghighi/mytimer/archive/v{0}.zip)",

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,15 +29,15 @@ def read_description():
2929
setup(
3030
name='mytimer',
3131
packages=['mytimer'],
32-
version='2.0',
32+
version='2.1',
3333
description='A Geeky Timer for Terminal Enthusiasts',
3434
long_description=read_description(),
3535
long_description_content_type='text/markdown',
3636
include_package_data=True,
3737
author='Sepand Haghighi',
3838
author_email='[email protected]',
3939
url='https://github.com/sepandhaghighi/mytimer',
40-
download_url='https://github.com/sepandhaghighi/mytimer/tarball/v2.0',
40+
download_url='https://github.com/sepandhaghighi/mytimer/tarball/v2.1',
4141
keywords="timer time clock terminal stopwatch cli geek",
4242
project_urls={
4343
'Source': 'https://github.com/sepandhaghighi/mytimer'

0 commit comments

Comments
 (0)