Skip to content

Commit

Permalink
updating version numbers, licence
Browse files Browse the repository at this point in the history
  • Loading branch information
Bam4d committed Jan 11, 2022
1 parent f85033a commit 3587a9c
Show file tree
Hide file tree
Showing 7 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion .github/ISSUE_TEMPLATE/bug_report.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.2.23]
- Version [e.g. 1.2.24]

**Additional context**
Add any other context about the problem here.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
cmake_minimum_required(VERSION 3.10.0)
project(Griddly VERSION 1.2.23)
project(Griddly VERSION 1.2.24)

set(BINARY ${CMAKE_PROJECT_NAME})

Expand Down
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
MIT License

Copyright (c) 2020 Chris Bamford
Copyright (c) 2022 Chris Bamford

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
6 changes: 3 additions & 3 deletions azure-pipelines.yml
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ jobs:
- job: PyPiDeployLinux
dependsOn: Linux
condition: and(succeeded(), or(eq(variables['Build.SourceBranch'], 'refs/heads/master'), contains(variables['Build.SourceBranch'], 'test_deploy')))
timeoutInMinutes: 30
timeoutInMinutes: 40
pool:
vmImage: "ubuntu-18.04"
strategy:
Expand Down Expand Up @@ -133,7 +133,7 @@ jobs:
- job: Windows
variables:
VULKAN_SDK: C:/VulkanSDK/1.2.148.0
timeoutInMinutes: 30
timeoutInMinutes: 40
pool:
vmImage: "windows-latest"
steps:
Expand Down Expand Up @@ -198,7 +198,7 @@ jobs:
dependsOn: Windows
variables:
VULKAN_SDK: C:/VulkanSDK/1.2.148.0
timeoutInMinutes: 30
timeoutInMinutes: 40
pool:
vmImage: "windows-latest"
strategy:
Expand Down
2 changes: 1 addition & 1 deletion bindings/python.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ namespace griddly {

PYBIND11_MODULE(python_griddly, m) {
m.doc() = "Griddly python bindings";
m.attr("version") = "1.2.23";
m.attr("version") = "1.2.24";

#ifndef NDEBUG
spdlog::set_level(spdlog::level::debug);
Expand Down
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
author = 'Chris Bamford'

# The full version, including alpha/beta/rc tags
release = '1.2.23'
release = '1.2.24'


# -- General configuration ---------------------------------------------------
Expand Down
2 changes: 1 addition & 1 deletion python/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ def griddly_package_data(config='Debug'):

setup(
name='griddly',
version="1.2.23",
version="1.2.24",
author_email="[email protected]",
description="Griddly Python Libraries",
long_description=long_description,
Expand Down

0 comments on commit 3587a9c

Please sign in to comment.