Skip to content

Commit 389aea3

Browse files
update release notes, update version number
Signed-off-by: Nikolaj Bjorner <[email protected]>
1 parent 5e3f1d9 commit 389aea3

File tree

5 files changed

+9
-4
lines changed

5 files changed

+9
-4
lines changed

CMakeLists.txt

+1-1
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.12.3.0 LANGUAGES CXX)
5+
project(Z3 VERSION 4.12.4.0 LANGUAGES CXX)
66

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

RELEASE_NOTES.md

+5
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,9 @@ Version 4.next
1010
- native word level bit-vector solving.
1111
- introduction of simple induction lemmas to handle a limited repertoire of induction proofs.
1212

13+
Version 4.12.4
14+
==============
15+
1316
Version 4.12.3
1417
==============
1518
- Alpha support for polymorphism.
@@ -26,6 +29,8 @@ Version 4.12.3
2629
smt.arith.solver=6 is the default for most use cases. It trails smt.arith.solver=2 in some scenarios and the gap has been either removed or reduced.
2730
smt.arith.solver=6 is complete for integrations of non-linear real arithmetic and theories, smt.arith.solver=2 is not.
2831
- qel: Light quantifier elimination based on term graphs (egraphs), and corresponding Model Based Projection for arrays and ADTs. Used by Spacer and QSAT.
32+
- added real-closed fields features to C API, exposed more RCF over OCaml API
33+
- fixes to FP
2934

3035
Version 4.12.2
3136
==============

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
variables:
22
Major: '4'
33
Minor: '12'
4-
Patch: '3'
4+
Patch: '4'
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.12.3'
9+
ReleaseVersion: '4.12.4'
1010

1111
stages:
1212

0 commit comments

Comments
 (0)