Skip to content

Commit 13adf9e

Browse files
authored
Merge pull request #523 from MannLabs/bump_patch_from_1.10.2-dev0
[VERSION] Bump version to 1.10.2
2 parents 9c98ca7 + 5d5bc75 commit 13adf9e

File tree

9 files changed

+12
-12
lines changed

9 files changed

+12
-12
lines changed

.bumpversion.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[tool.bumpversion]
2-
current_version = "1.10.2-dev0"
2+
current_version = "1.10.2"
33
parse = """(?x)
44
(?P<major>0|[1-9]\\d*)\\.
55
(?P<minor>0|[1-9]\\d*)\\.

alphadia/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
#!python
22

3-
__version__ = "1.10.2-dev0"
3+
__version__ = "1.10.2"

gui/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "alphadia",
33
"productName": "alphadia-gui",
4-
"version": "1.10.2-dev0",
4+
"version": "1.10.2",
55
"description": "Graphical user interface for DIA data analysis",
66
"main": "dist/electron.js",
77
"homepage": "./",

gui/src/main/modules/profile.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ const path = require("path")
33
const { app, shell, BrowserWindow} = require("electron")
44
const { dialog } = require('electron')
55

6-
const VERSION = "1.10.2-dev0"
6+
const VERSION = "1.10.2"
77

88
const Profile = class {
99

release/linux/control

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
Package: alphadia
2-
Version: 1.10.2-dev0
2+
Version: 1.10.2
33
Architecture: all
44
Maintainer: Mann Labs <[email protected]>
55
Description: alphadia

release/macos/build_package_macos.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,10 @@ set -e -u
77
# Set up package name and version
88
PACKAGE_NAME="alphadia"
99
APP_NAME="alphadia"
10-
PACKAGE_VERSION="1.10.2-dev0"
10+
PACKAGE_VERSION="1.10.2"
1111
PKG_FOLDER="dist/$APP_NAME.app"
1212

13-
# BUILD_NAME is taken from environment variables, e.g. alphadia-1.10.2-dev0-macos-darwin-arm64 or alphadia-1.10.2-dev0-macos-darwin-x64
13+
# BUILD_NAME is taken from environment variables, e.g. alphadia-1.10.2-macos-darwin-arm64 or alphadia-1.10.2-macos-darwin-x64
1414
rm -rf ${BUILD_NAME}.pkg
1515

1616
# Cleanup the package folder

release/macos/distribution.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?xml version="1.0" encoding="utf-8" standalone="no"?>
22
<installer-script minSpecVersion="1.000000">
3-
<title>AlphaDIA 1.10.2-dev0</title>
3+
<title>AlphaDIA 1.10.2</title>
44
<background mime-type="image/png" file="alphadia.png" scaling="proportional"/>
55
<welcome file="welcome.html" mime-type="text/html" />
66
<conclusion file="conclusion.html" mime-type="text/html" />

release/macos/info.plist

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,9 @@
99
<key>CFBundleIconFile</key>
1010
<string>alphadia.icns</string>
1111
<key>CFBundleIdentifier</key>
12-
<string>alphadia.1.10.2-dev0</string>
12+
<string>alphadia.1.10.2</string>
1313
<key>CFBundleShortVersionString</key>
14-
<string>1.10.2-dev0</string>
14+
<string>1.10.2</string>
1515
<key>CFBundleInfoDictionaryVersion</key>
1616
<string>6.0</string>
1717
<key>CFBundleName</key>

release/windows/alphadia_innoinstaller.iss

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
; so all paths are given relative to the location of this .iss file.
66

77
#define MyAppName "AlphaDIA"
8-
#define MyAppVersion "1.10.2-dev0"
8+
#define MyAppVersion "1.10.2"
99
#define MyAppPublisher "Max Planck Institute of Biochemistry, Mann Labs"
1010
#define MyAppURL "https://github.com/MannLabs/alphadia"
1111
#define MyAppExeName "alphadia-gui.exe"
@@ -29,7 +29,7 @@ PrivilegesRequired=lowest
2929
PrivilegesRequiredOverridesAllowed=dialog
3030
; release workflow expects artifact at root of repository
3131
OutputDir=..\..\
32-
; example for BUILD_NAME: alphadia-1.10.2-dev0-win-x64
32+
; example for BUILD_NAME: alphadia-1.10.2-win-x64
3333
OutputBaseFilename={#GetEnv('BUILD_NAME')}
3434
SetupIconFile=..\logos\alphadia.ico
3535
Compression=lzma

0 commit comments

Comments
 (0)