From cca95c563511aa4c02975c3bf343507ae99f45ff Mon Sep 17 00:00:00 2001 From: dgw Date: Wed, 24 Apr 2024 18:52:05 -0500 Subject: [PATCH 1/4] NEWS: link to Sopel 8 upgrade guide! --- NEWS | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/NEWS b/NEWS index e7e827b50..f236111d4 100644 --- a/NEWS +++ b/NEWS @@ -8,6 +8,9 @@ Changes between 7.1.9 and 8.0.0 Highlights ---------- +Detailed coverage of the major changes can be found in the dedicated +[Sopel 8 upgrade guide][sopel-8-migration]. + **For users:** * Python 3.8+ is now required @@ -357,6 +360,7 @@ Housekeeping changes [pronoun-base]: https://github.com/lucasew/svelte-pronounisland [pronoun-ours]: https://github.com/sopel-irc/pronoun-service [rate-decorator]: https://sopel.chat/docs/plugin/decorators#sopel.plugin.rate +[sopel-8-migration]: https://sopel.chat/usage/installing/upgrading-to-sopel-8/ [sopel-bugzilla]: https://pypi.org/project/sopel-bugzilla/ [sopel-help]: https://pypi.org/project/sopel-help/ [sopel-iplookup]: https://pypi.org/project/sopel-iplookup/ From 50c5c4c5b1f7fae100c700ee96e79de2d5fb8701 Mon Sep 17 00:00:00 2001 From: dgw Date: Wed, 24 Apr 2024 19:52:21 -0500 Subject: [PATCH 2/4] NEWS: self-referential inclusion of final-prep PR --- NEWS | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/NEWS b/NEWS index f236111d4..fe7647ed5 100644 --- a/NEWS +++ b/NEWS @@ -331,7 +331,7 @@ Housekeeping changes [#2178][], [#2182][], [#2226][], [#2238][], [#2239][], [#2257][], [#2275][], [#2276][], [#2323][], [#2379][], [#2386][], [#2409][], [#2424][], [#2426][], [#2442][], [#2489][], [#2494][], [#2495][], [#2496][], [#2533][], [#2539][], - [#2543][], [#2550][], [#2558][], [#2574][], [#2600][]] + [#2543][], [#2550][], [#2558][], [#2574][], [#2600][], [#2606][]] * Switched from Travis CI to GitHub Actions and incrementally improved tests [[#2075][], [#2078][], [#2123][], [#2188][], [#2262][], [#2335][], [#2342][], [#2381][], [#2452][], [#2453][], [#2458][], [#2505][], [#2519][], [#2543][]] @@ -621,6 +621,7 @@ Housekeeping changes [#2584]: https://github.com/sopel-irc/sopel/pull/2584 [#2600]: https://github.com/sopel-irc/sopel/pull/2600 [#2601]: https://github.com/sopel-irc/sopel/pull/2601 +[#2606]: https://github.com/sopel-irc/sopel/pull/2606 Changes between 7.1.8 and 7.1.9 From 2613c56b470bdf5c40aa330ebefe65ff20f8d96e Mon Sep 17 00:00:00 2001 From: dgw Date: Sun, 26 May 2024 19:47:41 -0500 Subject: [PATCH 3/4] Release 8.0.0 Have to commit this so it can be integrated with the website build. Not yet clear if the release tag will point to this commit or a merge. --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 5746b069a..86b27e7a1 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -11,7 +11,7 @@ namespaces = false [project] name = "sopel" -version = "8.0.0.dev0" +version = "8.0.0" description = "Simple and extensible IRC bot" maintainers = [ { name="dgw", email="dgw@technobabbl.es" }, From 3261d9c714fdc05ea373cc71842eb70e2f3cbb6b Mon Sep 17 00:00:00 2001 From: dgw Date: Sun, 26 May 2024 19:49:30 -0500 Subject: [PATCH 4/4] meta: remove emails from author/maintainer metadata MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Since pypi/warehouse#9400 and pypi/warehouse#14813 (perhaps others too) remain unresolved, let's keep our metadata simple. Incomplete metadata— i.e. the email addresses this commit removes—is the only thing worse than straight-up *incorrect* metadata. We don't want any author or maintainer names to be attached to the wrong email addresses on the published package page. --- pyproject.toml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 86b27e7a1..bc7dc8e49 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -14,12 +14,12 @@ name = "sopel" version = "8.0.0" description = "Simple and extensible IRC bot" maintainers = [ - { name="dgw", email="dgw@technobabbl.es" }, - { name="Florian Strzelecki", email="florian.strzelecki@gmail.com" }, + { name="dgw" }, + { name="Florian Strzelecki" }, ] authors = [ - { name="dgw", email="dgw@technobabbl.es" }, - { name="Florian Strzelecki", email="florian.strzelecki@gmail.com" }, + { name="dgw" }, + { name="Florian Strzelecki" }, { name="Sean B. Palmer" }, { name="Else Powell" }, { name="Elad Alfassa" },