3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2026-02-14 04:41:48 +00:00

bump version to prepare for release with wheels and npm

Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
Nikolaj Bjorner 2026-02-12 08:59:23 -08:00
parent 0be5434f29
commit e6d32f3d40
6 changed files with 20 additions and 11 deletions

View file

@ -22,7 +22,7 @@ permissions:
env:
MAJOR: '4'
MINOR: '15'
PATCH: '7'
PATCH: '8'
jobs:
# ============================================================================

View file

@ -4,9 +4,9 @@ on:
workflow_dispatch:
inputs:
version:
description: 'Version number for the NuGet package (e.g., 4.15.7)'
description: 'Version number for the NuGet package (e.g., 4.15.8)'
required: true
default: '4.15.7'
default: '4.15.8'
push:
tags:
- 'z3-*'
@ -31,7 +31,7 @@ jobs:
shell: cmd
run: |
call "C:\Program Files\Microsoft Visual Studio\2022\Enterprise\VC\Auxiliary\Build\vcvarsall.bat" x64
python scripts\mk_win_dist.py --x64-only --dotnet-key=%GITHUB_WORKSPACE%\resources\z3.snk --assembly-version=${{ github.event.inputs.version || '4.15.7' }} --zip
python scripts\mk_win_dist.py --x64-only --dotnet-key=%GITHUB_WORKSPACE%\resources\z3.snk --assembly-version=${{ github.event.inputs.version || '4.15.8' }} --zip
- name: Upload Windows x64 artifact
uses: actions/upload-artifact@v6
@ -55,7 +55,7 @@ jobs:
shell: cmd
run: |
call "C:\Program Files\Microsoft Visual Studio\2022\Enterprise\VC\Auxiliary\Build\vcvarsall.bat" x86
python scripts\mk_win_dist.py --x86-only --dotnet-key=%GITHUB_WORKSPACE%\resources\z3.snk --assembly-version=${{ github.event.inputs.version || '4.15.7' }} --zip
python scripts\mk_win_dist.py --x86-only --dotnet-key=%GITHUB_WORKSPACE%\resources\z3.snk --assembly-version=${{ github.event.inputs.version || '4.15.8' }} --zip
- name: Upload Windows x86 artifact
uses: actions/upload-artifact@v6
@ -79,7 +79,7 @@ jobs:
shell: cmd
run: |
call "C:\Program Files\Microsoft Visual Studio\2022\Enterprise\VC\Auxiliary\Build\vcvarsall.bat" amd64_arm64
python scripts\mk_win_dist_cmake.py --arm64-only --dotnet-key=%GITHUB_WORKSPACE%\resources\z3.snk --assembly-version=${{ github.event.inputs.version || '4.15.7' }} --zip
python scripts\mk_win_dist_cmake.py --arm64-only --dotnet-key=%GITHUB_WORKSPACE%\resources\z3.snk --assembly-version=${{ github.event.inputs.version || '4.15.8' }} --zip
- name: Upload Windows ARM64 artifact
uses: actions/upload-artifact@v6
@ -189,7 +189,7 @@ jobs:
shell: cmd
run: |
cd package-files
python ..\scripts\mk_nuget_task.py . ${{ github.event.inputs.version || '4.15.7' }} https://github.com/Z3Prover/z3 ${{ github.ref_name }} ${{ github.sha }} ${{ github.workspace }} symbols
python ..\scripts\mk_nuget_task.py . ${{ github.event.inputs.version || '4.15.8' }} https://github.com/Z3Prover/z3 ${{ github.ref_name }} ${{ github.sha }} ${{ github.workspace }} symbols
- name: Pack NuGet package
shell: cmd
@ -238,7 +238,7 @@ jobs:
shell: cmd
run: |
cd packages
python ..\scripts\mk_nuget_task.py . ${{ github.event.inputs.version || '4.15.7' }} https://github.com/Z3Prover/z3 ${{ github.ref_name }} ${{ github.sha }} ${{ github.workspace }} symbols x86
python ..\scripts\mk_nuget_task.py . ${{ github.event.inputs.version || '4.15.8' }} https://github.com/Z3Prover/z3 ${{ github.ref_name }} ${{ github.sha }} ${{ github.workspace }} symbols x86
- name: Pack NuGet package
shell: cmd

View file

@ -23,7 +23,7 @@ permissions:
contents: write
env:
RELEASE_VERSION: '4.15.7'
RELEASE_VERSION: '4.15.8'
jobs:
# ============================================================================

View file

@ -1,6 +1,6 @@
module(
name = "z3",
version = "4.15.7", # TODO: Read from VERSION.txt - currently manual sync required
version = "4.15.8", # TODO: Read from VERSION.txt - currently manual sync required
bazel_compatibility = [">=7.0.0"],
)

View file

@ -7,6 +7,15 @@ Version 4.next
- CDCL core for SMT queries. It extends the SAT engine with theory solver plugins.
- add global incremental pre-processing for the legacy core.
Version 4.15.8
==============
- Fix release pipeline to publish all supported python wheels properly.
- Re-enable npm tokens for publishing npm pacages.
Version 4.15.7
==============
- Bug fix release
Version 4.15.6
==============
- Optimize mpz (multi-precision integer) implementation using pointer tagging to reduce memory footprint and improve performance.

View file

@ -1 +1 @@
4.15.7.0
4.15.8.0