3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-23 09:05:31 +00:00

Merge branch 'master' into polysat

This commit is contained in:
Jakob Rath 2022-08-01 11:27:49 +02:00
commit 220a63e8bd
223 changed files with 508 additions and 505 deletions

View file

@ -8,7 +8,7 @@
from mk_util import *
def init_version():
set_version(4, 9, 2, 0)
set_version(4, 11, 0, 0)
# Z3 Project definition
def init_project_def():

View file

@ -1,8 +1,8 @@
variables:
Major: '4'
Minor: '9'
Patch: '2'
Minor: '11'
Patch: '0'
NightlyVersion: $(Major).$(Minor).$(Patch).$(Build.BuildId)-$(Build.DefinitionName)
stages:

View file

@ -6,7 +6,7 @@
trigger: none
variables:
ReleaseVersion: '4.9.2'
ReleaseVersion: '4.11.0'
stages:
@ -516,8 +516,9 @@ stages:
inputs:
command: push
nuGetFeedType: External
publishFeedCredentials: Z3Nuget
publishFeedCredentials: $(NugetZ3)
packagesToPush: $(Agent.TempDirectory)/*.nupkg
# Enable on release:
- job: PyPIPublish

View file

@ -1854,6 +1854,7 @@ _lib.Z3_solver_propagate_final.restype = None
_lib.Z3_solver_propagate_fixed.restype = None
_lib.Z3_solver_propagate_eq.restype = None
_lib.Z3_solver_propagate_diseq.restype = None
_lib.Z3_solver_propagate_decide.restype = None
on_model_eh_type = ctypes.CFUNCTYPE(None, ctypes.c_void_p)
_lib.Z3_optimize_register_model_eh.restype = None