mirror of
https://github.com/Z3Prover/z3
synced 2025-04-05 00:54:07 +00:00
increase version number
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
30dba9bde7
commit
fb6ec7d5e7
|
@ -2,7 +2,7 @@
|
|||
cmake_minimum_required(VERSION 3.16)
|
||||
|
||||
set(CMAKE_USER_MAKE_RULES_OVERRIDE_CXX "${CMAKE_CURRENT_SOURCE_DIR}/cmake/cxx_compiler_flags_overrides.cmake")
|
||||
project(Z3 VERSION 4.14.0.0 LANGUAGES CXX)
|
||||
project(Z3 VERSION 4.14.1.0 LANGUAGES CXX)
|
||||
|
||||
################################################################################
|
||||
# Project version
|
||||
|
|
|
@ -10,7 +10,12 @@ Version 4.next
|
|||
- native word level bit-vector solving.
|
||||
- introduction of simple induction lemmas to handle a limited repertoire of induction proofs.
|
||||
|
||||
Versoin 4.14.0
|
||||
Version 4.14.1
|
||||
==============
|
||||
- Improved integer cut algorithms for linear integer arithmetic.
|
||||
|
||||
|
||||
Version 4.14.0
|
||||
==============
|
||||
- [SLS modulo theories](https://microsoft.github.io/z3guide/programming/Local%20Search/) engine v1 release.
|
||||
- API for accessing term [depth and groundness](https://github.com/Z3Prover/z3/pull/7479).
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
from mk_util import *
|
||||
|
||||
def init_version():
|
||||
set_version(4, 14, 0, 0) # express a default build version or pick up ci build version
|
||||
set_version(4, 14, 1, 0) # express a default build version or pick up ci build version
|
||||
|
||||
# Z3 Project definition
|
||||
def init_project_def():
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
variables:
|
||||
Major: '4'
|
||||
Minor: '14'
|
||||
Patch: '0'
|
||||
Patch: '1'
|
||||
ReleaseVersion: $(Major).$(Minor).$(Patch)
|
||||
AssemblyVersion: $(Major).$(Minor).$(Patch).$(Build.BuildId)
|
||||
NightlyVersion: $(AssemblyVersion)-$(Build.buildId)
|
||||
|
|
|
@ -6,7 +6,7 @@
|
|||
trigger: none
|
||||
|
||||
variables:
|
||||
ReleaseVersion: '4.14.0'
|
||||
ReleaseVersion: '4.14.1'
|
||||
|
||||
stages:
|
||||
|
||||
|
|
Loading…
Reference in a new issue