Skip to content

Commit

Permalink
Update final release version.
Browse files Browse the repository at this point in the history
  • Loading branch information
adiroiban committed Aug 28, 2023
1 parent bd63ecd commit a1019a3
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 49 deletions.
47 changes: 4 additions & 43 deletions NEWS.rst
Original file line number Diff line number Diff line change
Expand Up @@ -8,53 +8,14 @@ https://twisted.org/trac/ticket/<number>

.. towncrier release notes start
Twisted 23.8.0.rc1 (2023-08-18)
===============================

No significant changes.


Conch
-----

No significant changes.


Web
---

No significant changes.


Mail
----

No significant changes.

Words
-----

No significant changes.


Names
-----

No significant changes.


Trial
-----

No significant changes.


Twisted 23.8.0.rc1 (2023-08-17)
===============================
Twisted 23.8.0. (2023-08-28)
============================

This is the last release with support for Python 3.7.

No changes since 23.8.0.rc1.


Features
--------
Expand Down
2 changes: 1 addition & 1 deletion src/twisted/_version.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,5 @@

from incremental import Version

__version__ = Version("Twisted", 23, 8, 0, release_candidate=1)
__version__ = Version("Twisted", 23, 8, 0)
__all__ = ["__version__"]
4 changes: 1 addition & 3 deletions src/twisted/internet/glib2reactor.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,7 @@

from ._deprecate import deprecatedGnomeReactor

deprecatedGnomeReactor(
"glib2reactor", Version("Twisted", 23, 8, 0, release_candidate=1)
)
deprecatedGnomeReactor("glib2reactor", Version("Twisted", 23, 8, 0))

from twisted.internet import gtk2reactor

Expand Down
2 changes: 1 addition & 1 deletion src/twisted/internet/gtk2reactor.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@

from ._deprecate import deprecatedGnomeReactor

deprecatedGnomeReactor("gtk2reactor", Version("Twisted", 23, 8, 0, release_candidate=1))
deprecatedGnomeReactor("gtk2reactor", Version("Twisted", 23, 8, 0))

# System Imports
import sys
Expand Down
2 changes: 1 addition & 1 deletion src/twisted/internet/gtk3reactor.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@

from ._deprecate import deprecatedGnomeReactor

deprecatedGnomeReactor("gtk3reactor", Version("Twisted", 23, 8, 0, release_candidate=1))
deprecatedGnomeReactor("gtk3reactor", Version("Twisted", 23, 8, 0))

from twisted.internet import gireactor

Expand Down

0 comments on commit a1019a3

Please sign in to comment.