From 95e73006044517714b83c094c269278d0ff40df6 Mon Sep 17 00:00:00 2001 From: Delphine LEMIRE Date: Fri, 17 Feb 2023 14:42:02 +0100 Subject: [PATCH 1/3] Update version of github actions on the template project (#4167) --- {{cookiecutter.project_slug}}/.github/workflows/ci.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/{{cookiecutter.project_slug}}/.github/workflows/ci.yml b/{{cookiecutter.project_slug}}/.github/workflows/ci.yml index 3c8ea8780..5a149820a 100644 --- a/{{cookiecutter.project_slug}}/.github/workflows/ci.yml +++ b/{{cookiecutter.project_slug}}/.github/workflows/ci.yml @@ -27,7 +27,7 @@ jobs: uses: actions/checkout@v3 - name: Set up Python - uses: actions/setup-python@v3 + uses: actions/setup-python@v4 with: python-version: "3.10" cache: pip @@ -36,7 +36,7 @@ jobs: # Consider using pre-commit.ci for open source project {%- endif %} - name: Run pre-commit - uses: pre-commit/action@v2.0.3 + uses: pre-commit/action@v3.0.0 # With no caching at all the entire ci process takes 4m 30s to complete! pytest: @@ -85,7 +85,7 @@ jobs: {%- else %} - name: Set up Python - uses: actions/setup-python@v3 + uses: actions/setup-python@v4 with: python-version: "3.10" cache: pip From 414122e52408c1dd11fb3d2690120bcb7d91b483 Mon Sep 17 00:00:00 2001 From: luzfcb Date: Fri, 17 Feb 2023 13:42:38 +0000 Subject: [PATCH 2/3] Update Contributors --- .github/contributors.json | 5 +++++ CONTRIBUTORS.md | 7 +++++++ 2 files changed, 12 insertions(+) diff --git a/.github/contributors.json b/.github/contributors.json index 7920e8caf..b97140005 100644 --- a/.github/contributors.json +++ b/.github/contributors.json @@ -1362,5 +1362,10 @@ "name": "duffn", "github_login": "duffn", "twitter_username": "" + }, + { + "name": "Delphine LEMIRE", + "github_login": "DelphineLemire", + "twitter_username": "" } ] \ No newline at end of file diff --git a/CONTRIBUTORS.md b/CONTRIBUTORS.md index 85b1ae88f..0670ff448 100644 --- a/CONTRIBUTORS.md +++ b/CONTRIBUTORS.md @@ -642,6 +642,13 @@ Listed in alphabetical order. jangeador + + Delphine LEMIRE + + DelphineLemire + + + Demetris Stavrou From 4aa56cb31a1397ffcea855527d1c37d7c64cccca Mon Sep 17 00:00:00 2001 From: github-actions Date: Sat, 18 Feb 2023 02:27:13 +0000 Subject: [PATCH 3/3] Release 2023.02.17 --- CHANGELOG.md | 5 +++++ setup.py | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 2b88bc869..23604fd77 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,11 @@ All enhancements and patches to Cookiecutter Django will be documented in this f +## 2023.02.17 + +### Changed +- Update version of github actions on the template project ([#4167](https://github.com/cookiecutter/cookiecutter-django/pull/4167)) + ## 2023.02.09 ### Changed diff --git a/setup.py b/setup.py index 858d20691..c7566ba70 100644 --- a/setup.py +++ b/setup.py @@ -5,7 +5,7 @@ except ImportError: from distutils.core import setup # We use calendar versioning -version = "2023.02.09" +version = "2023.02.17" with open("README.rst") as readme_file: long_description = readme_file.read()