diff --git a/CHANGELOG.md b/CHANGELOG.md index b3f8003..a5cc63a 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.2] - 2023-07-10 ### Added - Logo - Anaconda package @@ -24,5 +25,6 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0. - `play` function -[Unreleased]: https://github.com/openscilab/nava/compare/v0.1...dev +[Unreleased]: https://github.com/openscilab/nava/compare/v0.2...dev +[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 17dacbf..e381355 100644 --- a/README.md +++ b/README.md @@ -83,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.1` +- Run `pip install nava==0.2` ### Source code -- Download [Version 0.1](https://github.com/openscilab/nava/archive/v0.1.zip) or [Latest Source](https://github.com/openscilab/nava/archive/dev.zip) +- Download [Version 0.2](https://github.com/openscilab/nava/archive/v0.2.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 dd2c4da..2c1396c 100644 --- a/nava/params.py +++ b/nava/params.py @@ -1,7 +1,7 @@ # -*- coding: utf-8 -*- """Nava parameters.""" -NAVA_VERSION = "0.1" +NAVA_VERSION = "0.2" OVERVIEW = """ A Python library for playing sound everywhere natively and securely. diff --git a/others/meta.yaml b/others/meta.yaml index c5ff99d..14bdca8 100644 --- a/others/meta.yaml +++ b/others/meta.yaml @@ -1,5 +1,5 @@ {% set name = "nava" %} -{% set version = "0.1" %} +{% set version = "0.2" %} package: name: {{ name|lower }} diff --git a/others/version_check.py b/others/version_check.py index e9b2ec1..3ac98f7 100644 --- a/others/version_check.py +++ b/others/version_check.py @@ -4,7 +4,7 @@ import sys import codecs Failed = 0 -NAVA_VERSION = "0.1" +NAVA_VERSION = "0.2" SETUP_ITEMS = [ diff --git a/setup.py b/setup.py index de06fce..a823ceb 100644 --- a/setup.py +++ b/setup.py @@ -32,14 +32,14 @@ def read_description(): setup( name='nava', packages=['nava'], - version='0.1', + version='0.2', 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.1', + download_url='https://github.com/openscilab/nava/tarball/v0.2', keywords="sound wav music mp3 player audio", project_urls={ 'Webpage': 'https://openscilab.com/',