Skip to content

Commit dcfd1e7

Browse files
committed
Update version to 8.2.1
Signed-off-by: Vitalii Koshura <[email protected]>
1 parent af1ca20 commit dcfd1e7

File tree

6 files changed

+9
-9
lines changed

6 files changed

+9
-9
lines changed

android/BOINC/app/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ def buildVersionCode() {
3838
// Derive version name from release tag and add commit SHA1
3939
def buildVersionName() {
4040
def pattern = /(?<tag>.+)-(?<offset>\d+)-g(?<hash>[0-9a-f]+)/
41-
def version = '8.1.0 : DEVELOPMENT'
41+
def version = '8.2.1'
4242
def isDev = true
4343
def offset = -1
4444
def tag = ""

configure.ac

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ dnl not sure exactly what the minimum version is (but 2.13 wont work)
66
AC_PREREQ(2.58)
77

88
dnl Set the BOINC version here. You can also use the set-version script.
9-
AC_INIT(BOINC, 8.2.0)
9+
AC_INIT(BOINC, 8.2.1)
1010
AC_CONFIG_MACRO_DIR([m4])
1111
LIBBOINC_VERSION=`echo ${PACKAGE_VERSION} | sed 's/\./:/g'`
1212
AC_SUBST([LIBBOINC_VERSION])

installer/boinc.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9855,7 +9855,7 @@
98559855
},
98569856
{
98579857
"Property": "ProductVersion",
9858-
"Value": "8.2.0"
9858+
"Value": "8.2.1"
98599859
},
98609860
{
98619861
"Property": "ProgressType0",

snap/gui/boinc.desktop

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[Desktop Entry]
22
Type=Application
3-
Version=8.2.0
3+
Version=8.2.1
44
Exec=boinc.manager
55
Icon=${SNAP}/meta/gui/boinc.png
66
Categories=System;Monitor;GTK;

snap/snapcraft.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: boinc
22
base: core22
3-
version: "8.2.0"
3+
version: "8.2.1"
44
type: app
55
title: BOINC Manager
66
summary: BOINC lets you help cutting-edge science research using your computer.

version.h

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
#define BOINC_MINOR_VERSION 2
1919

2020
// Release part of client version number
21-
#define BOINC_RELEASE 0
21+
#define BOINC_RELEASE 1
2222

2323
// wrapper version number
2424
#define WRAPPER_RELEASE 26018
@@ -33,7 +33,7 @@
3333
#define DOCKERWRAPPER_RELEASE 1
3434

3535
// client version number as string
36-
#define BOINC_VERSION_STRING "8.2.0"
36+
#define BOINC_VERSION_STRING "8.2.1"
3737

3838
// Package is a pre-release (Alpha/Beta) package
3939
//#define BOINC_PRERELEASE 1
@@ -49,13 +49,13 @@
4949
#define PACKAGE_NAME "BOINC"
5050

5151
// full name and version of this package.
52-
#define PACKAGE_STRING "BOINC 8.2.0"
52+
#define PACKAGE_STRING "BOINC 8.2.1"
5353

5454
// short name of this package.
5555
#define PACKAGE_TARNAME "boinc"
5656

5757
// version of this package.
58-
#define PACKAGE_VERSION "8.2.0"
58+
#define PACKAGE_VERSION "8.2.1"
5959

6060
#endif /* #if (defined(_WIN32) || defined(__APPLE__)) */
6161

0 commit comments

Comments
 (0)