Skip to content

Commit a90c4f6

Browse files
increment version per release notes
incrementing minor version because the API has a new function. This breaks log replay against old dlls and inclusion against z3++.h.
1 parent f6d5541 commit a90c4f6

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

CMakeLists.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
cmake_minimum_required(VERSION 3.4)
33

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

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

scripts/mk_project.py

+1-1
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, 11, 3, 0) # express a default build version or pick up ci build version
11+
set_version(4, 12, 0, 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

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
variables:
22
Major: '4'
3-
Minor: '11'
4-
Patch: '3'
3+
Minor: '12'
4+
Patch: '0'
55
AssemblyVersion: $(Major).$(Minor).$(Patch).$(Build.BuildId)
66
NightlyVersion: $(AssemblyVersion)-$(Build.DefinitionName)
77

scripts/release.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
trigger: none
77

88
variables:
9-
ReleaseVersion: '4.11.3'
9+
ReleaseVersion: '4.12.0'
1010

1111
stages:
1212

0 commit comments

Comments
 (0)