diff --git a/docs/changelog.rst b/docs/changelog.rst index 9afdf3b..c4b21b8 100644 --- a/docs/changelog.rst +++ b/docs/changelog.rst @@ -1,6 +1,10 @@ Changelog ========= -2.8.0 (2024-5-03) +2.9.0 (2024-05-08) +++++++++++++++++++++++++++ +* Add response_validation_exclude_routes support (see #253) + +2.8.0 (2024-05-03) ++++++++++++++++++++++++++ * Ensure http 401 in case of missing security (see #239) * Fix pyramid swagger renderer if missing schema (see #242) @@ -8,7 +12,7 @@ Changelog * Minor fixes (see #243, #244 and #246) * Update tox to py38 and py310 and skip swagger 1.2 tests (see #249) -2.7.0 (2019-5-07) +2.7.0 (2019-05-07) ++++++++++++++++++++++++++ * Remove not needed deprecation warnings (see #238) * Make ``pyramid_swagger`` compatible with ``jsonschema>3`` (see #327) diff --git a/pyramid_swagger/__about__.py b/pyramid_swagger/__about__.py index b66428e..dd5e057 100644 --- a/pyramid_swagger/__about__.py +++ b/pyramid_swagger/__about__.py @@ -13,7 +13,7 @@ __summary__ = "Swagger tools for use in pyramid webapps" __uri__ = "https://github.com/striglia/pyramid_swagger" -__version__ = "2.8.0" +__version__ = "2.9.0" __author__ = "Scott Triglia" __email__ = "scott.triglia@gmail.com"