Skip to content

Commit

Permalink
Merge pull request #269 from cordada/deploy/v0.8.0
Browse files Browse the repository at this point in the history
Deploy release v0.8.0
  • Loading branch information
svillegas-cdd authored Oct 24, 2023
2 parents 4eb7356 + 383d6b9 commit 32fa2af
Show file tree
Hide file tree
Showing 13 changed files with 468 additions and 25 deletions.
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.7.0
current_version = 0.8.0
commit = True
tag = False

Expand Down
6 changes: 6 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,9 @@ version: 2
updates:
- package-ecosystem: pip
directory: /
groups:
development-dependencies:
dependency-type: development
schedule:
interval: monthly
open-pull-requests-limit: 3
Expand All @@ -16,6 +19,9 @@ updates:

- package-ecosystem: github-actions
directory: /
groups:
production-dependencies:
dependency-type: production
schedule:
interval: monthly
commit-message:
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/ci-cd.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,7 @@ jobs:
- workflow_config

uses: ./.github/workflows/ci.yaml
secrets: inherit

# -----END CI Job-----

Expand Down
11 changes: 6 additions & 5 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ jobs:

steps:
- name: Check Out VCS Repository
uses: actions/checkout@v3.5.3
uses: actions/checkout@v4.1.0

- name: Set Up Python ${{ matrix.python_version }}
uses: actions/setup-python@v4.7.0
Expand All @@ -45,7 +45,7 @@ jobs:
run: make python-virtualenv PYTHON_VIRTUALENV_DIR="venv"

- name: Restoring/Saving Cache
uses: actions/cache@v3.3.1
uses: actions/cache@v3.3.2
with:
path: "venv"
key: py-v1-deps-${{ runner.os }}-${{ matrix.python_version }}-${{ hashFiles('requirements.txt') }}-${{ hashFiles('requirements_test.txt') }}-${{ hashFiles('requirements_release.txt') }}-${{ hashFiles('Makefile', 'make/**.mk') }}
Expand Down Expand Up @@ -93,15 +93,15 @@ jobs:

steps:
- name: Check Out VCS Repository
uses: actions/checkout@v3.5.3
uses: actions/checkout@v4.1.0

- name: Set Up Python ${{ matrix.python_version }}
uses: actions/setup-python@v4.7.0
with:
python-version: "${{ matrix.python_version }}"

- name: Restoring/Saving Cache
uses: actions/cache@v3.3.1
uses: actions/cache@v3.3.2
with:
path: "venv"
key: py-v1-deps-${{ runner.os }}-${{ matrix.python_version }}-${{ hashFiles('requirements.txt') }}-${{ hashFiles('requirements_test.txt') }}-${{ hashFiles('requirements_release.txt') }}-${{ hashFiles('Makefile', 'make/**.mk') }}
Expand Down Expand Up @@ -140,12 +140,13 @@ jobs:
- name: Upload coverage reports to Codecov
uses: codecov/codecov-action@v3.1.4
with:
token: ${{ secrets.CODECOV_TOKEN }}
directory: ./test-reports/coverage/
fail_ci_if_error: true

- name: Store Artifacts
if: ${{ always() }}
uses: actions/upload-artifact@v3.1.2
uses: actions/upload-artifact@v3.1.3
with:
name: test_reports_${{ matrix.python_version }}
path: test-reports/
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/dependency-review.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,9 @@ jobs:

steps:
- name: Check Out VCS Repository
uses: actions/checkout@v3.5.3
uses: actions/checkout@v4.1.0

- name: Dependency Review
uses: actions/dependency-review-action@v3.0.6
uses: actions/dependency-review-action@v3.1.0
with:
fail-on-severity: critical
4 changes: 2 additions & 2 deletions .github/workflows/deploy.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ jobs:

steps:
- name: Check Out VCS Repository
uses: actions/checkout@v3.5.3
uses: actions/checkout@v4.1.0

- name: Set Up Python
id: set_up_python
Expand All @@ -47,7 +47,7 @@ jobs:
python-version: "3.10.9"

