Skip to content

Commit 845e852

Browse files
increment to include python fixes
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
1 parent c6dad4a commit 845e852

File tree

5 files changed

+8
-4
lines changed

5 files changed

+8
-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.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.10.0.0 LANGUAGES CXX)
5+
project(Z3 VERSION 4.10.1.0 LANGUAGES CXX)
66

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

RELEASE_NOTES.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,10 @@ 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.10.1
14+
==============
15+
- fix implementation of mk_fresh in user propagator for Python API
16+
1317
Version 4.10.0
1418
==============
1519
- Added API Z3_enable_concurrent_dec_ref to be set by interfaces that

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, 10, 0, 0)
11+
set_version(4, 10, 1, 0)
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
@@ -2,7 +2,7 @@ variables:
22

33
Major: '4'
44
Minor: '10'
5-
Patch: '0'
5+
Patch: '1'
66
NightlyVersion: $(Major).$(Minor).$(Patch).$(Build.BuildId)-$(Build.DefinitionName)
77

88
stages:

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.10.0'
9+
ReleaseVersion: '4.10.1'
1010

1111
stages:
1212

0 commit comments

Comments
 (0)