Skip to content

Commit 2788bca

Browse files
committed
0.23.0
1 parent d6e7add commit 2788bca

File tree

5 files changed

+7
-7
lines changed

5 files changed

+7
-7
lines changed

docs/Doxyfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ PROJECT_NAME = "ChaiLove API"
2323
# This could be handy for archiving the generated documentation or
2424
# if some version control system is used.
2525

26-
PROJECT_NUMBER = "0.22.2"
26+
PROJECT_NUMBER = "0.23.0"
2727

2828
# The OUTPUT_DIRECTORY tag is used to specify the (relative or absolute)
2929
# base path where the generated documentation will be put.

src/ChaiLove.h

+3-3
Original file line numberDiff line numberDiff line change
@@ -47,9 +47,9 @@
4747
#define SRC_CHAILOVE_H_
4848

4949
#define CHAILOVE_VERSION_MAJOR 0
50-
#define CHAILOVE_VERSION_MINOR 22
51-
#define CHAILOVE_VERSION_PATCH 2
52-
#define CHAILOVE_VERSION_STRING "0.22.2"
50+
#define CHAILOVE_VERSION_MINOR 23
51+
#define CHAILOVE_VERSION_PATCH 0
52+
#define CHAILOVE_VERSION_STRING "0.23.0"
5353

5454
#include "SDL.h"
5555
#include "libretro.h"

src/love/config.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ namespace love {
1919
*
2020
* @code
2121
* def conf(t) {
22-
* t.version = "0.22.2" // Version of ChaiLove
22+
* t.version = "0.23.0" // Version of ChaiLove
2323
* t.identity = "mygame" // Machine name of your game
2424
* t.window.title = "My Game" // Human-readable name
2525
* t.window.width = 1024 // Game width

src/love/script.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ class script {
5252
* t.console = false
5353
*
5454
* // The ChaiLove version this game was made for.
55-
* t.version = "0.22.2"
55+
* t.version = "0.23.0"
5656
*
5757
* // The width and height of the game.
5858
* t.window.width = 1024

test/main.chai

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ def conf(t) {
1515
t.window.width = 460
1616
t.window.height = 320
1717
t.console = true
18-
t.version = "0.22.2"
18+
t.version = "0.23.0"
1919
}
2020

2121
def load() {

0 commit comments

Comments
 (0)