Skip to content

Commit 030a39c

Browse files
committed
Prepare 2.3.0
1 parent 7b16a3a commit 030a39c

11 files changed

+21
-11
lines changed

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ project (blockattack)
33
set(CMAKE_MODULE_PATH ${CMAKE_MODULE_PATH} "${blockattack_SOURCE_DIR}/source/misc/cmake")
44
set(BIN_DIR ${blockattack_SOURCE_DIR}/Game)
55

6-
SET(CPACK_PACKAGE_VERSION "2.3.0-SNAPSHOT")
6+
SET(CPACK_PACKAGE_VERSION "2.3.0")
77
SET(CPACK_PACKAGE_VERSION_MAJOR "2")
88
SET(CPACK_PACKAGE_VERSION_MINOR "3")
99
SET(CPACK_PACKAGE_VERSION_PATCH "0")

ReleaseNotes-2.3.0.txt

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
This is Block Attack - Rise of the Blocks - version 2.3.0
2+
3+
Changes since 2.2.0:
4+
Several keyboard keys are now translatable
5+
Window size is now restored on next startup
6+
The back-button on the gamepad now goes back in menus
7+
Gamepad L2 and R2 can now be used to push lines
8+
Game Over, Winner and Draw are now translatable
9+
10+
Feedback can be given on https://blockattack.net or https://github.com/blockattack/blockattack-game

man/blockattack.man

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
.\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.47.6.
2-
.TH BLOCKATTACK "6" "May 2018" "blockattack 2.3.0-SNAPSHOT" "Games"
2+
.TH BLOCKATTACK "6" "July 2018" "blockattack 2.3.0" "Games"
33
.SH NAME
44
blockattack \- a puzzle game inspired by Tetris Attack
55
.SH SYNOPSIS
66
.B blockattack
77
[\fI\,OPTION\/\fR]...
88
.SH DESCRIPTION
9-
Block Attack \- Rise of the blocks 2.3.0\-SNAPSHOT
9+
Block Attack \- Rise of the blocks 2.3.0
1010
.PP
1111
Block Attack \- Rise of the Blocks is a puzzle/blockfall game inspired by Tetris Attack for the SNES.
1212
.PP

source/code/version.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,5 +22,5 @@ Source information and contacts persons can be found at
2222
*/
2323

2424
#ifndef VERSION_NUMBER
25-
#define VERSION_NUMBER "2.3.0-SNAPSHOT"
25+
#define VERSION_NUMBER "2.3.0"
2626
#endif

source/misc/docker/Dockerfile.Fedora25build

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ zip \
1515

1616
COPY . /staging/blockattack-game
1717

18-
ENV BLOCKATTACK_VERSION 2.3.0-SNAPSHOT
18+
ENV BLOCKATTACK_VERSION 2.3.0
1919

2020
RUN cd /staging/blockattack-game && \
2121
./packdata.sh && \

source/misc/docker/Dockerfile.Ubuntu12.04build_Standalone

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ RUN /compile_requirements.sh
1616

1717
COPY . /staging/blockattack-game
1818

19-
ENV BLOCKATTACK_VERSION 2.3.0-SNAPSHOT
19+
ENV BLOCKATTACK_VERSION 2.3.0
2020

2121
RUN cd /staging/blockattack-game && \
2222
./packdata.sh && \

source/misc/docker/Dockerfile.Ubuntu14.04build

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ RUN mkdir -p /staging/blockattack-game
66

77
COPY . /staging/blockattack-game
88

9-
ENV BLOCKATTACK_VERSION 2.3.0-SNAPSHOT
9+
ENV BLOCKATTACK_VERSION 2.3.0
1010

1111
RUN cd /staging/blockattack-game && \
1212
./packdata.sh && \

source/misc/docker/Dockerfile.Ubuntu14.04build_Standalone

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ RUN /compile_requirements.sh
77

88
COPY . /staging/blockattack-game
99

10-
ENV BLOCKATTACK_VERSION 2.3.0-SNAPSHOT
10+
ENV BLOCKATTACK_VERSION 2.3.0
1111

1212
RUN cd /staging/blockattack-game && \
1313
./packdata.sh && \

source/misc/docker/Dockerfile.Ubuntu14.04build_Standalone32

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ RUN /compile_requirements.sh
77

88
COPY . /staging/blockattack-game
99

10-
ENV BLOCKATTACK_VERSION 2.3.0-SNAPSHOT
10+
ENV BLOCKATTACK_VERSION 2.3.0
1111

1212
RUN cd /staging/blockattack-game && \
1313
./packdata.sh && \

source/misc/docker/Dockerfile.WindoesBuild

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ RUN mkdir -p /output
88

99
COPY . /staging/blockattack-game
1010

11-
ENV BLOCKATTACK_VERSION 2.3.0-SNAPSHOT
11+
ENV BLOCKATTACK_VERSION 2.3.0
1212

1313
RUN cd /staging/blockattack-game && \
1414
./packdata.sh && \

0 commit comments

Comments
 (0)