We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6eef83d commit 9f33c2cCopy full SHA for 9f33c2c
2 files changed
docs/whatsnew.rst
@@ -3,8 +3,8 @@
3
What's New
4
**********
5
6
-What's new in version 0.8.4 (2024-02-21)
7
-========================================
+What's new in version 1.0.0 (2024-02-21)
+=========================================
8
This is a minor bug-fix release containing a small number of fixes:
9
10
- Fix for Python 3.12's removal of the imp module
src/future/__init__.py
@@ -84,9 +84,9 @@
84
__author__ = 'Ed Schofield'
85
__license__ = 'MIT'
86
__copyright__ = 'Copyright 2013-2024 Python Charmers (https://pythoncharmers.com)'
87
-__ver_major__ = 0
88
-__ver_minor__ = 18
89
-__ver_patch__ = 4
+__ver_major__ = 1
+__ver_minor__ = 0
+__ver_patch__ = 0
90
__ver_sub__ = ''
91
__version__ = "%d.%d.%d%s" % (__ver_major__, __ver_minor__,
92
__ver_patch__, __ver_sub__)
0 commit comments