From b6a6c721a6317725ea055dbb85c234f51abed988 Mon Sep 17 00:00:00 2001 From: Bruno Oliveira Date: Thu, 21 Feb 2019 19:27:06 -0300 Subject: [PATCH] Preparing release 0.9.0 --- CHANGELOG.rst | 20 ++++++++++++++++++++ changelog/187.bugfix.rst | 1 - changelog/189.feature.rst | 5 ----- 3 files changed, 20 insertions(+), 6 deletions(-) delete mode 100644 changelog/187.bugfix.rst delete mode 100644 changelog/189.feature.rst 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.