From ae7a9a3baeabaf6cad2ac5ae931a9cc1074d3cd4 Mon Sep 17 00:00:00 2001 From: Sadra Sabouri <43045767+sadrasabouri@users.noreply.github.com> Date: Sun, 18 Feb 2024 22:56:00 -0800 Subject: [PATCH] Version 0.4 (#39) * update : versions in `setup.py` updated. * update : versions in `README.md` updated. * update : versions in `version_check.py` updated. * update : versions in `meta.yml` updated. * update : versions in `params.py` updated. * update : Changelog updated. * update : `bug_report.yml` version tag updated. --- .github/ISSUE_TEMPLATE/bug_report.yml | 1 + CHANGELOG.md | 4 +++- README.md | 4 ++-- nava/params.py | 2 +- others/meta.yaml | 2 +- others/version_check.py | 2 +- setup.py | 4 ++-- 7 files changed, 11 insertions(+), 8 deletions(-) diff --git a/.github/ISSUE_TEMPLATE/bug_report.yml b/.github/ISSUE_TEMPLATE/bug_report.yml index b13b8ea..92a29b4 100644 --- a/.github/ISSUE_TEMPLATE/bug_report.yml +++ b/.github/ISSUE_TEMPLATE/bug_report.yml @@ -84,6 +84,7 @@ body: label: Nava version description: Which version of Nava are you using? options: + - Nava 0.4 - Nava 0.3 - Nava 0.2 - Nava 0.1 diff --git a/CHANGELOG.md b/CHANGELOG.md index 8d81ea4..6022f1c 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.4] - 2024-02-19 ### Added - `feature_request.yml` template - `config.yml` for issue template @@ -43,7 +44,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0. - `play` function -[Unreleased]: https://github.com/openscilab/nava/compare/v0.3...dev +[Unreleased]: https://github.com/openscilab/nava/compare/v0.4...dev +[0.4]: https://github.com/openscilab/nava/compare/v0.3...v0.4 [0.3]: https://github.com/openscilab/nava/compare/v0.2...v0.3 [0.2]: https://github.com/openscilab/nava/compare/v0.1...v0.2 [0.1]: https://github.com/openscilab/nava/compare/bd789cc...v0.1 diff --git a/README.md b/README.md index b4ba0f6..2d9d029 100644 --- a/README.md +++ b/README.md @@ -93,10 +93,10 @@ Nava is a Python library that allows users to play sound in Python without any d ### PyPI - Check [Python Packaging User Guide](https://packaging.python.org/installing/) -- Run `pip install nava==0.3` +- Run `pip install nava==0.4` ### Source code -- Download [Version 0.3](https://github.com/openscilab/nava/archive/v0.3.zip) or [Latest Source](https://github.com/openscilab/nava/archive/dev.zip) +- Download [Version 0.4](https://github.com/openscilab/nava/archive/v0.4.zip) or [Latest Source](https://github.com/openscilab/nava/archive/dev.zip) - Run `pip install .` ### Conda diff --git a/nava/params.py b/nava/params.py index fcf40f4..8828b37 100644 --- a/nava/params.py +++ b/nava/params.py @@ -1,7 +1,7 @@ # -*- coding: utf-8 -*- """Nava parameters.""" -NAVA_VERSION = "0.3" +NAVA_VERSION = "0.4" OVERVIEW = """ A Python library for playing sound everywhere natively and securely. diff --git a/others/meta.yaml b/others/meta.yaml index 3ced57c..e91ceac 100644 --- a/others/meta.yaml +++ b/others/meta.yaml @@ -1,5 +1,5 @@ {% set name = "nava" %} -{% set version = "0.3" %} +{% set version = "0.4" %} package: name: {{ name|lower }} diff --git a/others/version_check.py b/others/version_check.py index 9e5762f..a9380bd 100644 --- a/others/version_check.py +++ b/others/version_check.py @@ -4,7 +4,7 @@ import sys import codecs Failed = 0 -NAVA_VERSION = "0.3" +NAVA_VERSION = "0.4" SETUP_ITEMS = [ diff --git a/setup.py b/setup.py index 3c8b419..a889fc3 100644 --- a/setup.py +++ b/setup.py @@ -32,14 +32,14 @@ def read_description(): setup( name='nava', packages=['nava'], - version='0.3', + version='0.4', description='A Python library for playing sound everywhere natively and securely.', long_description=read_description(), long_description_content_type='text/markdown', author='OpenSciLab Development Team', author_email='info@openscilab.com', url='https://github.com/openscilab/nava', - download_url='https://github.com/openscilab/nava/tarball/v0.3', + download_url='https://github.com/openscilab/nava/tarball/v0.4', keywords="sound wav music mp3 player audio", project_urls={ 'Webpage': 'https://openscilab.com/',