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 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"