We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 21b6e46 commit c62b079Copy full SHA for c62b079
.github/workflows/build.yml
@@ -191,9 +191,11 @@ jobs:
191
strategy:
192
matrix:
193
os:
194
+ # List of available: https://github.com/actions/runner-images
195
+ # Note: "*-large" runners cannot use free GH actions credits
196
- windows-2022
- - macos-13 # intel-based macos
- - macos-14 # Apple silicon
197
+ - macos-15-intel # intel silicon
198
+ - macos-15 # ARM64 silicon
199
- ubuntu-22.04
200
- ubuntu-22.04-arm # aarch64
201
include:
src/systemrdl/__about__.py
@@ -1,2 +1,2 @@
1
-version_info = (1, 32, 0)
+version_info = (1, 32, 1)
2
__version__ = ".".join([str(n) for n in version_info])
0 commit comments