Skip to content

Commit

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

* rel : CHANGELOG.md updated for v0.7
  • Loading branch information
sepandhaghighi authored Aug 25, 2024
1 parent 478ef98 commit ebcfc97
Show file tree
Hide file tree
Showing 9 changed files with 20 additions and 17 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 @@ -84,6 +84,7 @@ body:
label: Nafas version
description: Which version of Nafas are you using?
options:
- Nafas 0.7
- Nafas 0.6
- Nafas 0.5
- Nafas 0.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]
## [0.7] - 2024-08-27
### Added
- `feature_request.yml` template
- `config.yml` for issue template
Expand Down Expand Up @@ -92,7 +93,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.6...dev
[Unreleased]: https://github.com/sepandhaghighi/nafas/compare/v0.7...dev
[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
[0.4]: https://github.com/sepandhaghighi/nafas/compare/v0.3...v0.4
Expand Down
2 changes: 1 addition & 1 deletion NAFAS.spec
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

block_cipher = None

nafas_version = "0.6"
nafas_version = "0.7"

a = Analysis(['nafas/__main__.py'],
pathex=['nafas'],
Expand Down
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -60,18 +60,18 @@ No need to walk away to take a break, just sit comfortably, run Nafas and let th
## Installation

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


### Exe Version (Only Windows)
- Download [Exe-Version 0.6](https://github.com/sepandhaghighi/nafas/releases/download/v0.6/NAFAS-0.6.exe)
- Run `NAFAS-0.6.exe`
- Download [Exe-Version 0.7](https://github.com/sepandhaghighi/nafas/releases/download/v0.7/NAFAS-0.7.exe)
- Run `NAFAS-0.7.exe`


## 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 |
| ------------- | ------------------ |
| 0.6 | :white_check_mark: |
| < 0.6 | :x: |
| 0.7 | :white_check_mark: |
| < 0.7 | :x: |

## Reporting a Vulnerability

Expand Down
2 changes: 1 addition & 1 deletion nafas/params.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
3. When exhaling through your mouth, it is recommended to fold the lips
"""

NAFAS_VERSION = "0.6"
NAFAS_VERSION = "0.7"

SOUND_WARNING_MESSAGE = "Your device is not compatible with our underlying sound-playing library. You can refer to https://github.com/openscilab/nava."

Expand Down
10 changes: 5 additions & 5 deletions otherfiles/Version.rc
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
VSVersionInfo(
ffi=FixedFileInfo(
filevers=(0, 6, 0, 0),
prodvers=(0, 6, 0, 0),
filevers=(0, 7, 0, 0),
prodvers=(0, 7, 0, 0),
mask=0x3f,
flags=0x0,
OS=0x40004,
Expand All @@ -16,12 +16,12 @@ VSVersionInfo(
u'040904B0',
[StringStruct(u'CompanyName', u'Sepand Haghighi'),
StringStruct(u'FileDescription', u'NAFAS.exe'),
StringStruct(u'FileVersion', u'0.6.0.0'),
StringStruct(u'FileVersion', u'0.7.0.0'),
StringStruct(u'InternalName', u'NAFAS.exe'),
StringStruct(u'LegalCopyright', u'Copyright (c) 2020-2022 Sepand Haghighi'),
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, 6, 0, 0')])
StringStruct(u'ProductVersion', u'0, 7, 0, 0')])
]),
VarFileInfo([VarStruct(u'Translation', [1033, 1200])])
]
Expand Down
2 changes: 1 addition & 1 deletion otherfiles/version_check.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
import sys
import codecs
Failed = 0
VERSION = "0.6"
VERSION = "0.7"

VERSION_1 = VERSION.split(".")[0]
VERSION_2 = str(int(float(VERSION) * 10 - int(VERSION_1) * 10))
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='nafas',
packages=['nafas'],
version='0.6',
version='0.7',
description='Breathing gymnastics application',
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/nafas',
download_url='https://github.com/sepandhaghighi/nafas/tarball/v0.6',
download_url='https://github.com/sepandhaghighi/nafas/tarball/v0.7',
keywords="python3 python breath breathing meditation",
project_urls={
'Source': 'https://github.com/sepandhaghighi/nafas',
Expand Down

0 comments on commit ebcfc97

Please sign in to comment.