Skip to content
This repository has been archived by the owner on Oct 7, 2024. It is now read-only.

Commit

Permalink
Actions, version bump
Browse files Browse the repository at this point in the history
  • Loading branch information
mariofix committed Jul 10, 2023
1 parent 8640878 commit db2fbc8
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 9 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/tests_release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
uses: abatilo/actions-poetry@v2
with:
poetry-version: ${{ matrix.poetry-version }}
- name: Install django-payments-khipu
- name: Install django-payments-flow
run: poetry install --with dev
- name: Run Tests
run: poetry run pytest
Expand All @@ -50,8 +50,8 @@ jobs:
uses: abatilo/actions-poetry@v2
with:
poetry-version: ${{ matrix.poetry-version }}
- name: Install django-payments-khipu
run: poetry install --with docs,dev
- name: Install django-payments-flow
run: poetry install --with dev
- name: Deploy Docs
run: poetry run mkdocs gh-deploy --force

Expand All @@ -67,7 +67,7 @@ jobs:
needs: crosscheck
environment:
name: pypi
url: https://pypi.org/p/django-payments-khipu
url: https://pypi.org/p/django-payments-flow
permissions:
id-token: write
steps:
Expand All @@ -76,9 +76,9 @@ jobs:
uses: actions/setup-python@v4
- name: Set Up Poetry
uses: abatilo/actions-poetry@v2
- name: Install django-payments-khipu
- name: Install django-payments-flow
run: poetry install --with dev
- name: Build django-payments-khipu
- name: Build django-payments-flow
run: poetry build
- name: Publish package distributions to PyPI
uses: pypa/gh-action-pypi-publish@release/v1
2 changes: 1 addition & 1 deletion django_payments_flow/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
__version__ = "0.1.0"
__version__ = "0.1.1"

__all__ = ["__version__"]
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "django-payments-flow"
version = "0.1.0"
version = "0.1.1"
description = "Soporte Flow para Django Payments"
authors = ["Mario Hernandez <mariofix@proton.me>"]
license = "MIT"
Expand Down
2 changes: 1 addition & 1 deletion tests/test_app.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@


def test_version():
assert __version__ == "0.1.0"
assert __version__ == "0.1.1"

0 comments on commit db2fbc8

Please sign in to comment.