From 4cf77f16fcae1abe8101e168f83abf600dbc8727 Mon Sep 17 00:00:00 2001 From: "Jason R. Coombs" Date: Fri, 29 Nov 2024 14:39:22 -0500 Subject: [PATCH] Update changelog for 6.0.0 --- changelog/1024.misc.rst | 1 - changelog/1116.bugfix.rst | 1 - changelog/1121.removal.rst | 1 - docs/changelog.rst | 21 +++++++++++++++++++++ 4 files changed, 21 insertions(+), 3 deletions(-) delete mode 100644 changelog/1024.misc.rst delete mode 100644 changelog/1116.bugfix.rst delete mode 100644 changelog/1121.removal.rst diff --git a/changelog/1024.misc.rst b/changelog/1024.misc.rst deleted file mode 100644 index 4448c34b..00000000 --- a/changelog/1024.misc.rst +++ /dev/null @@ -1 +0,0 @@ -Only require ``importlib_metadata`` on older Pythons. diff --git a/changelog/1116.bugfix.rst b/changelog/1116.bugfix.rst deleted file mode 100644 index b9f9264b..00000000 --- a/changelog/1116.bugfix.rst +++ /dev/null @@ -1 +0,0 @@ -Restore support for pkginfo 1.11 \ No newline at end of file diff --git a/changelog/1121.removal.rst b/changelog/1121.removal.rst deleted file mode 100644 index 36c5dd10..00000000 --- a/changelog/1121.removal.rst +++ /dev/null @@ -1 +0,0 @@ -Username for PyPI and Test PyPI now defaults to __token__ but no longer overrides a username configured in the environment or supplied on the command line. Workflows still supplying anything other than __token__ for the username when uploading to PyPI or Test PyPI will now fail. Either supply __token__ or do not supply a username at all. \ No newline at end of file diff --git a/docs/changelog.rst b/docs/changelog.rst index 0a6304ae..40240c5e 100644 --- a/docs/changelog.rst +++ b/docs/changelog.rst @@ -12,6 +12,27 @@ schemes recommended by the Python Packaging Authority. .. towncrier release notes start +Twine 6.0.0 (2024-11-29) +------------------------ + +Bugfixes +^^^^^^^^ + +- Restore support for pkginfo 1.11 (`#1116 `_) + + +Deprecations and Removals +^^^^^^^^^^^^^^^^^^^^^^^^^ + +- Username for PyPI and Test PyPI now defaults to __token__ but no longer overrides a username configured in the environment or supplied on the command line. Workflows still supplying anything other than __token__ for the username when uploading to PyPI or Test PyPI will now fail. Either supply __token__ or do not supply a username at all. (`#1121 `_) + + +Misc +^^^^ + +- `#1024 `_ + + Twine 5.1.1 (2024-06-26) ------------------------