From 2e8645199d494e425de589cbf965f48a6a92e786 Mon Sep 17 00:00:00 2001 From: Bam4d Date: Mon, 25 Apr 2022 15:42:24 +0100 Subject: [PATCH] beginnings of griddly js bits, lots of bug fixes for grafter --- .github/ISSUE_TEMPLATE/bug_report.md | 2 +- CMakeLists.txt | 2 +- bindings/python.cpp | 2 +- docs/conf.py | 2 +- js/jiddly-app/package.json | 2 +- python/setup.py | 2 +- 6 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/ISSUE_TEMPLATE/bug_report.md b/.github/ISSUE_TEMPLATE/bug_report.md index f7b8e125c..705130aa0 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.3.2] + - Version [e.g. 1.3.3] **Additional context** Add any other context about the problem here. diff --git a/CMakeLists.txt b/CMakeLists.txt index cb981c06a..fc50b945f 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,6 +1,6 @@ cmake_minimum_required(VERSION 3.10.0) set(CMAKE_OSX_DEPLOYMENT_TARGET "10.9" CACHE STRING "Minimum OS X deployment version") -project(Griddly VERSION 1.3.2) +project(Griddly VERSION 1.3.3) set(BINARY ${CMAKE_PROJECT_NAME}) diff --git a/bindings/python.cpp b/bindings/python.cpp index df8666ad1..29e1074ed 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.3.2"; + m.attr("version") = "1.3.3"; #ifndef NDEBUG spdlog::set_level(spdlog::level::debug); diff --git a/docs/conf.py b/docs/conf.py index 3e780a69f..05db46109 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.3.2' +release = '1.3.3' # -- General configuration --------------------------------------------------- diff --git a/js/jiddly-app/package.json b/js/jiddly-app/package.json index 691bacfd4..af90a9256 100644 --- a/js/jiddly-app/package.json +++ b/js/jiddly-app/package.json @@ -1,6 +1,6 @@ { "name": "jiddly-app", - "version": "1.3.2", + "version": "1.3.3", "private": true, "dependencies": { "@fortawesome/fontawesome-svg-core": "^6.1.1", diff --git a/python/setup.py b/python/setup.py index ba2bdfdc7..83eea1cd8 100644 --- a/python/setup.py +++ b/python/setup.py @@ -71,7 +71,7 @@ def griddly_package_data(config='Debug'): setup( name='griddly', - version="1.3.2", + version="1.3.3", author_email="chrisbam4d@gmail.com", description="Griddly Python Libraries", long_description=long_description,