From 11c3b0618d49504342dfbc6bc832d34997c68137 Mon Sep 17 00:00:00 2001 From: Sean Gillies Date: Wed, 25 Sep 2024 19:19:49 -0600 Subject: [PATCH] This is 1.4.0 (#3188) --- AUTHORS.txt | 35 ++++++++++++++++++++++++++++++++++- CHANGES.txt | 8 ++++++++ rasterio/__init__.py | 2 +- 3 files changed, 43 insertions(+), 2 deletions(-) diff --git a/AUTHORS.txt b/AUTHORS.txt index 022ead94..a5e4222d 100644 --- a/AUTHORS.txt +++ b/AUTHORS.txt @@ -6,6 +6,7 @@ Authors * Aldo Culquicondor * Alessandro Amici * Alex Shepherd +* Alexander * Alexander Ivanov * Alfred-Mountfield * Amit Kapadia @@ -17,6 +18,7 @@ Authors * Arno Gobbin * AsgerPetersen * Bas Couwenberg +* Ben * Ben Lewis * Bill Morris * Brendan Ward @@ -29,14 +31,19 @@ Authors * Damien Ayers * Dan "Ducky" Little * Dan Baston +* Daniel Evans * Daniel J. H * Darren Weber * David Hoese * Denis Rykov * Dr Martin Black +* Eli Wenig * Elliott Sales de Andrade +* Emily Selwood +* Eric Hutton * Erik Seglem * Etienne B. Racine +* Evan McClain * Even Rouault * Ewout ter Hoeven * Felix Divo @@ -47,7 +54,9 @@ Authors * Gregory Raevski * Guillaume Lostis * Guy Doulberg +* Henry Rodman * Howard Butler +* Huseyin Kaya * Ian Schneider * Idan Miara * Ismail Sunni @@ -55,16 +64,19 @@ Authors * James Hiebert * James McBride * James Seppi +* Jan Žák * Jeffrey Gerard * Jennifer Reiber Kyle * Jeremy Hooke * Jesse Crocker +* João Santos +* Joel Jaeschke * Johan Van de Wauw * Jonas Sølvsteen * Joris Van den Bossche * Joshua Arnott -* João Santos * Juan Luis Cano Rodríguez +* Karthik Venkataramani * Keith Jenkins * Kelsey Jordahl * Kevin Wurster @@ -73,23 +85,35 @@ Authors * Kyle Barron * Leah Wasser * Loïc Dutrieux +* Lukas Paulun * Lukasz +* Luke Pinner +* Marcin Swaltek * Mark Boer * Martijn Visser * Martin Kaesberger * Martin Raspaud +* Mateo * Matt Savoie * Matthew Perry +* Matthias Daues * Maxim Dubinin +* Maxwell Lindsay * Mike Taves +* Nandan Manjunatha * Nat Wilson * Nick Grue * Nico Mandery +* Nicolai Mogensen * Nikolai Janakiev * Norman Barker +* Obidur Rahman * Olivier Cloux +* PPazderski * Pablo Sanfilippo * Patrick Young +* Pedro Alves Quilici Coutinho +* Pieter Roggemans * Pratik Yadav * RK Aranas * Raaj Tilak Sarma @@ -99,9 +123,13 @@ Authors * Ryan Grout * Sam Murphy * Samuel Kogler +* Sander Jansen +* Scott Staniewicz * Sean Gillies +* Sebastien Tremblay-Johnston * Seth Fitzsimmons * Seth Miller +* Stephen Knox * Steven Pestana * Tim Gates * Tomáš Hrnčiar @@ -114,14 +142,19 @@ Authors * appanacca * asmith26 * cgohlke +* cpegel * derekjanni * dnomadb * firas omrane * grovduck * jaredairbusaerial +* jbutle55 * ljburtz * morrme * ngrue * ryan +* snowman2 * sshuair +* stonebig +* sudobangbang * ungarj diff --git a/CHANGES.txt b/CHANGES.txt index 60f15b53..6b314e94 100644 --- a/CHANGES.txt +++ b/CHANGES.txt @@ -1,6 +1,14 @@ Changes ======= +1.4.0 (2024-09-23) +------------------ + +This is the final 1.4.0 release. The package version, credits, and citation +file have been updated. There have been no other changes since 1.4.0rc2. +Rasterio is the work of 157 contributors, including 33 new contributors since +1.3.0. + 1.4.0rc2 (2024-09-10) --------------------- diff --git a/rasterio/__init__.py b/rasterio/__init__.py index fdca1ba1..c344a6ed 100644 --- a/rasterio/__init__.py +++ b/rasterio/__init__.py @@ -81,7 +81,7 @@ except ImportError: have_vsi_plugin = False __all__ = ['band', 'open', 'pad', 'Band', 'Env', 'CRS'] -__version__ = "1.4.0rc2" +__version__ = "1.4.0" __gdal_version__ = gdal_version() __proj_version__ = ".".join([str(version) for version in get_proj_version()]) __geos_version__ = ".".join([str(version) for version in get_geos_version()])