From 537d0f49ae50782f6fe926f28e716ee11a756b8e Mon Sep 17 00:00:00 2001 From: Sepand Haghighi Date: Fri, 30 Aug 2024 18:35:56 +0330 Subject: [PATCH] Version 1.6 (#111) * rel : migrate to version 1.6 * doc : CHANGELOG.md updated --- .github/ISSUE_TEMPLATE/bug_report.yml | 1 + CHANGELOG.md | 4 +++- README.md | 4 ++-- SECURITY.md | 4 ++-- mytimer/params.py | 2 +- otherfiles/version_check.py | 2 +- setup.py | 4 ++-- 7 files changed, 12 insertions(+), 9 deletions(-) diff --git a/.github/ISSUE_TEMPLATE/bug_report.yml b/.github/ISSUE_TEMPLATE/bug_report.yml index 15a1436..cc76aa1 100644 --- a/.github/ISSUE_TEMPLATE/bug_report.yml +++ b/.github/ISSUE_TEMPLATE/bug_report.yml @@ -85,6 +85,7 @@ body: label: MyTimer version description: Which version of MyTimer are you using? options: + - MyTimer 1.6 - MyTimer 1.5 - MyTimer 1.4 - MyTimer 1.3 diff --git a/CHANGELOG.md b/CHANGELOG.md index 6c47d1d..6e6f95c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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.6] - 2024-08-30 ### Added - 2 new programs 1. `puer-tea` @@ -158,7 +159,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.5...dev +[Unreleased]: https://github.com/sepandhaghighi/mytimer/compare/v1.6...dev +[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 [1.3]: https://github.com/sepandhaghighi/mytimer/compare/v1.2...v1.3 diff --git a/README.md b/README.md index 6aa964e..bd275a1 100644 --- a/README.md +++ b/README.md @@ -54,13 +54,13 @@ The main objective of MyTimer is to offer a minimalistic and di ## Installation ### Source Code -- Download [Version 1.5](https://github.com/sepandhaghighi/mytimer/archive/v1.5.zip) or [Latest Source](https://github.com/sepandhaghighi/mytimer/archive/dev.zip) +- Download [Version 1.6](https://github.com/sepandhaghighi/mytimer/archive/v1.6.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.5` +- `pip install mytimer==1.6` ## Usage diff --git a/SECURITY.md b/SECURITY.md index bcb5d7c..cabc987 100644 --- a/SECURITY.md +++ b/SECURITY.md @@ -4,8 +4,8 @@ | Version | Supported | | ------------- | ------------------ | -| 1.5 | :white_check_mark: | -| < 1.5 | :x: | +| 1.6 | :white_check_mark: | +| < 1.6 | :x: | ## Reporting a Vulnerability diff --git a/mytimer/params.py b/mytimer/params.py index b7a6fd6..c7b7b7f 100644 --- a/mytimer/params.py +++ b/mytimer/params.py @@ -1,7 +1,7 @@ # -*- coding: utf-8 -*- """mytimer params.""" -MY_TIMER_VERSION = "1.5" +MY_TIMER_VERSION = "1.6" ADDITIONAL_INFO = "Additional information: Press `Ctrl+C` to exit." INPUT_ERROR_MESSAGE = "[Error] Wrong input" SOUND_ERROR_MESSAGE = "[Error] Unable to play sound" diff --git a/otherfiles/version_check.py b/otherfiles/version_check.py index 9a5d639..75a2fa3 100644 --- a/otherfiles/version_check.py +++ b/otherfiles/version_check.py @@ -5,7 +5,7 @@ import codecs Failed = 0 -VERSION = "1.5" +VERSION = "1.6" README_ITEMS = [ "[Version {0}](https://github.com/sepandhaghighi/mytimer/archive/v{0}.zip)", diff --git a/setup.py b/setup.py index 5a74a81..1514ac1 100644 --- a/setup.py +++ b/setup.py @@ -29,7 +29,7 @@ def read_description(): setup( name='mytimer', packages=['mytimer'], - version='1.5', + version='1.6', description='A Geeky Timer for Terminal Enthusiasts', long_description=read_description(), long_description_content_type='text/markdown', @@ -37,7 +37,7 @@ def read_description(): author='Sepand Haghighi', author_email='me@sepand.tech', url='https://github.com/sepandhaghighi/mytimer', - download_url='https://github.com/sepandhaghighi/mytimer/tarball/v1.5', + download_url='https://github.com/sepandhaghighi/mytimer/tarball/v1.6', keywords="python3 python timer terminal stopwatch cli", project_urls={ 'Source': 'https://github.com/sepandhaghighi/mytimer'