From 71f00373d0bf2fbbcac1dd5a370745e9c976039a Mon Sep 17 00:00:00 2001 From: Neriya Cohen Date: Sat, 5 Aug 2023 23:47:14 +0300 Subject: [PATCH 1/2] Update python-publish.yml --- .github/workflows/python-publish.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/python-publish.yml b/.github/workflows/python-publish.yml index 064a307..ae2d574 100644 --- a/.github/workflows/python-publish.yml +++ b/.github/workflows/python-publish.yml @@ -64,6 +64,10 @@ jobs: run: | python -m pip install --upgrade pip pip install build + - name: Prepare MSVC + uses: bus1/cabuild/action/msdevshell@v1 + with: + architecture: x64 - name: Build package run: python -m build - name: Upload Artifact From ac17184f65928cfa090d7101c052455ceb63b568 Mon Sep 17 00:00:00 2001 From: Neriya Cohen Date: Sat, 5 Aug 2023 23:49:44 +0300 Subject: [PATCH 2/2] v1.1.1 --- meson.build | 2 +- src/extype/__init__.py | 2 ++ 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/meson.build b/meson.build index 4016607..ea47c21 100644 --- a/meson.build +++ b/meson.build @@ -1,6 +1,6 @@ project('extype', 'cpp', - version: '1.1.0', + version: '1.1.1', default_options: [ 'buildtype=release', 'c_std=c17', diff --git a/src/extype/__init__.py b/src/extype/__init__.py index cd5f01f..a014626 100644 --- a/src/extype/__init__.py +++ b/src/extype/__init__.py @@ -1 +1,3 @@ from .extension_utils import extension, extend_type_with + +__version__ = "1.1.1" \ No newline at end of file