From e150b537b33738033e319478cb122c659dca8e87 Mon Sep 17 00:00:00 2001 From: David Minton Date: Wed, 20 Dec 2023 15:07:55 -0500 Subject: [PATCH] Fixed typo in build script --- buildscripts/build_dependencies.sh | 2 +- pyproject.toml | 2 +- src/globals/globals_module.f90 | 2 +- version.txt | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/buildscripts/build_dependencies.sh b/buildscripts/build_dependencies.sh index 32ac73ea9..143b4d233 100755 --- a/buildscripts/build_dependencies.sh +++ b/buildscripts/build_dependencies.sh @@ -28,7 +28,7 @@ if ! command -v ninja &> /dev/null; then printf "Copying files to ${DEPENDENCY_DIR}\n" mkdir -p ${DEPENDENCY_DIR} if [ ! -d ${DEPENDENCY_DIR}/ninja-${NINJA_VER} ]; then - [ -d ${DEPENDENCY_DIR}/zlib-* ] && rm -rf ${DEPENDENCY_DIR}/zlib-* + [ -d ${DEPENDENCY_DIR}/ninja-* ] && rm -rf ${DEPENDENCY_DIR}/ninja-* curl -L https://github.com/ninja-build/ninja/archive/refs/tags/v${NINJA_VER}.tar.gz | tar xvz -C ${DEPENDENCY_DIR} fi cd ${DEPENDENCY_DIR}/ninja-* diff --git a/pyproject.toml b/pyproject.toml index ffbdad11f..1ada4eedf 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "swiftest" -version = "2023.12.1" +version = "2023.12.2" authors=[ {name = 'David A. Minton', email='daminton@purdue.edu'}, {name = 'Carlisle Wishard'}, diff --git a/src/globals/globals_module.f90 b/src/globals/globals_module.f90 index 03c1ab86a..ec79028be 100644 --- a/src/globals/globals_module.f90 +++ b/src/globals/globals_module.f90 @@ -48,7 +48,7 @@ module globals integer(I4B), parameter :: UPPERCASE_OFFSET = iachar('A') - iachar('a') !! ASCII character set parameter for lower to upper !! conversion - offset between upper and lower - character(*), parameter :: VERSION = "2023.12.1" !! Swiftest version + character(*), parameter :: VERSION = "2023.12.2" !! Swiftest version !> Symbolic name for integrator types character(*), parameter :: UNKNOWN_INTEGRATOR = "UKNOWN INTEGRATOR" diff --git a/version.txt b/version.txt index 5f73c59e9..dbe03d474 100644 --- a/version.txt +++ b/version.txt @@ -1 +1 @@ -2023.12.1 \ No newline at end of file +2023.12.2 \ No newline at end of file