Skip to content

Commit 99ecf97

Browse files
Bump version: 0.0.39 → 0.0.40
1 parent f9936a7 commit 99ecf97

File tree

9 files changed

+10
-10
lines changed

9 files changed

+10
-10
lines changed

misc/bumpversion.cfg

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

pydiaid/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33

44
__project__ = "pydiaid"
5-
__version__ = "0.0.39"
5+
__version__ = "0.0.40"
66
__license__ = "Apache"
77
__description__ = "An open-source Python package of the AlphaPept ecosystem"
88
__author__ = "Mann Labs"

release/one_click_linux_gui/control

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
Package: pydiaid
2-
Version: 0.0.39
2+
Version: 0.0.40
33
Architecture: all
44
Maintainer: Mann Labs <opensource@alphapept.com>
55
Description: py_diAID

release/one_click_linux_gui/create_installer_linux.sh

Lines changed: 1 addition & 1 deletion
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/pydiaid-0.0.39-py3-none-any.whl[stable]"
20+
pip install "../../dist/pydiaid-0.0.40-py3-none-any.whl[stable]"
2121

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

release/one_click_macos_gui/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>alpha_logo.icns</string>
1111
<key>CFBundleIdentifier</key>
12-
<string>pydiaid.0.0.39</string>
12+
<string>pydiaid.0.0.40</string>
1313
<key>CFBundleShortVersionString</key>
14-
<string>0.0.39</string>
14+
<string>0.0.40</string>
1515
<key>CFBundleInfoDictionaryVersion</key>
1616
<string>6.0</string>
1717
<key>CFBundleName</key>

release/one_click_macos_gui/create_installer_macos.sh

Lines changed: 1 addition & 1 deletion
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/pydiaid-0.0.39-py3-none-any.whl[stable]"
23+
pip install "../../dist/pydiaid-0.0.40-py3-none-any.whl[stable]"
2424

2525
# Creating the stand-alone pyinstaller folder
2626
pip install pyinstaller==4.7

release/one_click_macos_gui/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>py_diAID 0.0.39</title>
3+
<title>py_diAID 0.0.40</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/create_installer_windows.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ python setup.py sdist bdist_wheel
2121
# Setting up the local package
2222
cd release/one_click_windows_gui
2323
# Make sure you include the required extra packages and always use the stable or very-stable options!
24-
pip install "../../dist/pydiaid-0.0.39-py3-none-any.whl[stable]"
24+
pip install "../../dist/pydiaid-0.0.40-py3-none-any.whl[stable]"
2525

2626
# Creating the stand-alone pyinstaller folder
2727
pip install pyinstaller==4.10

release/one_click_windows_gui/pydiaid_innoinstaller.iss

Lines changed: 1 addition & 1 deletion
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 "py_diAID"
5-
#define MyAppVersion "0.0.39"
5+
#define MyAppVersion "0.0.40"
66
#define MyAppPublisher "Max Planck Institute of Biochemistry, Mann Labs"
77
#define MyAppURL "https://github.com/MannLabs/pydiaid"
88
#define MyAppExeName "pydiaid_gui.exe"

0 commit comments

Comments
 (0)