Skip to content

Commit

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

* doc : CHANGELOG.md updated

* fix : mytimer v1.3 added to bug_report.yml

* fix : fail-fast disabled
  • Loading branch information
sepandhaghighi committed May 23, 2024
1 parent 38f71bc commit 8a61a4e
Show file tree
Hide file tree
Showing 8 changed files with 13 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.3
- MyTimer 1.2
- MyTimer 1.1
- MyTimer 1.0
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ jobs:

runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-20.04, windows-2022, macOS-13]
python-version: [3.6, 3.7, 3.8, 3.9, 3.10.0, 3.11.0, 3.12.0]
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.3] - 2024-05-23
### Added
- 1 new program
1. `animedoro`
Expand Down Expand Up @@ -131,7 +132,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.2...dev
[Unreleased]: https://github.com/sepandhaghighi/mytimer/compare/v1.3...dev
[1.3]: https://github.com/sepandhaghighi/mytimer/compare/v1.2...v1.3
[1.2]: https://github.com/sepandhaghighi/mytimer/compare/v1.1...v1.2
[1.1]: https://github.com/sepandhaghighi/mytimer/compare/v1.0...v1.1
[1.0]: https://github.com/sepandhaghighi/mytimer/compare/v0.9...v1.0
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.2](https://github.com/sepandhaghighi/mytimer/archive/v1.2.zip) or [Latest Source](https://github.com/sepandhaghighi/mytimer/archive/dev.zip)
- Download [Version 1.3](https://github.com/sepandhaghighi/mytimer/archive/v1.3.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.2`
- `pip install mytimer==1.3`


## 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.2 | :white_check_mark: |
| < 1.2 | :x: |
| 1.3 | :white_check_mark: |
| < 1.3 | :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.2"
MY_TIMER_VERSION = "1.3"
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.2"
VERSION = "1.3"

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.2',
version='1.3',
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.2',
download_url='https://github.com/sepandhaghighi/mytimer/tarball/v1.3',
keywords="python3 python timer terminal stopwatch cli",
project_urls={
'Source': 'https://github.com/sepandhaghighi/mytimer'
Expand Down

0 comments on commit 8a61a4e

Please sign in to comment.