diff --git a/.github/ISSUE_TEMPLATE/bug_report.yml b/.github/ISSUE_TEMPLATE/bug_report.yml index 14010c0..389c82c 100644 --- a/.github/ISSUE_TEMPLATE/bug_report.yml +++ b/.github/ISSUE_TEMPLATE/bug_report.yml @@ -85,6 +85,7 @@ body: label: Nava version description: Which version of Nava are you using? options: + - Nava 0.7 - Nava 0.6 - Nava 0.5 - Nava 0.4 diff --git a/CHANGELOG.md b/CHANGELOG.md index bc7d49c..ff872cf 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.7] - 2024-10-23 ### Changed - `Python 3.13` added to tests - `engine` parameter added to `play` function @@ -68,7 +69,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.6...dev +[Unreleased]: https://github.com/openscilab/nava/compare/v0.7...dev +[0.7]: https://github.com/openscilab/nava/compare/v0.6...v0.7 [0.6]: https://github.com/openscilab/nava/compare/v0.5...v0.6 [0.5]: https://github.com/openscilab/nava/compare/v0.4...v0.5 [0.4]: https://github.com/openscilab/nava/compare/v0.3...v0.4 diff --git a/README.md b/README.md index b18a749..f62a283 100644 --- a/README.md +++ b/README.md @@ -73,10 +73,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.6` +- Run `pip install nava==0.7` ### Source code -- Download [Version 0.6](https://github.com/openscilab/nava/archive/v0.6.zip) or [Latest Source](https://github.com/openscilab/nava/archive/dev.zip) +- Download [Version 0.7](https://github.com/openscilab/nava/archive/v0.7.zip) or [Latest Source](https://github.com/openscilab/nava/archive/dev.zip) - Run `pip install .` ### Conda diff --git a/SECURITY.md b/SECURITY.md index f8764ea..9353ac3 100644 --- a/SECURITY.md +++ b/SECURITY.md @@ -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 diff --git a/nava/params.py b/nava/params.py index 98bcfde..b161dd7 100644 --- a/nava/params.py +++ b/nava/params.py @@ -2,7 +2,7 @@ """Nava parameters.""" from enum import Enum -NAVA_VERSION = "0.6" +NAVA_VERSION = "0.7" OVERVIEW = """ A Python library for playing sound everywhere natively and securely. diff --git a/others/meta.yaml b/others/meta.yaml index 540b98c..dced416 100644 --- a/others/meta.yaml +++ b/others/meta.yaml @@ -1,5 +1,5 @@ {% set name = "nava" %} -{% set version = "0.6" %} +{% set version = "0.7" %} package: name: {{ name|lower }} diff --git a/others/version_check.py b/others/version_check.py index 4869a36..6c7543d 100644 --- a/others/version_check.py +++ b/others/version_check.py @@ -4,7 +4,7 @@ import sys import codecs Failed = 0 -NAVA_VERSION = "0.6" +NAVA_VERSION = "0.7" SETUP_ITEMS = [ diff --git a/setup.py b/setup.py index 70d8051..b53c485 100644 --- a/setup.py +++ b/setup.py @@ -32,14 +32,14 @@ def read_description(): setup( name='nava', packages=['nava'], - version='0.6', + version='0.7', description='A Python library for playing sound everywhere natively and securely.', long_description=read_description(), long_description_content_type='text/markdown', author='Nava Development Team', author_email='nava@openscilab.com', url='https://github.com/openscilab/nava', - download_url='https://github.com/openscilab/nava/tarball/v0.6', + download_url='https://github.com/openscilab/nava/tarball/v0.7', keywords="sound wav music mp3 player audio", project_urls={ 'Webpage': 'https://openscilab.com/',