Skip to content

Commit dce2f3d

Browse files
add release notes
Signed-off-by: Nikolaj Bjorner <[email protected]>
1 parent b3ef74c commit dce2f3d

File tree

3 files changed

+9
-3
lines changed

3 files changed

+9
-3
lines changed

RELEASE_NOTES.md

+4
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,10 @@ Version 4.next
1212

1313
Version 4.12.4
1414
==============
15+
- Re-release fixing a few issues with 4.12:
16+
- 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.
17+
- Missing release of arm64 for Ubuntu.
18+
- 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.
1519

1620
Version 4.12.3
1721
==============

scripts/mk_nuget_task.py

+4-2
Original file line numberDiff line numberDiff line change
@@ -28,10 +28,12 @@ def mk_dir(d):
2828
'x64-win' : ('dll', 'win-x64'),
2929
'x86-win' : ('dll', 'win-x86'),
3030
'x64-osx' : ('dylib', 'osx-x64'),
31-
'arm-glibc-2.35' : ('so', 'linux-arm64'),
32-
'arm64-osx' : ('dylib', 'osx-arm64'),
3331
'debian' : ('so', 'linux-x64') }
3432

33+
# Nuget not supported for ARM
34+
#'arm-glibc-2.35' : ('so', 'linux-arm64'),
35+
#'arm64-osx' : ('dylib', 'osx-arm64'),
36+
3537

3638

3739
def classify_package(f, arch):

scripts/release.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -583,7 +583,7 @@ stages:
583583

584584
# Enable on release:
585585
- job: PyPIPublish
586-
condition: eq(1,0)
586+
condition: eq(1,1)
587587
displayName: "Publish to PyPI"
588588
pool:
589589
vmImage: "ubuntu-latest"

0 commit comments

Comments
 (0)