From 89d3edd90530f271651b8f5345dae83b28350527 Mon Sep 17 00:00:00 2001 From: Sadra Sabouri <43045767+sadrasabouri@users.noreply.github.com> Date: Tue, 2 Apr 2024 21:07:36 -0700 Subject: [PATCH] Version 0.5 (#42) * edit : `READEME.md` modified. * update : version tags updated. * update : changelog updated. * update : bug report updated. * revert : `## Overview` returned to the `README.md`. --- .github/ISSUE_TEMPLATE/bug_report.yml | 1 + CHANGELOG.md | 4 +++- README.md | 17 ++--------------- nava/params.py | 2 +- others/meta.yaml | 2 +- others/version_check.py | 2 +- setup.py | 6 +++--- 7 files changed, 12 insertions(+), 22 deletions(-) diff --git a/.github/ISSUE_TEMPLATE/bug_report.yml b/.github/ISSUE_TEMPLATE/bug_report.yml index 92a29b4..ad3cc0b 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.5 - Nava 0.4 - Nava 0.3 - Nava 0.2 diff --git a/CHANGELOG.md b/CHANGELOG.md index fddad0e..6ed145f 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.5] - 2024-04-03 ### Changed - `loop` parameter added to `play` function - `NavaThread` class modified @@ -48,7 +49,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.4...dev +[Unreleased]: https://github.com/openscilab/nava/compare/v0.5...dev +[0.5]: https://github.com/openscilab/nava/compare/v0.4...v0.5 [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 diff --git a/README.md b/README.md index f58f04e..f172cdc 100644 --- a/README.md +++ b/README.md @@ -19,19 +19,6 @@ -## Table of contents - * [Overview](https://github.com/openscilab/nava#overview) - * [Installation](https://github.com/openscilab/nava#installation) - * [Usage](https://github.com/openscilab/nava#usage) - * [Engine](https://github.com/openscilab/nava#engine) - * [Issues & Bug Reports](https://github.com/openscilab/nava#issues--bug-reports) - * [Contribution](https://github.com/openscilab/nava/blob/main/.github/CONTRIBUTING.md) - * [Authors](https://github.com/openscilab/nava/blob/main/AUTHORS.md) - * [License](https://github.com/openscilab/nava/blob/main/LICENSE) - * [Show Your Support](https://github.com/openscilab/nava#show-your-support) - * [Changelog](https://github.com/openscilab/nava/blob/main/CHANGELOG.md) - * [Code of Conduct](https://github.com/openscilab/nava/blob/main/.github/CODE_OF_CONDUCT.md) - ## Overview

@@ -96,10 +83,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.4` +- Run `pip install nava==0.5` ### Source code -- Download [Version 0.4](https://github.com/openscilab/nava/archive/v0.4.zip) or [Latest Source](https://github.com/openscilab/nava/archive/dev.zip) +- Download [Version 0.5](https://github.com/openscilab/nava/archive/v0.5.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 324d6a1..5dcbe79 100644 --- a/nava/params.py +++ b/nava/params.py @@ -1,7 +1,7 @@ # -*- coding: utf-8 -*- """Nava parameters.""" -NAVA_VERSION = "0.4" +NAVA_VERSION = "0.5" OVERVIEW = """ A Python library for playing sound everywhere natively and securely. diff --git a/others/meta.yaml b/others/meta.yaml index e91ceac..677b84e 100644 --- a/others/meta.yaml +++ b/others/meta.yaml @@ -1,5 +1,5 @@ {% set name = "nava" %} -{% set version = "0.4" %} +{% set version = "0.5" %} package: name: {{ name|lower }} diff --git a/others/version_check.py b/others/version_check.py index a9380bd..44e9eb1 100644 --- a/others/version_check.py +++ b/others/version_check.py @@ -4,7 +4,7 @@ import sys import codecs Failed = 0 -NAVA_VERSION = "0.4" +NAVA_VERSION = "0.5" SETUP_ITEMS = [ diff --git a/setup.py b/setup.py index a889fc3..b26d4f6 100644 --- a/setup.py +++ b/setup.py @@ -32,14 +32,14 @@ def read_description(): setup( name='nava', packages=['nava'], - version='0.4', + version='0.5', 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.4', + download_url='https://github.com/openscilab/nava/tarball/v0.5', keywords="sound wav music mp3 player audio", project_urls={ 'Webpage': 'https://openscilab.com/', @@ -49,7 +49,7 @@ def read_description(): install_requires=get_requires(), python_requires='>=3.6', classifiers=[ - 'Development Status :: 3 - Alpha', + 'Development Status :: 4 - Beta', 'Intended Audience :: Developers', 'Natural Language :: English', 'License :: OSI Approved :: MIT License',