Skip to content

Commit 1e55d5a

Browse files
authored
Version 0.8 (#71)
* update : version-tags updated. * update : changelog updated. * update : issue template updated. * update : changelog updated.
1 parent 08a8908 commit 1e55d5a

8 files changed

Lines changed: 13 additions & 10 deletions

File tree

.github/ISSUE_TEMPLATE/bug_report.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -86,6 +86,7 @@ body:
8686
label: Nava version
8787
description: Which version of Nava are you using?
8888
options:
89+
- Nava 0.8
8990
- Nava 0.7
9091
- Nava 0.6
9192
- Nava 0.5

CHANGELOG.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
55
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).
66

77
## [Unreleased]
8+
## [0.8] - 2025-12-17
89
### Added
910
- `WinMM` engine
1011
### Changed
@@ -79,7 +80,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
7980
- `play` function
8081

8182

82-
[Unreleased]: https://github.com/openscilab/nava/compare/v0.7...dev
83+
[Unreleased]: https://github.com/openscilab/nava/compare/v0.8...dev
84+
[0.8]: https://github.com/openscilab/nava/compare/v0.7...v0.8
8385
[0.7]: https://github.com/openscilab/nava/compare/v0.6...v0.7
8486
[0.6]: https://github.com/openscilab/nava/compare/v0.5...v0.6
8587
[0.5]: https://github.com/openscilab/nava/compare/v0.4...v0.5

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -72,10 +72,10 @@ Nava is a Python library that allows users to play sound in Python without any d
7272
### PyPI
7373

7474
- Check [Python Packaging User Guide](https://packaging.python.org/installing/)
75-
- Run `pip install nava==0.7`
75+
- Run `pip install nava==0.8`
7676

7777
### Source code
78-
- Download [Version 0.7](https://github.com/openscilab/nava/archive/v0.7.zip) or [Latest Source](https://github.com/openscilab/nava/archive/dev.zip)
78+
- Download [Version 0.8](https://github.com/openscilab/nava/archive/v0.8.zip) or [Latest Source](https://github.com/openscilab/nava/archive/dev.zip)
7979
- Run `pip install .`
8080

8181
### Conda

SECURITY.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@
44

55
| Version | Supported |
66
| ------------- | ------------------ |
7-
| 0.7 | :white_check_mark: |
8-
| < 0.7 | :x: |
7+
| 0.8 | :white_check_mark: |
8+
| < 0.8 | :x: |
99

1010
## Reporting a vulnerability
1111

nava/params.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"""Nava parameters."""
33
from enum import Enum
44

5-
NAVA_VERSION = "0.7"
5+
NAVA_VERSION = "0.8"
66

77
OVERVIEW = """
88
A Python library for playing sound everywhere natively and securely.

others/meta.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{% set name = "nava" %}
2-
{% set version = "0.7" %}
2+
{% set version = "0.8" %}
33

44
package:
55
name: {{ name|lower }}

others/version_check.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
import sys
55
import codecs
66
Failed = 0
7-
NAVA_VERSION = "0.7"
7+
NAVA_VERSION = "0.8"
88

99

1010
SETUP_ITEMS = [

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,14 +32,14 @@ def read_description():
3232
setup(
3333
name='nava',
3434
packages=['nava'],
35-
version='0.7',
35+
version='0.8',
3636
description='A Python library for playing sound everywhere natively and securely.',
3737
long_description=read_description(),
3838
long_description_content_type='text/markdown',
3939
author='Nava Development Team',
4040
author_email='nava@openscilab.com',
4141
url='https://github.com/openscilab/nava',
42-
download_url='https://github.com/openscilab/nava/tarball/v0.7',
42+
download_url='https://github.com/openscilab/nava/tarball/v0.8',
4343
keywords="sound wav music mp3 player audio",
4444
project_urls={
4545
'Webpage': 'https://openscilab.com/',

0 commit comments

Comments
 (0)