From 4379a2bcc8f158db0c34e2b5c77710c76d487c73 Mon Sep 17 00:00:00 2001 From: Ravenwater Date: Fri, 16 Aug 2024 08:30:14 -0400 Subject: [PATCH] Setting SEMVER to v3.80 --- .devcontainer/devcontainer.json | 2 +- .github/workflows/cmake.yml | 2 +- CMakeLists.txt | 2 +- docker/build_release_container.sh | 2 +- docker/build_test_container.sh | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json index 103507acd..a725098fa 100644 --- a/.devcontainer/devcontainer.json +++ b/.devcontainer/devcontainer.json @@ -1,3 +1,3 @@ { - "image": "stillwater/builders:clang18builder" + "image": "stillwater/builders:clang16builder" } diff --git a/.github/workflows/cmake.yml b/.github/workflows/cmake.yml index 06c478964..6bb2163c1 100644 --- a/.github/workflows/cmake.yml +++ b/.github/workflows/cmake.yml @@ -2,7 +2,7 @@ name: CMake on: push: - branches: [ v3.79, dev, main ] + branches: [ v3.80, dev, main ] pull_request: branches: [ main ] diff --git a/CMakeLists.txt b/CMakeLists.txt index 6c8b6d533..0a88c01e5 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -25,7 +25,7 @@ if(NOT DEFINED UNIVERSAL_VERSION_MAJOR) set(UNIVERSAL_VERSION_MAJOR 3) endif() if(NOT DEFINED UNIVERSAL_VERSION_MINOR) - set(UNIVERSAL_VERSION_MINOR 79) + set(UNIVERSAL_VERSION_MINOR 80) endif() if(NOT DEFINED UNIVERSAL_VERSION_PATCH) set(UNIVERSAL_VERSION_PATCH 1) diff --git a/docker/build_release_container.sh b/docker/build_release_container.sh index de971018a..5ca4be71d 100755 --- a/docker/build_release_container.sh +++ b/docker/build_release_container.sh @@ -5,7 +5,7 @@ # example would be to strace an executable to find its dependencies MAJOR=v3 -MINOR=79 +MINOR=80 VERSION="$MAJOR.$MINOR" if [[ $# == 0 ]]; then diff --git a/docker/build_test_container.sh b/docker/build_test_container.sh index 86e141c7c..bf8402766 100755 --- a/docker/build_test_container.sh +++ b/docker/build_test_container.sh @@ -11,7 +11,7 @@ # example would be to strace an executable to find its dependencies MAJOR=v3 -MINOR=79 +MINOR=80 VERSION="$MAJOR.$MINOR" if [[ $# == 0 ]]; then