Skip to content

Commit

Permalink
Bump version: 0.4.1 → 0.4.2
Browse files Browse the repository at this point in the history
  • Loading branch information
straussmaximilian committed Mar 21, 2022
1 parent 3f384ac commit 03154a5
Show file tree
Hide file tree
Showing 13 changed files with 15 additions and 15 deletions.
2 changes: 1 addition & 1 deletion .bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 0.4.1
current_version = 0.4.2
commit = True
tag = False
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)(\-(?P<release>[a-z]+)(?P<build>\d+))?
Expand Down
2 changes: 1 addition & 1 deletion alphapept/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
__version__ = "0.4.1"
__version__ = "0.4.2"

__requirements__ = {
"": "requirements/requirements.txt",
Expand Down
2 changes: 1 addition & 1 deletion alphapept/__version__.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
AUTHOR_EMAIL = "straussmaximilian@gmail.com"
COPYRIGHT = "Mann Labs"
BRANCH = "master"
VERSION_NO = "0.4.1"
VERSION_NO = "0.4.2"
MIN_PYTHON = "3.6"
MAX_PYTHON = "4"
AUDIENCE = "Developers"
Expand Down
2 changes: 1 addition & 1 deletion installer/one_click_windows/alphapept_innoinstaller.iss
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
; SEE THE DOCUMENTATION FOR DETAILS ON CREATING INNO SETUP SCRIPT FILES!

#define MyAppName "AlphaPept"
#define MyAppVersion "0.4.1"
#define MyAppVersion "0.4.2"
#define MyAppPublisher "MannLabs"
#define MyAppURL "https://github.com/MannLabs/alphapept"
#define MyAppExeName "alphapept.exe"
Expand Down
2 changes: 1 addition & 1 deletion installer/one_click_windows/create_installer_windows.bat
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ call DEL /F/Q/S dist > NUL
call RMDIR /Q/S build
call RMDIR /Q/S dist
call python setup.py sdist bdist_wheel
call pip install dist/alphapept-0.4.1-py3-none-any.whl[stable,gui-stable]
call pip install dist/alphapept-0.4.2-py3-none-any.whl[stable,gui-stable]
call pip install pyinstaller==4.7
call cd installer/one_click_windows
call pyinstaller ../alphapept.spec -y
Expand Down
2 changes: 1 addition & 1 deletion release/one_click_linux_gui/control
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
Package: alphapept
Version: 0.4.1
Version: 0.4.2
Architecture: all
Maintainer: Mann Labs <opensource@alphapept.com>
Description: AlphaPept
Expand Down
2 changes: 1 addition & 1 deletion release/one_click_linux_gui/create_installer_linux.sh
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ python setup.py sdist bdist_wheel
# Setting up the local package
cd release/one_click_linux_gui
# Make sure you include the required extra packages and always use the stable or very-stable options!
pip install "../../dist/alphapept-0.4.1-py3-none-any.whl[stable,gui-stable]"
pip install "../../dist/alphapept-0.4.2-py3-none-any.whl[stable,gui-stable]"

# Creating the stand-alone pyinstaller folder
pip install pyinstaller==4.2
Expand Down
4 changes: 2 additions & 2 deletions release/one_click_macos_gui/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@
<key>CFBundleIconFile</key>
<string>alpha_logo.icns</string>
<key>CFBundleIdentifier</key>
<string>alphapept.0.4.1</string>
<string>alphapept.0.4.2</string>
<key>CFBundleShortVersionString</key>
<string>0.4.1</string>
<string>0.4.2</string>
<key>CFBundleInfoDictionaryVersion</key>
<string>6.0</string>
<key>CFBundleName</key>
Expand Down
4 changes: 2 additions & 2 deletions release/one_click_macos_gui/create_installer_macos.sh
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ python setup.py sdist bdist_wheel

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

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

pkgbuild --root dist/alphapept --identifier de.mpg.biochem.alphapept.app --version 0.4.1 --install-location /Applications/alphapept.app --scripts scripts alphapept.pkg
pkgbuild --root dist/alphapept --identifier de.mpg.biochem.alphapept.app --version 0.4.2 --install-location /Applications/alphapept.app --scripts scripts alphapept.pkg
productbuild --distribution distribution.xml --resources Resources --package-path alphapept.pkg dist/alphapept_gui_installer_macos.pkg
2 changes: 1 addition & 1 deletion release/one_click_macos_gui/distribution.xml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8" standalone="no"?>
<installer-script minSpecVersion="1.000000">
<title>alphapept 0.4.1</title>
<title>alphapept 0.4.2</title>
<background mime-type="image/png" file="alpha_logo.png" scaling="proportional"/>
<welcome file="welcome.html" mime-type="text/html" />
<conclusion file="conclusion.html" mime-type="text/html" />
Expand Down
2 changes: 1 addition & 1 deletion release/one_click_windows_gui/alphapept_innoinstaller.iss
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
; SEE THE DOCUMENTATION FOR DETAILS ON CREATING INNO SETUP SCRIPT FILES!

#define MyAppName "AlphaPept"
#define MyAppVersion "0.4.1"
#define MyAppVersion "0.4.2"
#define MyAppPublisher "MannLabs"
#define MyAppURL "https://github.com/MannLabs/alphapept"
#define MyAppExeName "alphapept.exe"
Expand Down
2 changes: 1 addition & 1 deletion release/one_click_windows_gui/create_installer_windows.sh
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ python setup.py sdist bdist_wheel
# Setting up the local package
cd release/one_click_windows_gui
# Make sure you include the required extra packages and always use the stable or very-stable options!
pip install "../../dist/alphapept-0.4.1-py3-none-any.whl[stable,gui-stable]"
pip install "../../dist/alphapept-0.4.2-py3-none-any.whl[stable,gui-stable]"

# Creating the stand-alone pyinstaller folder
pip install pyinstaller==4.2
Expand Down
2 changes: 1 addition & 1 deletion settings.ini
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ author = Maximilian T. Strauss
author_email = straussmaximilian@gmail.com
copyright = Mann Labs
branch = master
version = 0.4.1
version = 0.4.2
min_python = 3.6
max_python = 4
audience = Developers
Expand Down

0 comments on commit 03154a5

Please sign in to comment.