From 8393f5bbbc7fb5bfb966a70ca2cd95e2d06c1d21 Mon Sep 17 00:00:00 2001 From: Sean Gillies Date: Mon, 27 Jan 2025 14:57:21 -0700 Subject: [PATCH] This is 3.0a1 --- AUTHORS.txt | 20 ++++++++++++++------ CHANGES.txt | 4 ++-- src/affine.py | 2 +- 3 files changed, 17 insertions(+), 9 deletions(-) diff --git a/AUTHORS.txt b/AUTHORS.txt index cfa0c5f..b01ce36 100644 --- a/AUTHORS.txt +++ b/AUTHORS.txt @@ -1,10 +1,18 @@ Authors ======= -- Sean Gillies -- Steven Ring -- Mike Taves -- Kevin Wurster -- Todd Small -- Juan Luis Cano Rodríguez +- Casey Duncan +- Sean Gillies +- Denis Rykov +- Juan Luis Cano Rodríguez +- Kevin Wurster - Kirill Kouzoubov +- Loïc Dutrieux +- Michael Wess +- Mike Taves +- Nick Maxwell +- Rotzbua +- Ryan Grout +- Steven Ring +- Stuart Axon +- Vincent Sarago diff --git a/CHANGES.txt b/CHANGES.txt index 4157ae0..6298fd2 100644 --- a/CHANGES.txt +++ b/CHANGES.txt @@ -1,8 +1,8 @@ CHANGES ======= -3.0a1 (TBD) ------------ +3.0a1 (2025-01-27) +------------------ - Type hint annotations for functions and methods are complete (#121). - Affine raises ValueError if initialized with values for g, h, and i that are diff --git a/src/affine.py b/src/affine.py index 0f8ccc2..8e81264 100644 --- a/src/affine.py +++ b/src/affine.py @@ -43,7 +43,7 @@ __all__ = ["Affine"] __author__ = "Sean Gillies" -__version__ = "3.0dev" +__version__ = "3.0a1" EPSILON: float = 1e-5 EPSILON2: float = 1e-10