Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Version 0.5 #42

Merged
merged 5 commits into from
Apr 3, 2024
Merged
Show file tree
Hide file tree
Changes from 4 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .github/ISSUE_TEMPLATE/bug_report.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
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.5] - 2024-04-03
### Changed
- `loop` parameter added to `play` function
- `NavaThread` class modified
Expand Down Expand Up @@ -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
Expand Down
18 changes: 2 additions & 16 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,20 +19,6 @@
</a>
</div>

## 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
sepandhaghighi marked this conversation as resolved.
Show resolved Hide resolved

<p align="justify">
Nava is a Python library that allows users to play sound in Python without any dependencies or platform restrictions. It is a cross-platform solution that runs on any operating system, including Windows, macOS, and Linux. Its lightweight and easy-to-use design makes Nava an ideal choice for developers looking to add sound functionality to their Python programs.
Expand Down Expand Up @@ -96,10 +82,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
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.4"
NAVA_VERSION = "0.5"

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.4" %}
{% set version = "0.5" %}

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.4"
NAVA_VERSION = "0.5"


SETUP_ITEMS = [
Expand Down
6 changes: 3 additions & 3 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.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/',
Expand All @@ -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',
Expand Down
Loading