-
Notifications
You must be signed in to change notification settings - Fork 63
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
commit 2c363aa Author: Tobias Kunze <[email protected]> Date: Fri Feb 16 15:17:08 2024 +0100 Bump to development version commit 6dc9c1b Author: Tobias Kunze <[email protected]> Date: Fri Feb 16 15:10:51 2024 +0100 Release v2024.1.0 commit 54510bf Author: Tobias Kunze <[email protected]> Date: Fri Feb 16 13:34:27 2024 +0100 Fix missing ellipsis in global search commit 79f053c Author: Tobias Kunze <[email protected]> Date: Fri Feb 16 12:40:35 2024 +0100 Update release docs commit 6d3107a Author: Tobias Kunze <[email protected]> Date: Fri Feb 16 12:19:44 2024 +0100 Remove antiquated stackexchange link commit aa3b6e4 Author: Tobias Kunze <[email protected]> Date: Fri Feb 16 12:12:41 2024 +0100 Update redirecting/broken URLs commit 3dedb24 Author: Tobias Kunze <[email protected]> Date: Fri Feb 16 12:08:16 2024 +0100 Remove old TODO items commit e33919c Author: Tobias Kunze <[email protected]> Date: Fri Feb 16 12:03:24 2024 +0100 Remove Python 3.7 compatibility commit bee2859 Author: Tobias Kunze <[email protected]> Date: Fri Feb 16 12:00:12 2024 +0100 Update translation percentages commit 59fdb65 Author: Tobias Kunze <[email protected]> Date: Fri Feb 16 12:00:01 2024 +0100 Add Dutch and Italian translations commit 5e17560 Author: pretalx-translations <[email protected]> Date: Fri Feb 16 11:50:44 2024 +0100 Translations update: German and Dutch Co-authored-by: Florian Mösch <[email protected]> Co-authored-by: Tobias Kunze <[email protected]> Co-authored-by: Stefano Campus <[email protected]> Co-authored-by: Carole_Grootenboer <[email protected]> Signed-off-by: Marco A. Gutierrez <[email protected]>
- Loading branch information
Showing
26 changed files
with
1,483 additions
and
1,241 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -18,34 +18,32 @@ Boarding checks | |
10. Are there any ``@pytest.mark.xfail`` that you have to resolve? | ||
11. Are the :ref:`changelog` well-phrased and complete? | ||
12. Are there `open pull requests <https://github.com/pretalx/pretalx/pulls>`_ that you should merge? | ||
13. Are all tests passing in CI? | ||
14. Have you written (and not pushed) a blog post? It should contain at least major features and all contributors involved in the release. | ||
|
||
System checks | ||
------------- | ||
|
||
1. Are you in the branch and commit you think you are in? | ||
2. Are all tests passing? | ||
3. Have you deployed the release-ready commit to an instance? Did the upgrade work? | ||
4. Have you written (and not pushed) a blog post? It should contain at least major features and all contributors involved in the release. | ||
5. Have you told people who may need to know about the release ahead of time? (Plugin developers, clients, self-hosting instances, etc.) | ||
1. Deploy the release-ready commit to an instance. Check if the upgrade and the instance works. | ||
2. Clone pretalx into a clean repo: ``git clone [email protected]:pretalx/pretalx pretalx-release && mkvirtualenv pretalx-release && pip install -e .[dev]`` | ||
3. Run ``pytest`` **locally**. | ||
5. Run ``check-manifest`` **locally**. | ||
|
||
Take-off and landing | ||
-------------------- | ||
|
||
1. Clone pretalx into a clean repo: ``git clone [email protected]:pretalx/pretalx pretalx-release && mkvirtualenv pretalx-release && pip install -e .[dev]`` | ||
2. Run ``check-manifest`` **locally**. | ||
3. Bump version in ``src/pretalx/__init__.py``. | ||
4. Add the release to the :ref:`changelog`. | ||
5. Make a commit with the message ``Release vx.y.z`` | ||
6. Tag the commit: ``git tag vx.y.z -m`` | ||
7. Remove old build artefacts: ``rm -rf dist/ build/ pretalx.egg-info`` | ||
8. Build a new release: ``python -m build -n`` | ||
9. Upload the release: ``twine upload dist/pretalx-x.y.z.tar.gz`` | ||
10. Push the release: ``git push && git push --tags`` | ||
11. Install/update the package somewhere. | ||
12. Add the release on `GitHub <https://github.com/pretalx/pretalx/releases>`_ (upload the archive you uploaded to PyPI, and add a link to the correct section of the :ref:`changelog`) | ||
13. Push the blog post. | ||
14. Upgrade `the docker repository <https://github.com/pretalx/pretalx-docker>`_ to the current commit **and tag the commit as vx.y.z**. | ||
15. Increment version number to version+1.dev0 in ``src/pretalx/__init__.py``. | ||
16. Update version numbers in update checker and deploy. | ||
17. ``rm -rf pretalx-release && deactivate && rmvirtualenv pretalx-release`` | ||
18. Update any plugins waiting for the new release. | ||
1. Bump version in ``src/pretalx/__init__.py``. | ||
2. Add the release to the :ref:`changelog`. | ||
3. Make a release commit: ``RELEASE=vx.y.z && git commit -am "Release $RELEASE" && git tag $RELEASE -m "Release $RELEASE"`` | ||
4. Build a new release: ``rm -rf dist/ build/ pretalx.egg-info && python -m build -n`` | ||
5. Upload the release: ``twine upload dist/pretalx-x.y.z.tar.gz`` | ||
6. Push the release: ``git push && git push --tags`` | ||
7. Install/update the package somewhere. | ||
8. Add the release on `GitHub <https://github.com/pretalx/pretalx/releases>`_ (upload the archive you uploaded to PyPI, and add a link to the correct section of the :ref:`changelog`) | ||
9. Publish the blog post. | ||
10. Upgrade `the docker repository <https://github.com/pretalx/pretalx-docker>`_ to the current commit **and tag the commit as vx.y.z**. | ||
11. Increment version number to version+1.dev0 in ``src/pretalx/__init__.py``. | ||
12. Update version numbers in update checker and deploy. | ||
13. ``rm -rf pretalx-release && deactivate && rmvirtualenv pretalx-release`` | ||
14. Update any plugins waiting for the new release. | ||
15. Check if the docker image build was successful. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
__version__ = "2023.2.0.dev0" | ||
__version__ = "2024.2.0.dev0" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.