File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 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
Original file line number Diff line number Diff line change @@ -5,6 +5,7 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
55and 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
Original file line number Diff line number Diff 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
Original file line number Diff line number Diff line change 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
Original file line number Diff line number Diff line change 22"""Nava parameters."""
33from enum import Enum
44
5- NAVA_VERSION = "0.7 "
5+ NAVA_VERSION = "0.8 "
66
77OVERVIEW = """
88A Python library for playing sound everywhere natively and securely.
Original file line number Diff line number Diff line change 11{% set name = "nava" %}
2- {% set version = "0.7 " %}
2+ {% set version = "0.8 " %}
33
44package :
55 name : {{ name|lower }}
Original file line number Diff line number Diff line change 44import sys
55import codecs
66Failed = 0
7- NAVA_VERSION = "0.7 "
7+ NAVA_VERSION = "0.8 "
88
99
1010SETUP_ITEMS = [
Original file line number Diff line number Diff line change @@ -32,14 +32,14 @@ def read_description():
3232setup (
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/' ,
You can’t perform that action at this time.
0 commit comments