diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 163c004c..56956e7d 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -1,3 +1,23 @@ +pluggy 0.9.0 (2019-02-21) +========================= + +Features +-------- + +- `#189 `_: ``PluginManager.load_setuptools_entrypoints`` now accepts a ``name`` parameter that when given will + load only entry points with that name. + + ``PluginManager.load_setuptools_entrypoints`` also now returns the number of plugins loaded by the + call, as opposed to the number of all plugins loaded by all calls to this method. + + + +Bug Fixes +--------- + +- `#187 `_: Fix internal ``varnames`` function for PyPy3. + + pluggy 0.8.1 (2018-11-09) ========================= diff --git a/changelog/187.bugfix.rst b/changelog/187.bugfix.rst deleted file mode 100644 index aa6c5271..00000000 --- a/changelog/187.bugfix.rst +++ /dev/null @@ -1 +0,0 @@ -Fix internal ``varnames`` function for PyPy3. diff --git a/changelog/189.feature.rst b/changelog/189.feature.rst deleted file mode 100644 index de3a3533..00000000 --- a/changelog/189.feature.rst +++ /dev/null @@ -1,5 +0,0 @@ -``PluginManager.load_setuptools_entrypoints`` now accepts a ``name`` parameter that when given will -load only entry points with that name. - -``PluginManager.load_setuptools_entrypoints`` also now returns the number of plugins loaded by the -call, as opposed to the number of all plugins loaded by all calls to this method.