From 1c978f36adf4c9fb1da30b7332305df2f22aac14 Mon Sep 17 00:00:00 2001 From: Bam4d Date: Wed, 4 Jan 2023 16:03:15 +0000 Subject: [PATCH] bumping version numbers --- .github/ISSUE_TEMPLATE/bug_report.md | 2 +- CMakeLists.txt | 2 +- bindings/python.cpp | 2 +- docs/conf.py | 2 +- js/griddlyjs-app/package-lock.json | 2 +- js/griddlyjs-app/package.json | 2 +- python/setup.py | 2 +- 7 files changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/ISSUE_TEMPLATE/bug_report.md b/.github/ISSUE_TEMPLATE/bug_report.md index f6e3f4f10..8202016af 100644 --- a/.github/ISSUE_TEMPLATE/bug_report.md +++ b/.github/ISSUE_TEMPLATE/bug_report.md @@ -24,7 +24,7 @@ If applicable, add screenshots to help explain your problem. **Desktop (please complete the following information):** - OS: [e.g. mac/linux/windows] - - Version [e.g. 1.6.5] + - Version [e.g. 1.6.6] **Additional context** Add any other context about the problem here. diff --git a/CMakeLists.txt b/CMakeLists.txt index 99413ac06..3b6308f60 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,6 +1,6 @@ cmake_minimum_required(VERSION 3.18.0) set(CMAKE_OSX_DEPLOYMENT_TARGET "10.9" CACHE STRING "Minimum OS X deployment version") -project(Griddly VERSION 1.6.5) +project(Griddly VERSION 1.6.6) string(TOLOWER ${PROJECT_NAME} PROJECT_NAME_LOWERCASE) diff --git a/bindings/python.cpp b/bindings/python.cpp index 76617d025..d12195c94 100644 --- a/bindings/python.cpp +++ b/bindings/python.cpp @@ -12,7 +12,7 @@ namespace griddly { PYBIND11_MODULE(python_griddly, m) { m.doc() = "Griddly python bindings"; - m.attr("version") = "1.6.5"; + m.attr("version") = "1.6.6"; #ifndef NDEBUG spdlog::set_level(spdlog::level::debug); diff --git a/docs/conf.py b/docs/conf.py index 2a1825be9..200086089 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -22,7 +22,7 @@ author = 'Chris Bamford' # The full version, including alpha/beta/rc tags -release = '1.6.5' +release = '1.6.6' # -- General configuration --------------------------------------------------- diff --git a/js/griddlyjs-app/package-lock.json b/js/griddlyjs-app/package-lock.json index 8efe9507d..4fe8b48aa 100644 --- a/js/griddlyjs-app/package-lock.json +++ b/js/griddlyjs-app/package-lock.json @@ -1,6 +1,6 @@ { "name": "griddlyjs-app", - "version": "1.6.5", + "version": "1.6.6", "lockfileVersion": 2, "requires": true, "packages": { diff --git a/js/griddlyjs-app/package.json b/js/griddlyjs-app/package.json index 82d0eb323..cd25d4dbb 100644 --- a/js/griddlyjs-app/package.json +++ b/js/griddlyjs-app/package.json @@ -1,6 +1,6 @@ { "name": "griddlyjs-app", - "version": "1.6.5", + "version": "1.6.6", "private": true, "dependencies": { "@fortawesome/fontawesome-svg-core": "^6.1.1", diff --git a/python/setup.py b/python/setup.py index cbc8e60b7..a7c0e0b6e 100644 --- a/python/setup.py +++ b/python/setup.py @@ -71,7 +71,7 @@ def griddly_package_data(config='Debug'): setup( name='griddly', - version="1.6.5", + version="1.6.6", author_email="chrisbam4d@gmail.com", description="Griddly Python Libraries", long_description=long_description,