Skip to content

Commit 234c5e4

Browse files
committed
Version bump to 1.3.1
* Bump project version to 1.3.1 to up-coming release
1 parent ba32138 commit 234c5e4

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

demo/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
cmake_minimum_required(VERSION 3.10)
22

33
project(dinorunner-demos
4-
VERSION 1.3.0
4+
VERSION 1.3.1
55
DESCRIPTION "Running examples of the Dinorunner libray"
66
LANGUAGES C CXX)
77

dinorunner/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ cmake_minimum_required(VERSION 3.10)
33
cmake_policy(PUSH)
44

55
project(dinorunner
6-
VERSION 1.3.0
6+
VERSION 1.3.1
77
DESCRIPTION "Chrome's Dino game in C"
88
LANGUAGES C)
99

dinorunner/src/version.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010

1111
static const unsigned char kVersionMajor = 1;
1212
static const unsigned char kVersionMinor = 3;
13-
static const unsigned char kVersionPatch = 0;
13+
static const unsigned char kVersionPatch = 1;
1414

1515
unsigned char dinorunner_getversion(struct version_s* version) {
1616
version->major = kVersionMajor;

0 commit comments

Comments
 (0)