Skip to content

Commit

Permalink
bump up the version for release
Browse files Browse the repository at this point in the history
  • Loading branch information
baxtree committed Jan 17, 2025
1 parent c06d9e1 commit 8daf6b0
Show file tree
Hide file tree
Showing 8 changed files with 9 additions and 6 deletions.
4 changes: 2 additions & 2 deletions charts/subaligner/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,5 @@ name: subaligner
description: A Helm chart for subaligner CLIs
icon: https://raw.githubusercontent.com/baxtree/subaligner/master/figures/subaligner.png
type: application
version: 0.1.1
appVersion: "0.3.7"
version: 0.1.2
appVersion: "0.3.8"
2 changes: 1 addition & 1 deletion docker/Dockerfile-ArchLinux
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ RUN ["/bin/bash", "-c", "pacman --noconfirm -Syu &&\
/usr/sbin/pyenv local 3.8.12 &&\
ln -s /root/.pyenv/versions/3.8.12/bin/python /usr/bin/python &&\
python -m pip install --upgrade pip &&\
python -m pip install wheel &&\
python3 -m pip install --upgrade setuptools<65.0.0 wheel &&\
python -m pip install \"subaligner==${RELEASE_VERSION}\" &&\
python -m pip install \"subaligner[llm]==${RELEASE_VERSION}\""]

Expand Down
2 changes: 1 addition & 1 deletion docker/Dockerfile-CentOS7
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,6 @@ RUN ["/bin/bash", "-c", "dnf install -y epel-release dnf-utils &&\
dnf makecache &&\
dnf upgrade python3-pip &&\
python3 -m pip install --upgrade pip &&\
python3 -m pip install --upgrade setuptools wheel &&\
python3 -m pip install --upgrade setuptools<65.0.0 wheel &&\
python3 -m pip install \"subaligner==${RELEASE_VERSION}\" &&\
python3 -m pip install \"subaligner[llm]==${RELEASE_VERSION}\""]
1 change: 1 addition & 0 deletions docker/Dockerfile-Debian11
Original file line number Diff line number Diff line change
Expand Up @@ -18,5 +18,6 @@ RUN ["/bin/bash", "-c", "apt -y update &&\
apt -y install python3-pip &&\
apt -y install python3-venv &&\
python3 -m pip install --upgrade pip &&\
python3 -m pip install --upgrade setuptools<65.0.0 wheel &&\
python3 -m pip install \"subaligner==${RELEASE_VERSION}\" &&\
python3 -m pip install \"subaligner[harmony]==${RELEASE_VERSION}\""]
1 change: 1 addition & 0 deletions docker/Dockerfile-Fedora34
Original file line number Diff line number Diff line change
Expand Up @@ -24,5 +24,6 @@ RUN ["/bin/bash", "-c", "dnf install -y dnf-utils &&\
dnf install -y python3-pip &&\
dnf install -y hdf5 hdf5-devel &&\
pip3 install --upgrade pip &&\
python3 -m pip install --upgrade setuptools<65.0.0 wheel &&\
python3 -m pip install \"subaligner==${RELEASE_VERSION}\" &&\
python3 -m pip install \"subaligner[harmony]==${RELEASE_VERSION}\""]
1 change: 1 addition & 0 deletions docker/Dockerfile-Ubuntu20
Original file line number Diff line number Diff line change
Expand Up @@ -16,5 +16,6 @@ RUN ["/bin/bash", "-c", "apt-get -y update &&\
apt-get -y install python3-tk &&\
apt-get -y install python3-pip &&\
python3 -m pip install --upgrade pip &&\
python3 -m pip install --upgrade setuptools<65.0.0 wheel &&\
python3 -m pip install \"subaligner==${RELEASE_VERSION}\" &&\
python3 -m pip install \"subaligner[harmony]==${RELEASE_VERSION}\""]
2 changes: 1 addition & 1 deletion docker/Dockerfile-Ubuntu22
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,6 @@ RUN ["/bin/bash", "-c", "apt-get -y update &&\
apt-get -y install python3-tk &&\
apt-get -y install python3-pip &&\
python3 -m pip install --upgrade pip &&\
python3 -m pip install --upgrade setuptools wheel &&\
python3 -m pip install --upgrade setuptools<65.0.0 wheel &&\
python3 -m pip install \"subaligner==${RELEASE_VERSION}\" &&\
python3 -m pip install \"subaligner[harmony]==${RELEASE_VERSION}\""]
2 changes: 1 addition & 1 deletion subaligner/_version.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
"""The semver for the current release."""
__version__ = "0.3.7"
__version__ = "0.3.8"

0 comments on commit 8daf6b0

Please sign in to comment.