Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

v1.1.1 #31

Merged
merged 2 commits into from
Aug 5, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions .github/workflows/python-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion meson.build
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
project('extype',
'cpp',
version: '1.1.0',
version: '1.1.1',
default_options: [
'buildtype=release',
'c_std=c17',
Expand Down
2 changes: 2 additions & 0 deletions src/extype/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1,3 @@
from .extension_utils import extension, extend_type_with

__version__ = "1.1.1"