diff --git a/.github/ISSUE_TEMPLATE/bug_report.yml b/.github/ISSUE_TEMPLATE/bug_report.yml index 9363a5d..077f411 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.9 - Nafas 0.8 - Nafas 0.7 - Nafas 0.6 diff --git a/CHANGELOG.md b/CHANGELOG.md index 03f07ec..eba0f73 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.9] - 2025-01-06 ### Added - Energizing program - `PROGRAMS.md` @@ -114,7 +115,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.8...dev +[Unreleased]: https://github.com/sepandhaghighi/nafas/compare/v0.9...dev +[0.9]: https://github.com/sepandhaghighi/nafas/compare/v0.8...v0.9 [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 diff --git a/NAFAS.spec b/NAFAS.spec index 9a007e2..d997487 100644 --- a/NAFAS.spec +++ b/NAFAS.spec @@ -2,7 +2,7 @@ block_cipher = None -nafas_version = "0.8" +nafas_version = "0.9" a = Analysis(['nafas/__main__.py'], pathex=['nafas'], diff --git a/README.md b/README.md index 5ce274e..302a944 100644 --- a/README.md +++ b/README.md @@ -61,21 +61,21 @@ No need to walk away to take a break, just sit comfortably, run Nafas and let th ## Installation ### Source Code -- Download [Version 0.8](https://github.com/sepandhaghighi/nafas/archive/v0.8.zip) or [Latest Source](https://github.com/sepandhaghighi/nafas/archive/dev.zip) +- Download [Version 0.9](https://github.com/sepandhaghighi/nafas/archive/v0.9.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.8` +- `pip install nafas==0.9` ### Exe Version ⚠️ Only Windows -- Download [Exe-Version 0.8](https://github.com/sepandhaghighi/nafas/releases/download/v0.8/NAFAS-0.8.exe) -- Run `NAFAS-0.8.exe` +- Download [Exe-Version 0.9](https://github.com/sepandhaghighi/nafas/releases/download/v0.9/NAFAS-0.9.exe) +- Run `NAFAS-0.9.exe` ## Usage diff --git a/SECURITY.md b/SECURITY.md index a54b647..2474f34 100644 --- a/SECURITY.md +++ b/SECURITY.md @@ -4,8 +4,8 @@ | Version | Supported | | ------------- | ------------------ | -| 0.8 | :white_check_mark: | -| < 0.8 | :x: | +| 0.9 | :white_check_mark: | +| < 0.9 | :x: | ## Reporting a Vulnerability diff --git a/nafas/params.py b/nafas/params.py index 1573792..8e0843a 100644 --- a/nafas/params.py +++ b/nafas/params.py @@ -1,7 +1,7 @@ # -*- coding: utf-8 -*- """nafas parameters.""" -NAFAS_VERSION = "0.8" +NAFAS_VERSION = "0.9" NAFAS_DESCRIPTION = """ Breathing gymnastics is a system of breathing exercises that focuses on the treatment of various diseases and general health promotion. diff --git a/otherfiles/Version.rc b/otherfiles/Version.rc index 9c2c95b..2b49488 100644 --- a/otherfiles/Version.rc +++ b/otherfiles/Version.rc @@ -1,7 +1,7 @@ VSVersionInfo( ffi=FixedFileInfo( - filevers=(0, 8, 0, 0), - prodvers=(0, 8, 0, 0), + filevers=(0, 9, 0, 0), + prodvers=(0, 9, 0, 0), mask=0x3f, flags=0x0, OS=0x40004, @@ -14,14 +14,14 @@ VSVersionInfo( [ StringTable( u'040904B0', - [StringStruct(u'CompanyName', u'Sepand Haghighi'), + [StringStruct(u'CompanyName', u'Nafas Development Team'), StringStruct(u'FileDescription', u'NAFAS.exe'), - StringStruct(u'FileVersion', u'0.8.0.0'), + StringStruct(u'FileVersion', u'0.9.0.0'), StringStruct(u'InternalName', u'NAFAS.exe'), - StringStruct(u'LegalCopyright', u'Copyright (c) 2020-2024 Sepand Haghighi'), + StringStruct(u'LegalCopyright', u'Copyright (c) 2020-2025 Nafas Development Team'), StringStruct(u'OriginalFilename', u'NAFAS.exe'), StringStruct(u'ProductName', u'NAFAS'), - StringStruct(u'ProductVersion', u'0, 8, 0, 0')]) + StringStruct(u'ProductVersion', u'0, 9, 0, 0')]) ]), VarFileInfo([VarStruct(u'Translation', [1033, 1200])]) ] diff --git a/otherfiles/version_check.py b/otherfiles/version_check.py index b4b02f4..0d8546f 100644 --- a/otherfiles/version_check.py +++ b/otherfiles/version_check.py @@ -4,7 +4,7 @@ import sys import codecs Failed = 0 -VERSION = "0.8" +VERSION = "0.9" 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 6db8e95..7989f4a 100644 --- a/setup.py +++ b/setup.py @@ -29,7 +29,7 @@ def read_description(): setup( name='nafas', packages=['nafas'], - version='0.8', + version='0.9', description='Breathing gymnastics application', long_description=read_description(), long_description_content_type='text/markdown', @@ -37,7 +37,7 @@ def read_description(): author='Nafas Development Team', author_email='me@sepand.tech', url='https://github.com/sepandhaghighi/nafas', - download_url='https://github.com/sepandhaghighi/nafas/tarball/v0.8', + download_url='https://github.com/sepandhaghighi/nafas/tarball/v0.9', keywords="breath breathing meditation yoga pranayama", project_urls={ 'Source': 'https://github.com/sepandhaghighi/nafas',