mirror of
https://github.com/Z3Prover/z3
synced 2025-04-07 09:55:19 +00:00
increment version number due to ABI/API breaking change #1556
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
bb7ad4e938
commit
21a3b9c8e2
|
@ -34,7 +34,7 @@ endif()
|
||||||
################################################################################
|
################################################################################
|
||||||
set(Z3_VERSION_MAJOR 4)
|
set(Z3_VERSION_MAJOR 4)
|
||||||
set(Z3_VERSION_MINOR 6)
|
set(Z3_VERSION_MINOR 6)
|
||||||
set(Z3_VERSION_PATCH 2)
|
set(Z3_VERSION_PATCH 3)
|
||||||
set(Z3_VERSION_TWEAK 0)
|
set(Z3_VERSION_TWEAK 0)
|
||||||
set(Z3_VERSION "${Z3_VERSION_MAJOR}.${Z3_VERSION_MINOR}.${Z3_VERSION_PATCH}.${Z3_VERSION_TWEAK}")
|
set(Z3_VERSION "${Z3_VERSION_MAJOR}.${Z3_VERSION_MINOR}.${Z3_VERSION_PATCH}.${Z3_VERSION_TWEAK}")
|
||||||
set(Z3_FULL_VERSION_STR "${Z3_VERSION}") # Note this might be modified
|
set(Z3_FULL_VERSION_STR "${Z3_VERSION}") # Note this might be modified
|
||||||
|
|
|
@ -9,7 +9,7 @@ from mk_util import *
|
||||||
|
|
||||||
# Z3 Project definition
|
# Z3 Project definition
|
||||||
def init_project_def():
|
def init_project_def():
|
||||||
set_version(4, 6, 2, 0)
|
set_version(4, 6, 3, 0)
|
||||||
add_lib('util', [])
|
add_lib('util', [])
|
||||||
add_lib('lp', ['util'], 'util/lp')
|
add_lib('lp', ['util'], 'util/lp')
|
||||||
add_lib('polynomial', ['util'], 'math/polynomial')
|
add_lib('polynomial', ['util'], 'math/polynomial')
|
||||||
|
|
|
@ -3,11 +3,11 @@ Copyright (c) 2012 Microsoft Corporation
|
||||||
|
|
||||||
Module Name:
|
Module Name:
|
||||||
|
|
||||||
IntNum.cs
|
AlgebraicNum.cs
|
||||||
|
|
||||||
Abstract:
|
Abstract:
|
||||||
|
|
||||||
Z3 Managed API: Int Numerals
|
Z3 Managed API: Algebraic Numerals
|
||||||
|
|
||||||
Author:
|
Author:
|
||||||
|
|
||||||
|
|
|
@ -3,11 +3,11 @@ Copyright (c) 2012 Microsoft Corporation
|
||||||
|
|
||||||
Module Name:
|
Module Name:
|
||||||
|
|
||||||
IntNum.cs
|
BitVecNum.cs
|
||||||
|
|
||||||
Abstract:
|
Abstract:
|
||||||
|
|
||||||
Z3 Managed API: Int Numerals
|
Z3 Managed API: BitVec Numerals
|
||||||
|
|
||||||
Author:
|
Author:
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue