From 35ac5c2ce0b56fa7f71a8a1a15401447a7ad460a Mon Sep 17 00:00:00 2001 From: David Huggins-Daines Date: Fri, 8 Jul 2022 20:41:02 -0400 Subject: [PATCH] build: bump versions for a quick bugfix --- CMakeLists.txt | 4 ++-- build_wheels.sh | 2 +- js/package.json | 2 +- setup.cfg | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index f3d0b65..f04ef25 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,10 +1,10 @@ -cmake_minimum_required(VERSION 3.13) +cmake_minimum_required(VERSION 3.14) # I like pie include(CheckTypeSize) include(CheckSymbolExists) include(CheckLibraryExists) include(TestBigEndian) -project(soundswallower VERSION 0.3.1 +project(soundswallower VERSION 0.3.2 DESCRIPTION "An even smaller speech recognizer") if(CMAKE_PROJECT_NAME STREQUAL PROJECT_NAME) diff --git a/build_wheels.sh b/build_wheels.sh index 6296a75..a5abc00 100644 --- a/build_wheels.sh +++ b/build_wheels.sh @@ -1,7 +1,7 @@ #!/bin/sh set -e -VERSION=0.3.1 +VERSION=0.3.2 U=$(id -u) G=$(id -g) diff --git a/js/package.json b/js/package.json index 6931de6..1192286 100644 --- a/js/package.json +++ b/js/package.json @@ -1,6 +1,6 @@ { "name": "soundswallower", - "version": "0.3.1", + "version": "0.3.2", "description": "An even smaller speech recognizer", "main": "soundswallower.js", "scripts": { diff --git a/setup.cfg b/setup.cfg index d0031f1..367ba33 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,6 +1,6 @@ [metadata] name = soundswallower -version = 0.3.1 +version = 0.3.2 description = An even smaller speech recognizer long_description = file: README.md long_description_content_type = text/markdown