From c184703c3b93598c535b7f47a9b7227b59ba9aca Mon Sep 17 00:00:00 2001 From: Ulthran Date: Wed, 31 Jan 2024 11:17:02 -0500 Subject: [PATCH] Bump version to 4.3.3 --- .github/workflows/release.yml | 12 ++++++------ install.sh | 2 +- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 8eeba6e8..6af9c4d8 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -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: diff --git a/install.sh b/install.sh index 081ec13b..8591a936 100755 --- a/install.sh +++ b/install.sh @@ -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'