File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 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
Original file line number Diff line number Diff line change @@ -5,6 +5,7 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
55and 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
Original file line number Diff line number Diff 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
Original file line number Diff line number Diff line change 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
Original file line number Diff line number Diff line change 11# -*- coding: utf-8 -*-
22"""mytimer params."""
33
4- MY_TIMER_VERSION = "2.0 "
4+ MY_TIMER_VERSION = "2.1 "
55ADDITIONAL_INFO = "Additional information: Press `Ctrl+C` to exit."
66INPUT_ERROR_MESSAGE = "[Error] Wrong input"
77SOUND_ERROR_MESSAGE = "[Error] Unable to play sound"
Original file line number Diff line number Diff line change 55import codecs
66
77Failed = 0
8- VERSION = "2.0 "
8+ VERSION = "2.1 "
99
1010README_ITEMS = [
1111 "[Version {0}](https://github.com/sepandhaghighi/mytimer/archive/v{0}.zip)" ,
Original file line number Diff line number Diff line change @@ -29,15 +29,15 @@ def read_description():
2929setup (
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' ,
38383939 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'
You can’t perform that action at this time.
0 commit comments