Skip to content

Commit

Permalink
Bump version to 4.3.3
Browse files Browse the repository at this point in the history
  • Loading branch information
Ulthran committed Jan 31, 2024
1 parent 2be3cbb commit c184703
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,13 +41,13 @@ jobs:
run: |
GITHUB_VERSION=${{ steps.get_version.outputs.version-without-v }}
if [[ $LIBRARY_VERSION == ${{ env.GIT_VERSION }} ]] && [[ ${{ env.GIT_VERSION }} == ${{ env.TAR_VERSION }} ]]; then
echo "Versions match, continuing..."
echo "Versions match, continuing..."
else
echo "Versions don't match, exiting..."
echo "Library version: ${LIBRARY_VERSION}"
echo "GitHub version: ${{ env.GIT_VERSION }}"
echo "Tarball version: ${{ env.TAR_VERSION }}"
exit 1
echo "Versions don't match, exiting..."
echo "Library version: ${LIBRARY_VERSION}"
echo "GitHub version: ${{ env.GIT_VERSION }}"
echo "Tarball version: ${{ env.TAR_VERSION }}"
exit 1
fi
test-tarball:
Expand Down
2 changes: 1 addition & 1 deletion install.sh
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/usr/bin/env bash

__conda_url=https://repo.continuum.io/miniconda/Miniconda3-latest-Linux-x86_64.sh
__version_tag=$(if git describe --tags >/dev/null 2>&1 ; then git describe --tags; else echo v4.3.2; fi) # <--- Update this on each version release
__version_tag=$(if git describe --tags >/dev/null 2>&1 ; then git describe --tags; else echo v4.3.3; fi) # <--- Update this on each version release
__version_tag="${__version_tag:1}" # Remove the 'v' prefix

read -r -d '' __usage <<-'EOF'
Expand Down

0 comments on commit c184703

Please sign in to comment.