Skip to content

Commit

Permalink
Version 1.1 (#77)
Browse files Browse the repository at this point in the history
* rel : migrate to version 1.1

* fix : autopep8 scripts updated

* doc : CHANGELOG updated
  • Loading branch information
sepandhaghighi authored Dec 20, 2023
1 parent e3ef90b commit 5f9eb40
Show file tree
Hide file tree
Showing 7 changed files with 16 additions and 14 deletions.
4 changes: 3 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).

## [Unreleased]
## [1.1] - 2023-12-20
### Added
- 1 new program
1. `pomodoro`
Expand Down Expand Up @@ -99,7 +100,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
- Count-up mode
- Alarm

[Unreleased]: https://github.com/sepandhaghighi/mytimer/compare/v1.0...dev
[Unreleased]: https://github.com/sepandhaghighi/mytimer/compare/v1.1...dev
[1.1]: https://github.com/sepandhaghighi/mytimer/compare/v1.0...v1.1
[1.0]: https://github.com/sepandhaghighi/mytimer/compare/v0.9...v1.0
[0.9]: https://github.com/sepandhaghighi/mytimer/compare/v0.8...v0.9
[0.8]: https://github.com/sepandhaghighi/mytimer/compare/v0.7...v0.8
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -67,13 +67,13 @@ The main objective of <strong>MyTimer</strong> is to offer a minimalistic and di
## Installation

### Source Code
- Download [Version 1.0](https://github.com/sepandhaghighi/mytimer/archive/v1.0.zip) or [Latest Source](https://github.com/sepandhaghighi/mytimer/archive/dev.zip)
- Download [Version 1.1](https://github.com/sepandhaghighi/mytimer/archive/v1.1.zip) or [Latest Source](https://github.com/sepandhaghighi/mytimer/archive/dev.zip)
- `pip install .`

### PyPI

- Check [Python Packaging User Guide](https://packaging.python.org/installing/)
- `pip install mytimer==1.0`
- `pip install mytimer==1.1`


## Usage
Expand Down
6 changes: 3 additions & 3 deletions autopep8.bat
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
python -m autopep8 mytimer --recursive --aggressive --aggressive --in-place --pep8-passes 2000 --verbose
python -m autopep8 otherfiles --recursive --aggressive --aggressive --in-place --pep8-passes 2000 --verbose
python -m autopep8 setup.py --recursive --aggressive --aggressive --in-place --pep8-passes 2000 --verbose
python -m autopep8 mytimer --recursive --aggressive --aggressive --in-place --pep8-passes 2000 --max-line-length 120 --verbose
python -m autopep8 otherfiles --recursive --aggressive --aggressive --in-place --pep8-passes 2000 --max-line-length 120 --verbose
python -m autopep8 setup.py --recursive --aggressive --aggressive --in-place --pep8-passes 2000 --max-line-length 120 --verbose
6 changes: 3 additions & 3 deletions autopep8.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/sh
python -m autopep8 mytimer --recursive --aggressive --aggressive --in-place --pep8-passes 2000 --verbose
python -m autopep8 otherfiles --recursive --aggressive --aggressive --in-place --pep8-passes 2000 --verbose
python -m autopep8 setup.py --recursive --aggressive --aggressive --in-place --pep8-passes 2000 --verbose
python -m autopep8 mytimer --recursive --aggressive --aggressive --in-place --pep8-passes 2000 --max-line-length 120 --verbose
python -m autopep8 otherfiles --recursive --aggressive --aggressive --in-place --pep8-passes 2000 --max-line-length 120 --verbose
python -m autopep8 setup.py --recursive --aggressive --aggressive --in-place --pep8-passes 2000 --max-line-length 120 --verbose
2 changes: 1 addition & 1 deletion mytimer/params.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# -*- coding: utf-8 -*-
"""mytimer params."""

MY_TIMER_VERSION = "1.0"
MY_TIMER_VERSION = "1.1"
ADDITIONAL_INFO = "Additional information: Press `Ctrl+C` to exit."
INPUT_ERROR_MESSAGE = "[Error] Wrong input"
SOUND_ERROR_MESSAGE = "[Error] Unable to play sound"
Expand Down
2 changes: 1 addition & 1 deletion otherfiles/version_check.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
import codecs

Failed = 0
VERSION = "1.0"
VERSION = "1.1"

README_ITEMS = [
"[Version {0}](https://github.com/sepandhaghighi/mytimer/archive/v{0}.zip)",
Expand Down
6 changes: 3 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,23 +29,23 @@ def read_description():
setup(
name='mytimer',
packages=['mytimer'],
version='1.0',
version='1.1',
description='A Geeky Timer for Terminal Enthusiasts',
long_description=read_description(),
long_description_content_type='text/markdown',
include_package_data=True,
author='Sepand Haghighi',
author_email='[email protected]',
url='https://github.com/sepandhaghighi/mytimer',
download_url='https://github.com/sepandhaghighi/mytimer/tarball/v1.0',
download_url='https://github.com/sepandhaghighi/mytimer/tarball/v1.1',
keywords="python3 python timer terminal stopwatch cli",
project_urls={
'Source': 'https://github.com/sepandhaghighi/mytimer'
},
install_requires=get_requires(),
python_requires='>=3.5',
classifiers=[
'Development Status :: 4 - Beta',
'Development Status :: 5 - Production/Stable',
'Natural Language :: English',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
Expand Down

0 comments on commit 5f9eb40

Please sign in to comment.