diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 47c6c4bca..06516f500 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -4,6 +4,39 @@ conda-smithy Change Log .. current developments +v3.45.3 +==================== + +**Added:** + +* Added support for multi-output recipes in ``hint_noarch_python_use_python_min`` check. (#2218) +* Added a linter check for use of v0 selectors in v1 recipes. (#2214) + +**Changed:** + +* Due to persistent problems with Travis CI, it is not the default provider for non-x64 architectures on linux anymore. + Builds will be emulated on azure by default, though it is recommended to switch recipes to cross-compilation + where possible, by adding the following to `conda-forge.yml` (and rerendering): + ``` + build_platform: + linux_aarch64: linux_64 + linux_ppc64le: linux_64 + ``` + +**Fixed:** + +* Fix `tests/test_feedstock_io.py::TestFeedstockIO::test_repo` path comparison to use `os.path.realpath`. (#2220) +* Fixed "missing package version" false positives for version "0". (#2217) +* Fixed flattening ``if / then / else`` clauses in v1 recipes with string values of ``then`` and ``else`` keys. (#2218) + +**Authors:** + +* H. Vetinari +* Michał Górny +* Ken Odegard + + + v3.45.2 ==================== diff --git a/news/fix-macos-path-comparison.rst b/news/fix-macos-path-comparison.rst deleted file mode 100644 index 02c80666f..000000000 --- a/news/fix-macos-path-comparison.rst +++ /dev/null @@ -1,23 +0,0 @@ -**Added:** - -* - -**Changed:** - -* - -**Deprecated:** - -* - -**Removed:** - -* - -**Fixed:** - -* Fix `tests/test_feedstock_io.py::TestFeedstockIO::test_repo` path comparison to use `os.path.realpath`. (#2220) - -**Security:** - -* diff --git a/news/fix-version-0.rst b/news/fix-version-0.rst deleted file mode 100644 index 1065d2ad1..000000000 --- a/news/fix-version-0.rst +++ /dev/null @@ -1,23 +0,0 @@ -**Added:** - -* - -**Changed:** - -* - -**Deprecated:** - -* - -**Removed:** - -* - -**Fixed:** - -* Fixed "missing package version" false positives for version "0". (#2217) - -**Security:** - -* diff --git a/news/python-min-multi-output.rst b/news/python-min-multi-output.rst deleted file mode 100644 index 32c98d66c..000000000 --- a/news/python-min-multi-output.rst +++ /dev/null @@ -1,23 +0,0 @@ -**Added:** - -* Added support for multi-output recipes in ``hint_noarch_python_use_python_min`` check. (#2218) - -**Changed:** - -* - -**Deprecated:** - -* - -**Removed:** - -* - -**Fixed:** - -* Fixed flattening ``if / then / else`` clauses in v1 recipes with string values of ``then`` and ``else`` keys. (#2218) - -**Security:** - -* diff --git a/news/travis-not-default-anymore.rst b/news/travis-not-default-anymore.rst deleted file mode 100644 index cc637831f..000000000 --- a/news/travis-not-default-anymore.rst +++ /dev/null @@ -1,30 +0,0 @@ -**Added:** - -* - -**Changed:** - -* Due to persistent problems with Travis CI, it is not the default provider for non-x64 architectures on linux anymore. - Builds will be emulated on azure by default, though it is recommended to switch recipes to cross-compilation - where possible, by adding the following to `conda-forge.yml` (and rerendering): - ``` - build_platform: - linux_aarch64: linux_64 - linux_ppc64le: linux_64 - ``` - -**Deprecated:** - -* - -**Removed:** - -* - -**Fixed:** - -* - -**Security:** - -* diff --git a/news/v0-selectors-in-v1-recipe.rst b/news/v0-selectors-in-v1-recipe.rst deleted file mode 100644 index c4c098b15..000000000 --- a/news/v0-selectors-in-v1-recipe.rst +++ /dev/null @@ -1,23 +0,0 @@ -**Added:** - -* Added a linter check for use of v0 selectors in v1 recipes. (#2214) - -**Changed:** - -* - -**Deprecated:** - -* - -**Removed:** - -* - -**Fixed:** - -* - -**Security:** - -*