From 0710ec670a3016bcb19457e66a4e863214d1e588 Mon Sep 17 00:00:00 2001 From: Fabian Date: Tue, 2 May 2023 14:18:13 +0200 Subject: [PATCH 1/3] update release notes --- RELEASE_NOTES.rst | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/RELEASE_NOTES.rst b/RELEASE_NOTES.rst index 4f9d694f..6ba03f73 100644 --- a/RELEASE_NOTES.rst +++ b/RELEASE_NOTES.rst @@ -9,8 +9,12 @@ Release Notes -Upcoming Release -================ +.. Upcoming Release +.. ================ + +Version 0.2.11 +============== + * With this release, we change the license from copyleft GPLv3 to the more liberal MIT license with the consent of all major contributors `#263 `_. * Added 1-axis horizontal, 1-axis tilted horizontal, 1-axis vertical, and 2-axis tracking options for solar PV; e.g. ``cutout.pv(tracking='horizontal')``. From 68ccf1077f53c7fe1efbceae6088bd0840ce3dd9 Mon Sep 17 00:00:00 2001 From: Fabian Date: Tue, 2 May 2023 14:43:05 +0200 Subject: [PATCH 2/3] update setup.py license classifier --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 462699e5..4fb0e426 100644 --- a/setup.py +++ b/setup.py @@ -51,7 +51,7 @@ "Development Status :: 3 - Alpha", "Environment :: Console", "Intended Audience :: Science/Research", - "License :: OSI Approved :: MIT", + "License :: OSI Approved :: MIT License", "Natural Language :: English", "Operating System :: OS Independent", ], From 3fa66aebeb599998d4b0c53c1389cf86feb36122 Mon Sep 17 00:00:00 2001 From: Fabian Date: Tue, 2 May 2023 14:56:44 +0200 Subject: [PATCH 3/3] deploy.yml: update pypa version --- .github/workflows/deploy.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index ae7bd40e..285f10cd 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -34,7 +34,7 @@ jobs: . - name: Publish distribution 📦 to PyPI if: startsWith(github.ref, 'refs/tags') - uses: pypa/gh-action-pypi-publish@release/v1 + uses: pypa/gh-action-pypi-publish@master with: user: ${{ secrets.PYPI_USERNAME }} password: ${{ secrets.PYPI_TOKEN }}