mirror of
https://github.com/Z3Prover/z3
synced 2025-04-05 17:14:07 +00:00
add release notes
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
b3ef74c86d
commit
dce2f3d88f
|
@ -12,6 +12,10 @@ Version 4.next
|
||||||
|
|
||||||
Version 4.12.4
|
Version 4.12.4
|
||||||
==============
|
==============
|
||||||
|
- Re-release fixing a few issues with 4.12:
|
||||||
|
- Python dependency on importlib.resources vs importlib_resources break automatic pypi installations. Supposedly fixed by conditioning dependency on Python 3.9 where the feature is built-in.
|
||||||
|
- Missing release of arm64 for Ubuntu.
|
||||||
|
- Futile attempt to streamline adding readme.md file as part of Nuget distribution. Nuget.org now requires a readme file. I was able to integrate the readme with the cmake build, but the cross-platform repackage in scripts/mk_nuget_task.py does not ingest a similar readme file with the CI pipelines.
|
||||||
|
|
||||||
Version 4.12.3
|
Version 4.12.3
|
||||||
==============
|
==============
|
||||||
|
|
|
@ -28,10 +28,12 @@ os_info = { 'ubuntu-latest' : ('so', 'linux-x64'),
|
||||||
'x64-win' : ('dll', 'win-x64'),
|
'x64-win' : ('dll', 'win-x64'),
|
||||||
'x86-win' : ('dll', 'win-x86'),
|
'x86-win' : ('dll', 'win-x86'),
|
||||||
'x64-osx' : ('dylib', 'osx-x64'),
|
'x64-osx' : ('dylib', 'osx-x64'),
|
||||||
'arm-glibc-2.35' : ('so', 'linux-arm64'),
|
|
||||||
'arm64-osx' : ('dylib', 'osx-arm64'),
|
|
||||||
'debian' : ('so', 'linux-x64') }
|
'debian' : ('so', 'linux-x64') }
|
||||||
|
|
||||||
|
# Nuget not supported for ARM
|
||||||
|
#'arm-glibc-2.35' : ('so', 'linux-arm64'),
|
||||||
|
#'arm64-osx' : ('dylib', 'osx-arm64'),
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
def classify_package(f, arch):
|
def classify_package(f, arch):
|
||||||
|
|
|
@ -583,7 +583,7 @@ stages:
|
||||||
|
|
||||||
# Enable on release:
|
# Enable on release:
|
||||||
- job: PyPIPublish
|
- job: PyPIPublish
|
||||||
condition: eq(1,0)
|
condition: eq(1,1)
|
||||||
displayName: "Publish to PyPI"
|
displayName: "Publish to PyPI"
|
||||||
pool:
|
pool:
|
||||||
vmImage: "ubuntu-latest"
|
vmImage: "ubuntu-latest"
|
||||||
|
|
Loading…
Reference in a new issue