From b051510afff8b211eb13514768dc3a1304e2de87 Mon Sep 17 00:00:00 2001 From: sean Date: Wed, 26 Apr 2023 17:13:27 -0400 Subject: [PATCH 1/2] Declare poetry version when building wheels. --- .github/workflows/pythonpublish.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/pythonpublish.yml b/.github/workflows/pythonpublish.yml index 685de00..85e19f8 100644 --- a/.github/workflows/pythonpublish.yml +++ b/.github/workflows/pythonpublish.yml @@ -21,6 +21,8 @@ jobs: python-version: ${{ matrix.python-version }} - name: Install Poetry (Platform ${{ matrix.os }}) uses: abatilo/actions-poetry@v2.1.3 + with: + poetry-version: ${{ matrix.poetry-version }} - name: Build ${{ matrix.os }} binaries run: poetry build - name: Store dist artifacts From 32649c3038e89ebcf746db69226bacc487d2eb3e Mon Sep 17 00:00:00 2001 From: sean Date: Wed, 26 Apr 2023 17:15:56 -0400 Subject: [PATCH 2/2] bump version to v1.0.0-beta1 [ci skip] --- pyproject.toml | 4 ++-- yesql/__init__.py | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 00328ea..c009bf4 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "yesql" -version = "1.0.0b0" +version = "1.0.0b1" description = "yesql is a SQL-first data access library that will replace your ORM." authors = ["Sean Stewart "] license = "MIT" @@ -76,7 +76,7 @@ follow_imports = "silent" exclude = ".*tests/.*|.*docs/.*" [tool.bumpver] -current_version = "v1.0.0-beta0" +current_version = "v1.0.0-beta1" version_pattern = "vMAJOR.MINOR.PATCH[-TAGNUM]" commit_message = "bump version to {new_version} [ci skip]" tag = false diff --git a/yesql/__init__.py b/yesql/__init__.py index 875eba3..0b1ba6d 100644 --- a/yesql/__init__.py +++ b/yesql/__init__.py @@ -1,3 +1,3 @@ from .api import * -__version__ = "1.0.0b0" +__version__ = "1.0.0b1"