Skip to content

Commit 172f88c

Browse files
committed
Bump version: 3.0.0 → 3.1.0
1 parent 6b8ce73 commit 172f88c

5 files changed

Lines changed: 8 additions & 8 deletions

File tree

.bumpversion.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[bumpversion]
2-
current_version = 3.0.0
2+
current_version = 3.1.0
33
commit = False
44
tag = False
55
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)(\-(?P<release>[a-z]+))?(\.(?P<build>\d+))?

CMakeLists.txt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
## set build parameters
44
project(Shadow)
5-
set(SHADOW_VERSION_FULL 3.0.0)
5+
set(SHADOW_VERSION_FULL 3.1.0)
66

77
## Most of Shadow's C files are now built via Rust, which means they wouldn't
88
## be included in the compile_commands.json generated by cmake. Use an external
@@ -48,8 +48,8 @@ if(((CMAKE_C_COMPILER MATCHES "[/^]gcc") AND (NOT (CMAKE_CXX_COMPILER MATCHES "[
4848
endif()
4949

5050
## https://github.com/shadow/shadow/issues/1741
51-
if((CMAKE_C_COMPILER MATCHES "[/^]clang") AND (CMAKE_C_COMPILER_VERSION VERSION_EQUAL 13.0.0))
52-
message(FATAL_ERROR "Clang 13.0.0 is not supported (see https://github.com/shadow/shadow/issues/1741)")
51+
if((CMAKE_C_COMPILER MATCHES "[/^]clang") AND (CMAKE_C_COMPILER_VERSION VERSION_EQUAL 13.1.0))
52+
message(FATAL_ERROR "Clang 13.1.0 is not supported (see https://github.com/shadow/shadow/issues/1741)")
5353
endif()
5454

5555
set(CMAKE_INSTALL_RPATH_USE_LINK_PATH TRUE)

src/Cargo.lock

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/main/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "shadow-rs"
3-
version = "3.0.0"
3+
version = "3.1.0"
44
edition = "2021"
55
publish = false
66

src/test/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "shadow-tests"
3-
version = "3.0.0"
3+
version = "3.1.0"
44
edition = "2021"
55
publish = false
66

0 commit comments

Comments
 (0)