Skip to content

Commit

Permalink
do version bump for new release pipeline
Browse files Browse the repository at this point in the history
  • Loading branch information
mschwoer committed Sep 21, 2024
1 parent 7308dc4 commit 4fc449a
Show file tree
Hide file tree
Showing 7 changed files with 8 additions and 6 deletions.
2 changes: 2 additions & 0 deletions HISTORY.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# Changelog

# for versions >= 0.6.8, change log is found on the respective GitHub release page

# 0.6.7
* FIX allowing to save multiple plots of the same type
* FIX uninitialized functions
Expand Down
2 changes: 1 addition & 1 deletion release/linux/build_installer_linux.sh
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ python setup.py sdist bdist_wheel

# Setting up the local package
# Make sure you include the required extra packages and always use the stable or very-stable options!
pip install "dist/alphastats-0.6.7-py3-none-any.whl"
pip install "dist/alphastats-0.6.9-py3-none-any.whl"

# Creating the stand-alone pyinstaller folder
pyinstaller release/pyinstaller/alphastats.spec --distpath dist_pyinstaller --workpath build_pyinstaller -y
2 changes: 1 addition & 1 deletion release/macos/build_installer_macos.sh
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ rm -rf build

# Creating the wheel
python setup.py sdist bdist_wheel
pip install "dist/alphastats-0.6.7-py3-none-any.whl"
pip install "dist/alphastats-0.6.9-py3-none-any.whl"

# Creating the stand-alone pyinstaller folder
pyinstaller release/pyinstaller/alphastats.spec --distpath dist_pyinstaller --workpath build_pyinstaller -y
2 changes: 1 addition & 1 deletion release/macos/build_package_macos.sh
Original file line number Diff line number Diff line change
Expand Up @@ -27,5 +27,5 @@ cd -

chmod 777 release/macos/scripts/*

pkgbuild --root dist_pyinstaller/${PACKAGE_NAME} --identifier de.mpg.biochem.${PACKAGE_NAME}.app --version 0.6.7 --install-location /Applications/${PACKAGE_NAME}.app --scripts release/macos/scripts ${PACKAGE_NAME}.pkg
pkgbuild --root dist_pyinstaller/${PACKAGE_NAME} --identifier de.mpg.biochem.${PACKAGE_NAME}.app --version 0.6.9 --install-location /Applications/${PACKAGE_NAME}.app --scripts release/macos/scripts ${PACKAGE_NAME}.pkg
productbuild --distribution release/macos/distribution.xml --resources release/macos/Resources --package-path ${PACKAGE_NAME}.pkg ${BUILD_NAME}.pkg
2 changes: 1 addition & 1 deletion release/macos/create_installer_macos.sh
Original file line number Diff line number Diff line change
Expand Up @@ -41,5 +41,5 @@ cp ../../LICENSE.txt Resources/LICENSE.txt
cp ../logos/alphapeptstats_logo.png Resources/alphapeptstats_logo.png
chmod 777 scripts/*

pkgbuild --root dist/alphastats --identifier de.mpg.biochem.alphastats.app --version 0.6.7--install-location /Applications/alphastats.app --scripts scripts alphastats.pkg
pkgbuild --root dist/alphastats --identifier de.mpg.biochem.alphastats.app --version 0.6.9--install-location /Applications/alphastats.app --scripts scripts alphastats.pkg
productbuild --distribution distribution.xml --resources Resources --package-path alphastats.pkg dist/alphastats_gui_installer_macos.pkg
2 changes: 1 addition & 1 deletion release/windows/alphastats_innoinstaller_old.iss
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
; # TODO remove with old release workflow

#define MyAppName "AlphaPeptStats"
#define MyAppVersion "0.6.7"
#define MyAppVersion "0.6.9"
#define MyAppPublisher "MannLabs"
#define MyAppURL "https://github.com/MannLabs/alphapeptstats"
#define MyAppExeName "alphastats_gui.exe"
Expand Down
2 changes: 1 addition & 1 deletion release/windows/build_installer_windows.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ Remove-Item -Recurse -Force -ErrorAction SilentlyContinue ./dist_pyinstaller
# Creating the wheel
python setup.py sdist bdist_wheel
# Make sure you include the required extra packages and always use the stable or very-stable options!
pip install "dist/alphastats-0.6.7-py3-none-any.whl"
pip install "dist/alphastats-0.6.9-py3-none-any.whl"

# Creating the stand-alone pyinstaller folder
pyinstaller release/pyinstaller/alphastats.spec --distpath dist_pyinstaller --workpath build_pyinstaller -y

0 comments on commit 4fc449a

Please sign in to comment.