Skip to content

Commit

Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Bumping SEMVER to v3.75.1
Browse files Browse the repository at this point in the history
Ravenwater committed Jan 4, 2024
1 parent e6a530d commit 7c1119e
Showing 4 changed files with 6 additions and 16 deletions.
14 changes: 2 additions & 12 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -10,17 +10,7 @@ include(tools/cmake/banners.cmake)
print_header()

####
# Set minimum version of CMake. Since we are using the VERSION option of the
# project command, we need at least 3.0. To honor the amazing work that
# the folks at KitWare have done for the open-source community, we are
# going to specify a recent version.
# As of UNIVERSAL v3.0 December 2019
# Ubuntu 16.04 LTS runs cmake 3.5
# Ubuntu 18.04 LTS runs cmake 3.10
# Ubuntu 20.04 LTS runs cmake 3.16
# Ubuntu 22.04 LTS runs cmake 3.22
# container runs cmake 3.7.1
# gcc5 container runs cmake 3.0.2
# Set minimum version of CMake.
cmake_minimum_required(VERSION 3.22)

####
@@ -35,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 74)
set(UNIVERSAL_VERSION_MINOR 75)
endif()
if(NOT DEFINED UNIVERSAL_VERSION_PATCH)
set(UNIVERSAL_VERSION_PATCH 1)
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -69,5 +69,5 @@ WORKDIR /home/stillwater/universal/build

# the command 'make test' is run as part of the CI test pipeline of this release container

ENV CONTAINER_ID "Universal Numbers Library Container"
ENV CONTAINER_ID "Universal Number Systems Container"
CMD ["/usr/bin/env", "bash"]
2 changes: 1 addition & 1 deletion docker/build_release_container.sh
Original file line number Diff line number Diff line change
@@ -5,7 +5,7 @@
# example would be to strace an executable to find its dependencies

MAJOR=v3
MINOR=74
MINOR=75
VERSION="$MAJOR.$MINOR"

if [[ $# == 0 ]]; then
4 changes: 2 additions & 2 deletions docker/build_test_container.sh
Original file line number Diff line number Diff line change
@@ -3,15 +3,15 @@
# script to create a test container with a specific compiler and build target
# Usage: ./build_test_container.sh COMPILER TARGET
# Examples:
# ./build_test_compiler.sh gcc10 will create a gcc10 dev environment with BUILD_ALL=ON
# ./build_test_container.sh gcc10 will create a gcc10 dev environment with BUILD_ALL=ON
# ./build_test_container.sh clang13 BUILD_NUMBER_LNS will create a clang13 dev environment with BUILD_NUMBER_LNS=ON

# To turn off security features use:
# docker run --security-opt seccomp:unconfined ...
# example would be to strace an executable to find its dependencies

MAJOR=v3
MINOR=74
MINOR=75
VERSION="$MAJOR.$MINOR"

if [[ $# == 0 ]]; then

0 comments on commit 7c1119e

Please sign in to comment.