From 87d6cc13894361d248921d78229792f5482b7c7a Mon Sep 17 00:00:00 2001 From: Georgi Gerganov Date: Sat, 3 Jul 2021 11:54:10 +0300 Subject: [PATCH] ggwave v0.3.0 --- CHANGELOG.md | 5 ++++- CMakeLists.txt | 4 ++-- README.md | 2 +- bindings/ios | 2 +- bindings/javascript/package.json | 2 +- bindings/python/setup.py | 2 +- 6 files changed, 10 insertions(+), 7 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 805f5e2..1d7c05d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 diff --git a/CMakeLists.txt b/CMakeLists.txt index 392de1e..cf29454 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -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) diff --git a/README.md b/README.md index b288889..5ac9a8a 100644 --- a/README.md +++ b/README.md @@ -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 diff --git a/bindings/ios b/bindings/ios index c3bf348..2cbdd3e 160000 --- a/bindings/ios +++ b/bindings/ios @@ -1 +1 @@ -Subproject commit c3bf3489f51c320954b45d6d295c030aa636dadf +Subproject commit 2cbdd3e225cf24436acd54851e275bb8682bac7f diff --git a/bindings/javascript/package.json b/bindings/javascript/package.json index ee67f7d..8ffea88 100644 --- a/bindings/javascript/package.json +++ b/bindings/javascript/package.json @@ -1,6 +1,6 @@ { "name": "ggwave", - "version": "0.2.0", + "version": "0.3.0", "description": "Tiny data-over-sound library", "main": "ggwave.js", "scripts": { diff --git a/bindings/python/setup.py b/bindings/python/setup.py index e634c24..6e7afb0 100644 --- a/bindings/python/setup.py +++ b/bindings/python/setup.py @@ -30,7 +30,7 @@ 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",