- name: Restoring/Saving Cache
uses: actions/cache@v3.3.1
uses: actions/cache@v3.3.2
with:
path: "venv"
key: py-v1-deps-${{ runner.os }}-${{ steps.set_up_python.outputs.python-version }}-${{ hashFiles('requirements.txt') }}-${{ hashFiles('requirements_test.txt') }}-${{ hashFiles('requirements_release.txt') }}-${{ hashFiles('Makefile', 'make/**.mk') }}
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ jobs:

steps:
- name: Check Out VCS Repository
uses: actions/checkout@v3.5.3
uses: actions/checkout@v4.1.0

- name: Set Up Python
id: set_up_python
Expand All @@ -47,7 +47,7 @@ jobs:
run: make python-virtualenv PYTHON_VIRTUALENV_DIR="venv"

- name: Restoring/Saving Cache
uses: actions/cache@v3.3.1
uses: actions/cache@v3.3.2
with:
path: "venv"
key: py-v1-deps-${{ runner.os }}-${{ steps.set_up_python.outputs.python-version }}-${{ hashFiles('requirements.txt') }}-${{ hashFiles('requirements_test.txt') }}-${{ hashFiles('requirements_release.txt') }}-${{ hashFiles('Makefile', 'make/**.mk') }}
Expand All @@ -68,7 +68,7 @@ jobs:
make dist
- name: Store Artifacts
uses: actions/upload-artifact@v3.1.2
uses: actions/upload-artifact@v3.1.3
with:
name: release
path: ${{ env.ARTIFACTS_PATH }}/
Expand Down
12 changes: 12 additions & 0 deletions HISTORY.rst
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,18 @@ History
unreleased (YYYY-MM-DD)
+++++++++++++++++++++++

0.8.0 (2023-10-23)
++++++++++++++++++

- (PR #258, 2023-09-07) Add Codecov repository upload token; update Codecov status badge
- (PR #261, 2023-09-27) Add dependency groups to Dependabot configuration
- (PR #264, 2023-09-27) Allow GitHub Actions to pass secrets from CI/CD to CI workflow
- (PR #262, 2023-09-27) chore: Bump the production-dependencies group with 4 updates
- (PR #266, 2023-10-17) Add missing tests for `commands.createsuperuser`
- (PR #263, 2023-10-23) chore(deps): Bump tox from 3.26.0 to 4.11.3
- (PR #253, 2023-10-23) chore(deps): Bump wheel from 0.40.0 to 0.41.2
- (PR #267, 2023-10-23) chore(deps): Bump psycopg2 from 2.9.3 to 2.9.9

0.7.0 (2023-06-09)
++++++++++++++++++

Expand Down
4 changes: 2 additions & 2 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,8 @@ Status
:target: https://github.com/fyntex/fd-django-accounts/actions/workflows/ci-cd.yaml?query=branch:develop
:alt: CI status

.. image:: https://codecov.io/gh/fyntex/fd-django-accounts/branch/develop/graph/badge.svg
:target: https://codecov.io/gh/fyntex/fd-django-accounts
.. image:: https://codecov.io/gh/cordada/fd-django-accounts/graph/badge.svg?token=XL0EeyLbL3
:target: https://codecov.io/gh/cordada/fd-django-accounts
:alt: Code coverage

.. image:: https://api.codeclimate.com/v1/badges/30ac22150dbf8549b989/maintainability
Expand Down
2 changes: 1 addition & 1 deletion fd_dj_accounts/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@
"""


__version__ = '0.7.0'
__version__ = '0.8.0'


default_app_config = 'fd_dj_accounts.apps.AccountsAppConfig'
2 changes: 1 addition & 1 deletion requirements_release.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@
bumpversion==0.5.3
setuptools==68.0.0
twine==4.0.2
wheel==0.40.0
wheel==0.41.2
4 changes: 2 additions & 2 deletions requirements_test.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,5 @@
coverage==7.2.7
flake8==6.0.0
mypy==1.4.1
psycopg2==2.9.3 --no-binary psycopg2
tox==3.26.0
psycopg2==2.9.9 --no-binary psycopg2
tox==4.11.3
Loading

0 comments on commit 32fa2af

Please sign in to comment.