diff --git a/.github/ISSUE_TEMPLATE/bug_report.yml b/.github/ISSUE_TEMPLATE/bug_report.yml index 7ff1ffd..9363a5d 100644 --- a/.github/ISSUE_TEMPLATE/bug_report.yml +++ b/.github/ISSUE_TEMPLATE/bug_report.yml @@ -85,6 +85,7 @@ body: label: Nafas version description: Which version of Nafas are you using? options: + - Nafas 0.8 - Nafas 0.7 - Nafas 0.6 - Nafas 0.5 diff --git a/CHANGELOG.md b/CHANGELOG.md index a636096..8c77776 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] +## [0.8] - 2024-11-04 ### Added - Balancing program - `--silent` argument @@ -103,7 +104,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0. - Anti-Appetite program - Cigarette Replace program -[Unreleased]: https://github.com/sepandhaghighi/nafas/compare/v0.7...dev +[Unreleased]: https://github.com/sepandhaghighi/nafas/compare/v0.8...dev +[0.8]: https://github.com/sepandhaghighi/nafas/compare/v0.7...v0.8 [0.7]: https://github.com/sepandhaghighi/nafas/compare/v0.6...v0.7 [0.6]: https://github.com/sepandhaghighi/nafas/compare/v0.5...v0.6 [0.5]: https://github.com/sepandhaghighi/nafas/compare/v0.4...v0.5 diff --git a/NAFAS.spec b/NAFAS.spec index 0d4d92c..9a007e2 100644 --- a/NAFAS.spec +++ b/NAFAS.spec @@ -2,7 +2,7 @@ block_cipher = None -nafas_version = "0.7" +nafas_version = "0.8" a = Analysis(['nafas/__main__.py'], pathex=['nafas'], diff --git a/README.md b/README.md index 0f49066..65fa813 100644 --- a/README.md +++ b/README.md @@ -60,21 +60,21 @@ No need to walk away to take a break, just sit comfortably, run Nafas and let th ## Installation ### Source Code -- Download [Version 0.7](https://github.com/sepandhaghighi/nafas/archive/v0.7.zip) or [Latest Source ](https://github.com/sepandhaghighi/nafas/archive/dev.zip) +- Download [Version 0.8](https://github.com/sepandhaghighi/nafas/archive/v0.8.zip) or [Latest Source](https://github.com/sepandhaghighi/nafas/archive/dev.zip) - `pip install .` ### PyPI - Check [Python Packaging User Guide](https://packaging.python.org/installing/) -- `pip install nafas==0.7` +- `pip install nafas==0.8` ### Exe Version ⚠️ Only Windows -- Download [Exe-Version 0.7](https://github.com/sepandhaghighi/nafas/releases/download/v0.7/NAFAS-0.7.exe) -- Run `NAFAS-0.7.exe` +- Download [Exe-Version 0.8](https://github.com/sepandhaghighi/nafas/releases/download/v0.8/NAFAS-0.8.exe) +- Run `NAFAS-0.8.exe` ## Usage diff --git a/SECURITY.md b/SECURITY.md index bf10b08..a54b647 100644 --- a/SECURITY.md +++ b/SECURITY.md @@ -4,8 +4,8 @@ | Version | Supported | | ------------- | ------------------ | -| 0.7 | :white_check_mark: | -| < 0.7 | :x: | +| 0.8 | :white_check_mark: | +| < 0.8 | :x: | ## Reporting a Vulnerability diff --git a/nafas/params.py b/nafas/params.py index 4a16680..7949096 100644 --- a/nafas/params.py +++ b/nafas/params.py @@ -16,7 +16,7 @@ 3. When exhaling through your mouth, it is recommended to fold the lips """ -NAFAS_VERSION = "0.7" +NAFAS_VERSION = "0.8" SOUND_WARNING_MESSAGE = "Your device is not compatible with our underlying sound-playing library. You can refer to https://github.com/openscilab/nava." diff --git a/otherfiles/Version.rc b/otherfiles/Version.rc index 324e5b6..9c2c95b 100644 --- a/otherfiles/Version.rc +++ b/otherfiles/Version.rc @@ -1,7 +1,7 @@ VSVersionInfo( ffi=FixedFileInfo( - filevers=(0, 7, 0, 0), - prodvers=(0, 7, 0, 0), + filevers=(0, 8, 0, 0), + prodvers=(0, 8, 0, 0), mask=0x3f, flags=0x0, OS=0x40004, @@ -16,12 +16,12 @@ VSVersionInfo( u'040904B0', [StringStruct(u'CompanyName', u'Sepand Haghighi'), StringStruct(u'FileDescription', u'NAFAS.exe'), - StringStruct(u'FileVersion', u'0.7.0.0'), + StringStruct(u'FileVersion', u'0.8.0.0'), StringStruct(u'InternalName', u'NAFAS.exe'), StringStruct(u'LegalCopyright', u'Copyright (c) 2020-2024 Sepand Haghighi'), StringStruct(u'OriginalFilename', u'NAFAS.exe'), StringStruct(u'ProductName', u'NAFAS'), - StringStruct(u'ProductVersion', u'0, 7, 0, 0')]) + StringStruct(u'ProductVersion', u'0, 8, 0, 0')]) ]), VarFileInfo([VarStruct(u'Translation', [1033, 1200])]) ] diff --git a/otherfiles/version_check.py b/otherfiles/version_check.py index 9129401..b4b02f4 100644 --- a/otherfiles/version_check.py +++ b/otherfiles/version_check.py @@ -4,7 +4,7 @@ import sys import codecs Failed = 0 -VERSION = "0.7" +VERSION = "0.8" VERSION_1 = VERSION.split(".")[0] VERSION_2 = str(int(float(VERSION) * 10 - int(VERSION_1) * 10)) diff --git a/setup.py b/setup.py index b85f558..dcc10f2 100644 --- a/setup.py +++ b/setup.py @@ -29,7 +29,7 @@ def read_description(): setup( name='nafas', packages=['nafas'], - version='0.7', + version='0.8', description='Breathing gymnastics application', 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/nafas', - download_url='https://github.com/sepandhaghighi/nafas/tarball/v0.7', + download_url='https://github.com/sepandhaghighi/nafas/tarball/v0.8', keywords="python3 python breath breathing meditation", project_urls={ 'Source': 'https://github.com/sepandhaghighi/nafas',