diff --git a/.github/ISSUE_TEMPLATE/bug_report.md b/.github/ISSUE_TEMPLATE/bug_report.md index 6180919f5..b69528c8a 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.1.0] + - Version [e.g. 1.1.1] **Additional context** Add any other context about the problem here. diff --git a/CMakeLists.txt b/CMakeLists.txt index fce710fb8..5f17630b2 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,5 +1,5 @@ cmake_minimum_required(VERSION 3.10.0) -project(Griddly VERSION 1.1.0) +project(Griddly VERSION 1.1.1) set(BINARY ${CMAKE_PROJECT_NAME}) diff --git a/bindings/python.cpp b/bindings/python.cpp index 5f49ab57c..07decf4a0 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.1.0"; + m.attr("version") = "1.1.1"; #ifndef NDEBUG spdlog::set_level(spdlog::level::debug); diff --git a/docs/conf.py b/docs/conf.py index 9def514bc..e49cd7e3f 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.1.0' +release = '1.1.1' # -- General configuration --------------------------------------------------- diff --git a/python/examples/experiments/rts-self-play b/python/examples/experiments/rts-self-play index 6cca22aee..a8523959f 160000 --- a/python/examples/experiments/rts-self-play +++ b/python/examples/experiments/rts-self-play @@ -1 +1 @@ -Subproject commit 6cca22aeeffcb590913fd380d86b131c7d6697c9 +Subproject commit a8523959f6ff2de5b158428a5246b9c6385b3170 diff --git a/python/setup.py b/python/setup.py index 6873b62b6..175bf6d39 100644 --- a/python/setup.py +++ b/python/setup.py @@ -71,7 +71,7 @@ def griddly_package_data(config='Debug'): setup( name='griddly', - version="1.1.0", + version="1.1.1", author_email="chrisbam4d@gmail.com", description="Griddly Python Libraries", long_description=long_description,