ggwave v0.3.0

This commit is contained in:
Georgi Gerganov
2021-07-03 11:54:10 +03:00
parent fdf77d5e7b
commit 87d6cc1389
6 changed files with 10 additions and 7 deletions

View File

@@ -2,6 +2,8 @@
## [Unreleased]
## [v0.3.0] - 2021-07-03
- Resampling fixes
- Add `soundMarkerThreshold` parameter ([f4fb02d](https://github.com/ggerganov/ggwave/commit/f4fb02d5d4cfd6c1021d73b55a0e52ac9d3dbdfa))
- Sampling rates are now consistently represented as float instead of int
@@ -16,5 +18,6 @@
- Reed-Solomon based ECC
- Ultrasound support
[unreleased]: https://github.com/ggerganov/ggwave/compare/ggwave-v0.2.0...HEAD
[unreleased]: https://github.com/ggerganov/ggwave/compare/ggwave-v0.3.0...HEAD
[v0.3.0]: https://github.com/ggerganov/ggwave/releases/tag/ggwave-v0.3.0
[v0.2.0]: https://github.com/ggerganov/ggwave/releases/tag/ggwave-v0.2.0

View File

@@ -1,7 +1,7 @@
cmake_minimum_required (VERSION 3.0)
project(ggwave VERSION 0.2.0)
project(ggwave VERSION 0.3.0)
set(GGWAVE_VERSION_PYTHON 0.2.2)
set(GGWAVE_VERSION_PYTHON 0.3.0)
set(CMAKE_EXPORT_COMPILE_COMMANDS "on")
set(CMAKE_RUNTIME_OUTPUT_DIRECTORY ${CMAKE_BINARY_DIR}/bin)

View File

@@ -186,5 +186,5 @@ sudo snap connect waver:audio-record :audio-record
```
[changelog]: ./CHANGELOG.md
[changelog-badge]: https://img.shields.io/badge/changelog-ggwave%20v0.2.0-dummy
[changelog-badge]: https://img.shields.io/badge/changelog-ggwave%20v0.3.0-dummy
[license]: ./LICENSE

View File

@@ -1,6 +1,6 @@
{
"name": "ggwave",
"version": "0.2.0",
"version": "0.3.0",
"description": "Tiny data-over-sound library",
"main": "ggwave.js",
"scripts": {

View File

@@ -30,7 +30,7 @@ setup(
name = "ggwave",
description = "Tiny data-over-sound library.",
long_description = long_description,
version = "0.2.2",
version = "0.3.0",
url = "https://github.com/ggerganov/ggwave",
author = "Georgi Gerganov",
author_email = "ggerganov@gmail.com",