Skip to content

Commit

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

* rel : CHANGELOG.md updated
  • Loading branch information
sepandhaghighi authored Oct 7, 2024
1 parent 887c4d0 commit 1e889fc
Show file tree
Hide file tree
Showing 7 changed files with 12 additions and 9 deletions.
1 change: 1 addition & 0 deletions .github/ISSUE_TEMPLATE/bug_report.yml
Original file line number Diff line number Diff line change
Expand Up @@ -85,6 +85,7 @@ body:
label: MyTimer version
description: Which version of MyTimer are you using?
options:
- MyTimer 1.7
- MyTimer 1.6
- MyTimer 1.5
- MyTimer 1.4
Expand Down
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.7] - 2024-10-09
### Added
- 2 new programs
1. `mate`
Expand Down Expand Up @@ -166,7 +167,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.6...dev
[Unreleased]: https://github.com/sepandhaghighi/mytimer/compare/v1.7...dev
[1.7]: https://github.com/sepandhaghighi/mytimer/compare/v1.6...v1.7
[1.6]: https://github.com/sepandhaghighi/mytimer/compare/v1.5...v1.6
[1.5]: https://github.com/sepandhaghighi/mytimer/compare/v1.4...v1.5
[1.4]: https://github.com/sepandhaghighi/mytimer/compare/v1.3...v1.4
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -54,13 +54,13 @@ The main objective of <strong>MyTimer</strong> is to offer a minimalistic and di
## Installation

### Source Code
- Download [Version 1.6](https://github.com/sepandhaghighi/mytimer/archive/v1.6.zip) or [Latest Source](https://github.com/sepandhaghighi/mytimer/archive/dev.zip)
- Download [Version 1.7](https://github.com/sepandhaghighi/mytimer/archive/v1.7.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.6`
- `pip install mytimer==1.7`


## Usage
Expand Down
4 changes: 2 additions & 2 deletions SECURITY.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@

| Version | Supported |
| ------------- | ------------------ |
| 1.6 | :white_check_mark: |
| < 1.6 | :x: |
| 1.7 | :white_check_mark: |
| < 1.7 | :x: |

## Reporting a Vulnerability

Expand Down
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.6"
MY_TIMER_VERSION = "1.7"
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.6"
VERSION = "1.7"

README_ITEMS = [
"[Version {0}](https://github.com/sepandhaghighi/mytimer/archive/v{0}.zip)",
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,15 +29,15 @@ def read_description():
setup(
name='mytimer',
packages=['mytimer'],
version='1.6',
version='1.7',
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.6',
download_url='https://github.com/sepandhaghighi/mytimer/tarball/v1.7',
keywords="python3 python timer terminal stopwatch cli",
project_urls={
'Source': 'https://github.com/sepandhaghighi/mytimer'
Expand Down

0 comments on commit 1e889fc

Please sign in to comment.