Skip to content

Commit 08317c5

Browse files
committed
Prepare for 2.9.0 release
1 parent e157f0f commit 08317c5

File tree

10 files changed

+12
-12
lines changed

10 files changed

+12
-12
lines changed

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ cmake_minimum_required(VERSION 3.5.1...3.27.4)
22
project (blockattack)
33
set(BIN_DIR ${blockattack_SOURCE_DIR}/Game)
44

5-
SET(CPACK_PACKAGE_VERSION "2.9.0-SNAPSHOT")
5+
SET(CPACK_PACKAGE_VERSION "2.9.0")
66
SET(CPACK_PACKAGE_VERSION_MAJOR "2")
77
SET(CPACK_PACKAGE_VERSION_MINOR "9")
88
SET(CPACK_PACKAGE_VERSION_PATCH "0")

man/blockattack.man

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
1-
.\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.47.13.
2-
.TH BLOCKATTACK "6" "February 2022" "blockattack 2.9.0-SNAPSHOT" "Games"
1+
.\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.49.3.
2+
.TH BLOCKATTACK "6" "May 2024" "blockattack 2.9.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.9.0\-SNAPSHOT
9+
Block Attack \- Rise of the blocks 2.9.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
@@ -30,5 +30,5 @@ Source information and contacts persons can be found at
3030
#define GAMENAME "blockattack"
3131

3232
#ifndef VERSION_NUMBER
33-
#define VERSION_NUMBER "2.9.0-SNAPSHOT"
33+
#define VERSION_NUMBER "2.9.0"
3434
#endif

source/misc/docker/Dockerfile.Fedora29build

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.9.0-SNAPSHOT
18+
ENV BLOCKATTACK_VERSION 2.9.0
1919

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

source/misc/docker/Dockerfile.Ubuntu18.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.9.0-SNAPSHOT
9+
ENV BLOCKATTACK_VERSION 2.9.0
1010

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

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

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

1111
COPY . /staging/blockattack-game
1212

13-
ENV BLOCKATTACK_VERSION 2.9.0-SNAPSHOT
13+
ENV BLOCKATTACK_VERSION 2.9.0
1414

1515
RUN cd /staging/blockattack-game && \
1616
./packdata.sh && \

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

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

1212
COPY . /staging/blockattack-game
1313

14-
ENV BLOCKATTACK_VERSION 2.9.0-SNAPSHOT
14+
ENV BLOCKATTACK_VERSION 2.9.0
1515

1616
RUN cd /staging/blockattack-game && \
1717
./packdata.sh && \

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

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

1212
COPY . /staging/blockattack-game
1313

14-
ENV BLOCKATTACK_VERSION 2.9.0-SNAPSHOT
14+
ENV BLOCKATTACK_VERSION 2.9.0
1515

1616
RUN cd /staging/blockattack-game && \
1717
./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.9.0-SNAPSHOT
11+
ENV BLOCKATTACK_VERSION 2.9.0
1212

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

windows installer/install_script.nsi

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

33
; HM NIS Edit Wizard helper defines
44
!define PRODUCT_NAME "Block Attack - Rise Of the Blocks"
5-
!define PRODUCT_VERSION "2.9.0-SNAPSHOT"
5+
!define PRODUCT_VERSION "2.9.0"
66
!define PRODUCT_PUBLISHER "Poul Sander"
77
!define PRODUCT_WEB_SITE "http://www.blockattack.net"
88
!define PRODUCT_DIR_REGKEY "Software\Microsoft\Windows\CurrentVersion\App Paths\blockattack.exe"

0 commit comments

Comments
 (0)