Skip to content
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
2 changes: 1 addition & 1 deletion .bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 0.1.2
current_version = 0.1.3
commit = True
tag = False
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)(\-(?P<release>[a-z]+)(?P<build>\d+))?
Expand Down
14 changes: 7 additions & 7 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -145,6 +145,13 @@ jobs:
TWINE_PASSWORD: ${{ secrets.PYPI_API_TOKEN }}
run: twine upload dist/*

- name: Get version
if: steps.check_version.outputs.version_changed == 'true'
id: get_version
run: |
version=$(cat VERSION)
echo "version=$version" >> $GITHUB_OUTPUT

- name: Create Release
if: steps.check_version.outputs.version_changed == 'true'
uses: actions/create-release@v1
Expand All @@ -166,10 +173,3 @@ jobs:
**PyPI URL:** https://pypi.org/project/gemma.permifrost/
draft: false
prerelease: false

- name: Get version
if: steps.check_version.outputs.version_changed == 'true'
id: get_version
run: |
version=$(cat VERSION)
echo "version=$version" >> $GITHUB_OUTPUT
10 changes: 0 additions & 10 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,16 +8,6 @@ on:
- 'tests/**'
- 'setup.py'
- 'pyproject.toml'
push:
branches:
- main
- master
paths:
- 'VERSION'
- 'src/**'
- 'tests/**'
- 'setup.py'
- 'pyproject.toml'

env:
PYTHON_VERSION: "3.10"
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.1.2
0.1.3
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"

[project]
name = "gemma.permifrost"
version = "0.1.2"
version = "0.1.3"
description = "Permifrost Permissions - Fork by Gemma Analytics"
readme = "README.md"
license = {text = "MIT"}
Expand Down
2 changes: 1 addition & 1 deletion src/permifrost/__init__.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Managed by bumpversion
__version__ = "0.1.2"
__version__ = "0.1.3"

from permifrost.error import SpecLoadingError

Expand Down