Skip to content

Commit 9a8ff74

Browse files
update version number and release notes
1 parent 11bb19d commit 9a8ff74

File tree

5 files changed

+8
-4
lines changed

5 files changed

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

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

RELEASE_NOTES.md

+4
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.13.2
14+
==============
15+
- Performance regression fix. #7404
16+
1317
Version 4.13.1
1418
==============
1519
- single-sample cell projection in nlsat was designed by Haokun Li and Bican Xia.

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, 13, 1, 0) # express a default build version or pick up ci build version
11+
set_version(4, 13, 2, 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: '13'
4-
Patch: '1'
4+
Patch: '2'
55
ReleaseVersion: $(Major).$(Minor).$(Patch)
66
AssemblyVersion: $(Major).$(Minor).$(Patch).$(Build.BuildId)
77
NightlyVersion: $(AssemblyVersion)-$(Build.buildId)

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.13.1'
9+
ReleaseVersion: '4.13.2'
1010

1111
stages:
1212

0 commit comments

Comments
 (0)