Skip to content

Commit 055e744

Browse files
committed
Set version number to 2.8.0
1 parent 09de95e commit 055e744

File tree

9 files changed

+11
-11
lines changed

9 files changed

+11
-11
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.18.4)
22
project (blockattack)
33
set(BIN_DIR ${blockattack_SOURCE_DIR}/Game)
44

5-
SET(CPACK_PACKAGE_VERSION "2.8.0-SNAPSHOT")
5+
SET(CPACK_PACKAGE_VERSION "2.8.0")
66
SET(CPACK_PACKAGE_VERSION_MAJOR "2")
77
SET(CPACK_PACKAGE_VERSION_MINOR "8")
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 @@
11
.\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.47.13.
2-
.TH BLOCKATTACK "6" "October 2021" "blockattack 2.8.0-SNAPSHOT" "Games"
2+
.TH BLOCKATTACK "6" "February 2022" "blockattack 2.8.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.8.0\-SNAPSHOT
9+
Block Attack \- Rise of the blocks 2.8.0
1010
.PP
1111
Block Attack \- Rise of the Blocks is a puzzle/blockfall game inspired by Tetris Attack for the SNES.
1212
.PP
@@ -76,7 +76,7 @@ Disables translations
7676
.SH "REPORTING BUGS"
7777
Report bugs to the issue tracker here: <https://github.com/blockattack/blockattack\-game/issues>
7878
.SH COPYRIGHT
79-
Copyright \(co 2005\-2016 Poul Sander
79+
Copyright \(co 2005\-2022 Poul Sander
8080
License GPLv2+: GNU GPL version 2 <http://www.gnu.org/licenses/old\-licenses/gpl\-2.0.html> or later <http://gnu.org/licenses/gpl.html>
8181
.br
8282
This is free software: you are free to change and redistribute it.

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.8.0-SNAPSHOT"
33+
#define VERSION_NUMBER "2.8.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.8.0-SNAPSHOT
18+
ENV BLOCKATTACK_VERSION 2.8.0
1919

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

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

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

1616
COPY . /staging/blockattack-game
1717

18-
ENV BLOCKATTACK_VERSION 2.8.0-SNAPSHOT
18+
ENV BLOCKATTACK_VERSION 2.8.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.8.0-SNAPSHOT
9+
ENV BLOCKATTACK_VERSION 2.8.0
1010

1111
RUN cd /staging/blockattack-game && \
1212
./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.8.0-SNAPSHOT
14+
ENV BLOCKATTACK_VERSION 2.8.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.8.0-SNAPSHOT
11+
ENV BLOCKATTACK_VERSION 2.8.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.8.0-SNAPSHOT"
5+
!define PRODUCT_VERSION "2.8.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)