File tree Expand file tree Collapse file tree 5 files changed +8
-4
lines changed Expand file tree Collapse file tree 5 files changed +8
-4
lines changed Original file line number Diff line number Diff line change 2
2
cmake_minimum_required (VERSION 3.4)
3
3
4
4
set (CMAKE_USER_MAKE_RULES_OVERRIDE_CXX "${CMAKE_CURRENT_SOURCE_DIR} /cmake/cxx_compiler_flags_overrides.cmake" )
5
- project (Z3 VERSION 4.10.0 .0 LANGUAGES CXX)
5
+ project (Z3 VERSION 4.10.1 .0 LANGUAGES CXX)
6
6
7
7
################################################################################
8
8
# Project version
Original file line number Diff line number Diff line change @@ -10,6 +10,10 @@ Version 4.next
10
10
- native word level bit-vector solving.
11
11
- introduction of simple induction lemmas to handle a limited repertoire of induction proofs.
12
12
13
+ Version 4.10.1
14
+ ==============
15
+ - fix implementation of mk_fresh in user propagator for Python API
16
+
13
17
Version 4.10.0
14
18
==============
15
19
- Added API Z3_enable_concurrent_dec_ref to be set by interfaces that
Original file line number Diff line number Diff line change 8
8
from mk_util import *
9
9
10
10
def init_version ():
11
- set_version (4 , 10 , 0 , 0 )
11
+ set_version (4 , 10 , 1 , 0 )
12
12
13
13
# Z3 Project definition
14
14
def init_project_def ():
Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ variables:
2
2
3
3
Major : ' 4'
4
4
Minor : ' 10'
5
- Patch : ' 0 '
5
+ Patch : ' 1 '
6
6
NightlyVersion : $(Major).$(Minor).$(Patch).$(Build.BuildId)-$(Build.DefinitionName)
7
7
8
8
stages :
Original file line number Diff line number Diff line change 6
6
trigger : none
7
7
8
8
variables :
9
- ReleaseVersion : ' 4.10.0 '
9
+ ReleaseVersion : ' 4.10.1 '
10
10
11
11
stages :
12
12
You can’t perform that action at this time.
0 commit comments