Skip to content

Commit

Permalink
Version 0.3 (#33)
Browse files Browse the repository at this point in the history
* update : version tags updated in multiple files.

* log : changes logged.

* fix : `version_check.py` commited [:skul:]
  • Loading branch information
sadrasabouri authored Jan 31, 2024
1 parent a8d8858 commit 3af01b4
Show file tree
Hide file tree
Showing 6 changed files with 12 additions and 10 deletions.
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.3] - 2024-01-31
### Added
- `NavaThread` class
- `stop` function
Expand Down Expand Up @@ -34,6 +35,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
- `play` function


[Unreleased]: https://github.com/openscilab/nava/compare/v0.2...dev
[Unreleased]: https://github.com/openscilab/nava/compare/v0.3...dev
[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
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -92,10 +92,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.2`
- Run `pip install nava==0.3`

### Source code
- Download [Version 0.2](https://github.com/openscilab/nava/archive/v0.2.zip) or [Latest Source](https://github.com/openscilab/nava/archive/dev.zip)
- Download [Version 0.3](https://github.com/openscilab/nava/archive/v0.3.zip) or [Latest Source](https://github.com/openscilab/nava/archive/dev.zip)
- Run `pip install .`

### Conda
Expand Down
2 changes: 1 addition & 1 deletion nava/params.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# -*- coding: utf-8 -*-
"""Nava parameters."""

NAVA_VERSION = "0.2"
NAVA_VERSION = "0.3"

OVERVIEW = """
A Python library for playing sound everywhere natively and securely.
Expand Down
2 changes: 1 addition & 1 deletion others/meta.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{% set name = "nava" %}
{% set version = "0.2" %}
{% set version = "0.3" %}

package:
name: {{ name|lower }}
Expand Down
2 changes: 1 addition & 1 deletion others/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
NAVA_VERSION = "0.2"
NAVA_VERSION = "0.3"


SETUP_ITEMS = [
Expand Down
8 changes: 4 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,14 +32,14 @@ def read_description():
setup(
name='nava',
packages=['nava'],
version='0.2',
description='A Python library for playing sound everywhere natively and securely. ',
version='0.3',
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='[email protected]',
url='https://github.com/openscilab/nava',
download_url='https://github.com/openscilab/nava/tarball/v0.2',
download_url='https://github.com/openscilab/nava/tarball/v0.3',
keywords="sound wav music mp3 player audio",
project_urls={
'Webpage': 'https://openscilab.com/',
Expand All @@ -49,7 +49,7 @@ def read_description():
install_requires=get_requires(),
python_requires='>=3.6',
classifiers=[
'Development Status :: 2 - Pre-Alpha',
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Natural Language :: English',
'License :: OSI Approved :: MIT License',
Expand Down

0 comments on commit 3af01b4

Please sign in to comment.