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.2
8990 - MyTimer 2.1
9091 - MyTimer 2.0
9192 - MyTimer 1.9
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.2] - 2025-03-13
89### Added
910- ` --date-system ` argument
1011### Changed
@@ -217,7 +218,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
217218- Count-up mode
218219- Alarm
219220
220- [ Unreleased ] : https://github.com/sepandhaghighi/mytimer/compare/v2.1...dev
221+ [ Unreleased ] : https://github.com/sepandhaghighi/mytimer/compare/v2.2...dev
222+ [ 2.2 ] : https://github.com/sepandhaghighi/mytimer/compare/v2.1...v2.2
221223[ 2.1 ] : https://github.com/sepandhaghighi/mytimer/compare/v2.0...v2.1
222224[ 2.0 ] : https://github.com/sepandhaghighi/mytimer/compare/v1.9...v2.0
223225[ 1.9 ] : https://github.com/sepandhaghighi/mytimer/compare/v1.8...v1.9
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.1 ] ( https://github.com/sepandhaghighi/mytimer/archive/v2.1 .zip ) or [ Latest Source] ( https://github.com/sepandhaghighi/mytimer/archive/dev.zip )
58+ - Download [ Version 2.2 ] ( https://github.com/sepandhaghighi/mytimer/archive/v2.2 .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.1 `
64+ - ` pip install mytimer==2.2 `
6565
6666
6767## Usage
Original file line number Diff line number Diff line change 44
55| Version | Supported |
66| ------------- | ------------------ |
7- | 2.1 | :white_check_mark : |
8- | < 2.1 | :x : |
7+ | 2.2 | :white_check_mark : |
8+ | < 2.2 | :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.1 "
4+ MY_TIMER_VERSION = "2.2 "
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.1 "
8+ VERSION = "2.2 "
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.1 ' ,
32+ version = '2.2 ' ,
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 = 'me@sepand.tech' ,
3939 url = 'https://github.com/sepandhaghighi/mytimer' ,
40- download_url = 'https://github.com/sepandhaghighi/mytimer/tarball/v2.1 ' ,
40+ download_url = 'https://github.com/sepandhaghighi/mytimer/tarball/v2.2 ' ,
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