From 29b05eee31c69840ad454b51e0d693bf607a707a Mon Sep 17 00:00:00 2001 From: Daniel Holth Date: Wed, 5 Jun 2024 13:00:49 -0400 Subject: [PATCH 1/3] bumped version to 2.3.0 --- .authors.yml | 16 +++++++++++++--- src/conda_package_handling/__init__.py | 2 +- 2 files changed, 14 insertions(+), 4 deletions(-) diff --git a/.authors.yml b/.authors.yml index 5d175d24..4131c840 100644 --- a/.authors.yml +++ b/.authors.yml @@ -61,7 +61,7 @@ github: dbast - name: Conda Bot email: 18747875+conda-bot@users.noreply.github.com - num_commits: 23 + num_commits: 32 first_commit: 2022-01-17 20:22:29 github: conda-bot aliases: @@ -86,7 +86,7 @@ first_commit: 2022-02-17 10:23:53 - name: Daniel Holth email: dholth@anaconda.com - num_commits: 24 + num_commits: 26 first_commit: 2021-08-20 21:11:50 github: dholth - name: Vadim Zayakin @@ -122,5 +122,15 @@ - name: pre-commit-ci[bot] email: 66853113+pre-commit-ci[bot]@users.noreply.github.com github: pre-commit-ci[bot] - num_commits: 7 + num_commits: 14 first_commit: 2023-01-20 04:55:56 +- name: Justin Wood (Callek) + email: callek@gmail.com + num_commits: 1 + first_commit: 2024-05-21 11:47:03 + github: callek +- name: jaimergp + email: jaimergp@users.noreply.github.com + num_commits: 2 + first_commit: 2024-04-02 13:11:21 + github: jaimergp diff --git a/src/conda_package_handling/__init__.py b/src/conda_package_handling/__init__.py index 8a124bf6..55e47090 100644 --- a/src/conda_package_handling/__init__.py +++ b/src/conda_package_handling/__init__.py @@ -1 +1 @@ -__version__ = "2.2.0" +__version__ = "2.3.0" From 46ffa2d6a68d63e2d8145007ad28faaf45fe72db Mon Sep 17 00:00:00 2001 From: Daniel Holth Date: Wed, 5 Jun 2024 13:00:49 -0400 Subject: [PATCH 2/3] Updated authorship for 2.3.0 --- .mailmap | 2 ++ AUTHORS.md | 2 ++ 2 files changed, 4 insertions(+) diff --git a/.mailmap b/.mailmap index 3d600c96..1bc7e19e 100644 --- a/.mailmap +++ b/.mailmap @@ -35,6 +35,7 @@ Eli Uriegas Jannis Leidel John Lee leej3 Jonathan J. Helmus +Justin Wood (Callek) Ken Odegard Marius van Niekerk Matthew R. Becker @@ -49,4 +50,5 @@ Pure Software ossdev07 Ray Donnelly Tobias "Tobi" Koch Vadim Zayakin <77290357+vz-x@users.noreply.github.com> vz-x <77290357+vz-x@users.noreply.github.com> +jaimergp pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com> diff --git a/AUTHORS.md b/AUTHORS.md index 34009313..1e1f7b4d 100644 --- a/AUTHORS.md +++ b/AUTHORS.md @@ -12,6 +12,7 @@ Authors are sorted alphabetically. * Jannis Leidel * John Lee * Jonathan J. Helmus +* Justin Wood (Callek) * Ken Odegard * Marius van Niekerk * Matthew R. Becker @@ -21,4 +22,5 @@ Authors are sorted alphabetically. * Ray Donnelly * Tobias "Tobi" Koch * Vadim Zayakin +* jaimergp * pre-commit-ci[bot] From 6b2c1cc4e2d11644ef6b662ad694968d2528939e Mon Sep 17 00:00:00 2001 From: Daniel Holth Date: Wed, 5 Jun 2024 13:00:49 -0400 Subject: [PATCH 3/3] Updated CHANGELOG for 2.3.0 --- CHANGELOG.md | 33 ++++++++++++++++++++++++++++++ news/163-manifest-in | 21 ------------------- news/205-getcwd | 20 ------------------ news/236-list-subcommand | 19 ----------------- news/explicit-zstandard-dependency | 19 ----------------- news/python-update | 19 ----------------- 6 files changed, 33 insertions(+), 98 deletions(-) delete mode 100644 news/163-manifest-in delete mode 100644 news/205-getcwd delete mode 100644 news/236-list-subcommand delete mode 100644 news/explicit-zstandard-dependency delete mode 100644 news/python-update diff --git a/CHANGELOG.md b/CHANGELOG.md index 0bec294f..eb29f192 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,38 @@ [//]: # (current developments) +## 2.3.0 (2024-06-05) + +### Enhancements + +* Add `cph list` to report artifact contents without prior extraction. (#236) +* Added formal support for Python 3.10, 3.11, and 3.12. (#231) + +### Bug fixes + +* Delay ``os.getcwd()`` call to body of ``CondaFormat_v2.create()`` when + ``out_folder`` is not passed. (#205) + +### Deprecations + +* Removed formal support for Python 3.7. (#231) + +### Other + +* Remove MANIFEST.in, used for Python sdists, which referenced + non-existent files. Source distributions appear correct without + MANIFEST.in. (#163) +* Add explicit `zstandard` dependency. ([#222](https://github.com/conda/conda-package-handling/issues/222)) + +### Contributors + +* @conda-bot +* @dholth +* @callek +* @jaimergp +* @pre-commit-ci[bot] + + + ## 2.2.0 (2023-07-28) ### Bug fixes diff --git a/news/163-manifest-in b/news/163-manifest-in deleted file mode 100644 index d12f6558..00000000 --- a/news/163-manifest-in +++ /dev/null @@ -1,21 +0,0 @@ -### Enhancements - -* - -### Bug fixes - -* - -### Deprecations - -* - -### Docs - -* - -### Other - -* Remove MANIFEST.in, used for Python sdists, which referenced - non-existent files. Source distributions appear correct without - MANIFEST.in. (#163) diff --git a/news/205-getcwd b/news/205-getcwd deleted file mode 100644 index d2b8043e..00000000 --- a/news/205-getcwd +++ /dev/null @@ -1,20 +0,0 @@ -### Enhancements - -* - -### Bug fixes - -* Delay ``os.getcwd()`` call to body of ``CondaFormat_v2.create()`` when - ``out_folder`` is not passed. (#205) - -### Deprecations - -* - -### Docs - -* - -### Other - -* diff --git a/news/236-list-subcommand b/news/236-list-subcommand deleted file mode 100644 index 431d5023..00000000 --- a/news/236-list-subcommand +++ /dev/null @@ -1,19 +0,0 @@ -### Enhancements - -* Add `cph list` to report artifact contents without prior extraction. (#236) - -### Bug fixes - -* - -### Deprecations - -* - -### Docs - -* - -### Other - -* diff --git a/news/explicit-zstandard-dependency b/news/explicit-zstandard-dependency deleted file mode 100644 index a0556b4e..00000000 --- a/news/explicit-zstandard-dependency +++ /dev/null @@ -1,19 +0,0 @@ -### Enhancements - -* - -### Bug fixes - -* - -### Deprecations - -* - -### Docs - -* - -### Other - -* Add explicit `zstandard` dependency. ([#222](https://github.com/conda/conda-package-handling/issues/222)) diff --git a/news/python-update b/news/python-update deleted file mode 100644 index c9cf0d4d..00000000 --- a/news/python-update +++ /dev/null @@ -1,19 +0,0 @@ -### Enhancements - -* Added formal support for Python 3.10, 3.11, and 3.12. (#231) - -### Bug fixes - -* - -### Deprecations - -* Removed formal support for Python 3.7. (#231) - -### Docs - -* - -### Other - -*