Skip to content

Commit 03154a5

Browse files
Bump version: 0.4.1 → 0.4.2
1 parent 3f384ac commit 03154a5

13 files changed

+15
-15
lines changed

.bumpversion.cfg

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[bumpversion]
2-
current_version = 0.4.1
2+
current_version = 0.4.2
33
commit = True
44
tag = False
55
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)(\-(?P<release>[a-z]+)(?P<build>\d+))?

alphapept/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
__version__ = "0.4.1"
1+
__version__ = "0.4.2"
22

33
__requirements__ = {
44
"": "requirements/requirements.txt",

alphapept/__version__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333
AUTHOR_EMAIL = "[email protected]"
3434
COPYRIGHT = "Mann Labs"
3535
BRANCH = "master"
36-
VERSION_NO = "0.4.1"
36+
VERSION_NO = "0.4.2"
3737
MIN_PYTHON = "3.6"
3838
MAX_PYTHON = "4"
3939
AUDIENCE = "Developers"

installer/one_click_windows/alphapept_innoinstaller.iss

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
; SEE THE DOCUMENTATION FOR DETAILS ON CREATING INNO SETUP SCRIPT FILES!
33

44
#define MyAppName "AlphaPept"
5-
#define MyAppVersion "0.4.1"
5+
#define MyAppVersion "0.4.2"
66
#define MyAppPublisher "MannLabs"
77
#define MyAppURL "https://github.com/MannLabs/alphapept"
88
#define MyAppExeName "alphapept.exe"

installer/one_click_windows/create_installer_windows.bat

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ call DEL /F/Q/S dist > NUL
1212
call RMDIR /Q/S build
1313
call RMDIR /Q/S dist
1414
call python setup.py sdist bdist_wheel
15-
call pip install dist/alphapept-0.4.1-py3-none-any.whl[stable,gui-stable]
15+
call pip install dist/alphapept-0.4.2-py3-none-any.whl[stable,gui-stable]
1616
call pip install pyinstaller==4.7
1717
call cd installer/one_click_windows
1818
call pyinstaller ../alphapept.spec -y

release/one_click_linux_gui/control

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
Package: alphapept
2-
Version: 0.4.1
2+
Version: 0.4.2
33
Architecture: all
44
Maintainer: Mann Labs <[email protected]>
55
Description: AlphaPept

release/one_click_linux_gui/create_installer_linux.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ python setup.py sdist bdist_wheel
1717
# Setting up the local package
1818
cd release/one_click_linux_gui
1919
# Make sure you include the required extra packages and always use the stable or very-stable options!
20-
pip install "../../dist/alphapept-0.4.1-py3-none-any.whl[stable,gui-stable]"
20+
pip install "../../dist/alphapept-0.4.2-py3-none-any.whl[stable,gui-stable]"
2121

2222
# Creating the stand-alone pyinstaller folder
2323
pip install pyinstaller==4.2

release/one_click_macos_gui/Info.plist

+2-2
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,9 @@
99
<key>CFBundleIconFile</key>
1010
<string>alpha_logo.icns</string>
1111
<key>CFBundleIdentifier</key>
12-
<string>alphapept.0.4.1</string>
12+
<string>alphapept.0.4.2</string>
1313
<key>CFBundleShortVersionString</key>
14-
<string>0.4.1</string>
14+
<string>0.4.2</string>
1515
<key>CFBundleInfoDictionaryVersion</key>
1616
<string>6.0</string>
1717
<key>CFBundleName</key>

release/one_click_macos_gui/create_installer_macos.sh

+2-2
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ python setup.py sdist bdist_wheel
2020

2121
# Setting up the local package
2222
cd release/one_click_macos_gui
23-
pip install "../../dist/alphapept-0.4.1-py3-none-any.whl[stable,gui-stable]"
23+
pip install "../../dist/alphapept-0.4.2-py3-none-any.whl[stable,gui-stable]"
2424

2525
# Creating the stand-alone pyinstaller folder
2626
pip install pyinstaller==4.2
@@ -40,5 +40,5 @@ cp ../../LICENSE.txt Resources/LICENSE.txt
4040
cp ../logos/alpha_logo.png Resources/alpha_logo.png
4141
chmod 777 scripts/*
4242

43-
pkgbuild --root dist/alphapept --identifier de.mpg.biochem.alphapept.app --version 0.4.1 --install-location /Applications/alphapept.app --scripts scripts alphapept.pkg
43+
pkgbuild --root dist/alphapept --identifier de.mpg.biochem.alphapept.app --version 0.4.2 --install-location /Applications/alphapept.app --scripts scripts alphapept.pkg
4444
productbuild --distribution distribution.xml --resources Resources --package-path alphapept.pkg dist/alphapept_gui_installer_macos.pkg

release/one_click_macos_gui/distribution.xml

+1-1
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>alphapept 0.4.1</title>
3+
<title>alphapept 0.4.2</title>
44
<background mime-type="image/png" file="alpha_logo.png" scaling="proportional"/>
55
<welcome file="welcome.html" mime-type="text/html" />
66
<conclusion file="conclusion.html" mime-type="text/html" />

release/one_click_windows_gui/alphapept_innoinstaller.iss

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
; SEE THE DOCUMENTATION FOR DETAILS ON CREATING INNO SETUP SCRIPT FILES!
33

44
#define MyAppName "AlphaPept"
5-
#define MyAppVersion "0.4.1"
5+
#define MyAppVersion "0.4.2"
66
#define MyAppPublisher "MannLabs"
77
#define MyAppURL "https://github.com/MannLabs/alphapept"
88
#define MyAppExeName "alphapept.exe"

release/one_click_windows_gui/create_installer_windows.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ python setup.py sdist bdist_wheel
1717
# Setting up the local package
1818
cd release/one_click_windows_gui
1919
# Make sure you include the required extra packages and always use the stable or very-stable options!
20-
pip install "../../dist/alphapept-0.4.1-py3-none-any.whl[stable,gui-stable]"
20+
pip install "../../dist/alphapept-0.4.2-py3-none-any.whl[stable,gui-stable]"
2121

2222
# Creating the stand-alone pyinstaller folder
2323
pip install pyinstaller==4.2

settings.ini

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ author = Maximilian T. Strauss
77
author_email = [email protected]
88
copyright = Mann Labs
99
branch = master
10-
version = 0.4.1
10+
version = 0.4.2
1111
min_python = 3.6
1212
max_python = 4
1313
audience = Developers

0 commit comments

Comments
 (0)