Skip to content

Commit a5a2a13

Browse files
update version number
1 parent 0d3c29a commit a5a2a13

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
cmake_minimum_required(VERSION 3.16)
33

44
set(CMAKE_USER_MAKE_RULES_OVERRIDE_CXX "${CMAKE_CURRENT_SOURCE_DIR}/cmake/cxx_compiler_flags_overrides.cmake")
5-
project(Z3 VERSION 4.15.0.0 LANGUAGES CXX)
5+
project(Z3 VERSION 4.15.1.0 LANGUAGES CXX)
66

77
################################################################################
88
# Project version

scripts/mk_project.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
from mk_util import *
99

1010
def init_version():
11-
set_version(4, 15, 0, 0) # express a default build version or pick up ci build version
11+
set_version(4, 15, 1, 0) # express a default build version or pick up ci build version
1212

1313
# Z3 Project definition
1414
def init_project_def():

scripts/nightly.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
variables:
22
Major: '4'
33
Minor: '15'
4-
Patch: '0'
4+
Patch: '1'
55
ReleaseVersion: $(Major).$(Minor).$(Patch)
66
AssemblyVersion: $(Major).$(Minor).$(Patch).$(Build.BuildId)
77
NightlyVersion: $(AssemblyVersion)-$(Build.buildId)

scripts/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
trigger: none
77

88
variables:
9-
ReleaseVersion: '4.15.0'
9+
ReleaseVersion: '4.15.1'
1010

1111
stages:
1212

0 commit comments

Comments
 (0)