Skip to content

Commit

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

* update : changelog updated.

* update : version tags in `bug_report.yml` updated.

* fix : version in `SECURITY.md` fixed.
  • Loading branch information
sadrasabouri committed Jun 5, 2024
1 parent 3c26c92 commit b8f1fef
Show file tree
Hide file tree
Showing 8 changed files with 13 additions and 10 deletions.
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.6
- Nava 0.5
- Nava 0.4
- Nava 0.3
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.6] - 2024-06-05
### Added
- `play_cli` function
- `SECURITY.md`
Expand Down Expand Up @@ -57,7 +58,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.5...dev
[Unreleased]: https://github.com/openscilab/nava/compare/v0.6...dev
[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
[0.3]: https://github.com/openscilab/nava/compare/v0.2...v0.3
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.5`
- Run `pip install nava==0.6`

### Source code
- Download [Version 0.5](https://github.com/openscilab/nava/archive/v0.5.zip) or [Latest Source](https://github.com/openscilab/nava/archive/dev.zip)
- Download [Version 0.6](https://github.com/openscilab/nava/archive/v0.6.zip) or [Latest Source](https://github.com/openscilab/nava/archive/dev.zip)
- Run `pip install .`

### Conda
Expand Down
4 changes: 2 additions & 2 deletions SECURITY.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@

| Version | Supported |
| ------------- | ------------------ |
| 0.5 | :white_check_mark: |
| < 0.5 | :x: |
| 0.6 | :white_check_mark: |
| < 0.6 | :x: |

## Reporting a vulnerability

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.5"
NAVA_VERSION = "0.6"

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

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.5"
NAVA_VERSION = "0.6"


SETUP_ITEMS = [
Expand Down
4 changes: 2 additions & 2 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.5',
version='0.6',
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.5',
download_url='https://github.com/openscilab/nava/tarball/v0.6',
keywords="sound wav music mp3 player audio",
project_urls={
'Webpage': 'https://openscilab.com/',
Expand Down

0 comments on commit b8f1fef

Please sign in to comment.