Skip to content

Commit

Permalink
Prepare for 2.10.0
Browse files Browse the repository at this point in the history
  • Loading branch information
sago007 committed May 10, 2024
1 parent ce4474f commit b15a741
Show file tree
Hide file tree
Showing 10 changed files with 13 additions and 13 deletions.
4 changes: 2 additions & 2 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@ cmake_minimum_required(VERSION 3.5.1...3.27.4)
project (blockattack)
set(BIN_DIR ${blockattack_SOURCE_DIR}/Game)

SET(CPACK_PACKAGE_VERSION "2.9.0-SNAPSHOT")
SET(CPACK_PACKAGE_VERSION "2.10.0-SNAPSHOT")
SET(CPACK_PACKAGE_VERSION_MAJOR "2")
SET(CPACK_PACKAGE_VERSION_MINOR "9")
SET(CPACK_PACKAGE_VERSION_MINOR "10")
SET(CPACK_PACKAGE_VERSION_PATCH "0")
SET(CPACK_PACKAGE_DESCRIPTION_SUMMARY "Block Attack - Rise of the Blocks ${CPACK_PACKAGE_VERSION}")
SET(CPACK_PACKAGE_VENDOR "Poul Sander")
Expand Down
6 changes: 3 additions & 3 deletions man/blockattack.man
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
.\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.47.13.
.TH BLOCKATTACK "6" "February 2022" "blockattack 2.9.0-SNAPSHOT" "Games"
.\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.49.3.
.TH BLOCKATTACK "6" "May 2024" "blockattack 2.10.0-SNAPSHOT" "Games"
.SH NAME
blockattack \- a puzzle game inspired by Tetris Attack
.SH SYNOPSIS
.B blockattack
[\fI\,OPTION\/\fR]...
.SH DESCRIPTION
Block Attack \- Rise of the blocks 2.9.0\-SNAPSHOT
Block Attack \- Rise of the blocks 2.10.0\-SNAPSHOT
.PP
Block Attack \- Rise of the Blocks is a puzzle/blockfall game inspired by Tetris Attack for the SNES.
.PP
Expand Down
2 changes: 1 addition & 1 deletion source/code/version.h
Original file line number Diff line number Diff line change
Expand Up @@ -30,5 +30,5 @@ Source information and contacts persons can be found at
#define GAMENAME "blockattack"

#ifndef VERSION_NUMBER
#define VERSION_NUMBER "2.9.0-SNAPSHOT"
#define VERSION_NUMBER "2.10.0-SNAPSHOT"
#endif
2 changes: 1 addition & 1 deletion source/misc/docker/Dockerfile.Fedora29build
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ zip \

COPY . /staging/blockattack-game

ENV BLOCKATTACK_VERSION 2.9.0-SNAPSHOT
ENV BLOCKATTACK_VERSION 2.10.0-SNAPSHOT

RUN cd /staging/blockattack-game && \
./packdata.sh && \
Expand Down
2 changes: 1 addition & 1 deletion source/misc/docker/Dockerfile.Ubuntu18.04build
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ RUN mkdir -p /staging/blockattack-game

COPY . /staging/blockattack-game

ENV BLOCKATTACK_VERSION 2.9.0-SNAPSHOT
ENV BLOCKATTACK_VERSION 2.10.0-SNAPSHOT

RUN cd /staging/blockattack-game && \
./packdata.sh && \
Expand Down
2 changes: 1 addition & 1 deletion source/misc/docker/Dockerfile.Ubuntu18.04build_Standalone
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ RUN /compile_requirements.sh

COPY . /staging/blockattack-game

ENV BLOCKATTACK_VERSION 2.9.0-SNAPSHOT
ENV BLOCKATTACK_VERSION 2.10.0-SNAPSHOT

RUN cd /staging/blockattack-game && \
./packdata.sh && \
Expand Down
2 changes: 1 addition & 1 deletion source/misc/docker/Dockerfile.Ubuntu20.04build
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ RUN mkdir -p /staging/blockattack-game

COPY . /staging/blockattack-game

ENV BLOCKATTACK_VERSION 2.9.0-SNAPSHOT
ENV BLOCKATTACK_VERSION 2.10.0-SNAPSHOT

RUN cd /staging/blockattack-game && \
./packdata.sh && \
Expand Down
2 changes: 1 addition & 1 deletion source/misc/docker/Dockerfile.Ubuntu22.04build
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ RUN mkdir -p /staging/blockattack-game

COPY . /staging/blockattack-game

ENV BLOCKATTACK_VERSION 2.9.0-SNAPSHOT
ENV BLOCKATTACK_VERSION 2.10.0-SNAPSHOT

RUN cd /staging/blockattack-game && \
./packdata.sh && \
Expand Down
2 changes: 1 addition & 1 deletion source/misc/docker/Dockerfile.WindoesBuild
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ RUN mkdir -p /output

COPY . /staging/blockattack-game

ENV BLOCKATTACK_VERSION 2.9.0-SNAPSHOT
ENV BLOCKATTACK_VERSION 2.10.0-SNAPSHOT

RUN cd /staging/blockattack-game && \
./packdata.sh && \
Expand Down
2 changes: 1 addition & 1 deletion windows installer/install_script.nsi
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

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

0 comments on commit b15a741

Please sign in to comment.