diff --git a/.authors.yml b/.authors.yml index e361a2a63e..b22e4b31e4 100644 --- a/.authors.yml +++ b/.authors.yml @@ -1201,7 +1201,7 @@ alternate_emails: - clee@anaconda.com - name: Ken Odegard - num_commits: 152 + num_commits: 155 email: kodegard@anaconda.com first_commit: 2020-09-08 19:53:41 github: kenodegard @@ -1326,7 +1326,7 @@ - name: Jaime Rodríguez-Guerra email: jaimergp@users.noreply.github.com github: jaimergp - num_commits: 7 + num_commits: 8 first_commit: 2022-11-02 19:34:51 - name: Dave Clements email: tnabtaf@gmail.com diff --git a/CHANGELOG.md b/CHANGELOG.md index 9ad846230f..dfc774b884 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,25 @@ [//]: # (current developments) +## 3.28.2 (2023-12-15) + +### Enhancements + +* Update `conda_build.metadata.MetaData.get_section` to consistently return lists for "source" and "outputs". (#5111 via #5112) + +### Bug fixes + +* Resolve duplicate package record issue in `conda_build.inspect_pkg.which_package`. (#5106 via #5108) +* Ensure `conda_build.post._lookup_in_prefix_packages` displays `str(PackageRecord)` instead of `repr(PackageRecord)`. (#5106 via #5108) +* Fix finalization of recipes with multiple sources. (#5111 via #5112) +* Improve handling by catching the more general `ImportError` instead of `ModuleNotFoundError` to cover cases involving `menuinst 1.x`. (#5116) + +### Contributors + +* @jaimergp +* @kenodegard + + + ## 3.28.1 (2023-12-06) ### Bug fixes diff --git a/news/5108-fix-which_package b/news/5108-fix-which_package deleted file mode 100644 index 6123309d2a..0000000000 --- a/news/5108-fix-which_package +++ /dev/null @@ -1,20 +0,0 @@ -### Enhancements - -* - -### Bug fixes - -* Fix `conda_build.inspect_pkg.which_package` so it does not return duplicate package records. (#5108) -* Fix `conda_build.post._lookup_in_prefix_packages` to display `str(PackageRecord)` instead of `repr(PackageRecord)`. (#5108) - -### Deprecations - -* - -### Docs - -* - -### Other - -* diff --git a/news/5112-fix-multiple-sources b/news/5112-fix-multiple-sources deleted file mode 100644 index f988080a8b..0000000000 --- a/news/5112-fix-multiple-sources +++ /dev/null @@ -1,19 +0,0 @@ -### Enhancements - -* Update `conda_build.metadata.MetaData.get_section` to always return lists for "source" and "outputs". (#5112) - -### Bug fixes - -* Fix finalizing recipes with multiple sources. (#5111 via #5112) - -### Deprecations - -* - -### Docs - -* - -### Other - -* diff --git a/news/5116-menuinst-importerror b/news/5116-menuinst-importerror deleted file mode 100644 index 7d8f3f060d..0000000000 --- a/news/5116-menuinst-importerror +++ /dev/null @@ -1,19 +0,0 @@ -### Enhancements - -* - -### Bug fixes - -* Catch the more general `ImportError` instead of `ModuleNotFoundError`, so we do handle the cases where `menuinst 1.x` is found. (#5116) - -### Deprecations - -* - -### Docs - -* - -### Other - -*