From 64f132e5cdada976af437c82159d6652618be25f Mon Sep 17 00:00:00 2001 From: Jonathan Hartley Date: Wed, 9 Jul 2025 12:01:44 -0500 Subject: [PATCH] Bumping major version number due to compatibility break Bumping to 1.0 to indicate we're breaking backward compatibility by a recent merge dropping support for older End-of-lifed versions of Python (2.7, 3.7, 3.8). We probably still run on those, for now, but github CI no longer supports them, so we aren't systematically running tests against them. --- colorama/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/colorama/__init__.py b/colorama/__init__.py index ab62b532..1e8f1b77 100644 --- a/colorama/__init__.py +++ b/colorama/__init__.py @@ -3,5 +3,5 @@ from .ansi import Fore, Back, Style, Cursor from .ansitowin32 import AnsiToWin32 -__version__ = '0.4.7dev1' +__version__ = '1.0.0dev1'