Skip to content

Commit

Permalink
Merge pull request #3 from seandstewart/sean/initial-release
Browse files Browse the repository at this point in the history
Finish GH Publish Job
  • Loading branch information
seandstewart authored Apr 26, 2023
2 parents c76ade9 + 32649c3 commit 54e6ce3
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
2 changes: 2 additions & 0 deletions .github/workflows/pythonpublish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,8 @@ jobs:
python-version: ${{ matrix.python-version }}
- name: Install Poetry (Platform ${{ matrix.os }})
uses: abatilo/[email protected]
with:
poetry-version: ${{ matrix.poetry-version }}
- name: Build ${{ matrix.os }} binaries
run: poetry build
- name: Store dist artifacts
Expand Down
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -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 <[email protected]>"]
license = "MIT"
Expand Down Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion yesql/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
from .api import *

__version__ = "1.0.0b0"
__version__ = "1.0.0b1"

0 comments on commit 54e6ce3

Please sign in to comment.