Skip to content

Commit

Permalink
chore: 1.0.0 Release
Browse files Browse the repository at this point in the history
Release next stable version, which highlights updates to error middleware
and first class support of `yarl.URL` instances within the library.
  • Loading branch information
playpauseandstop committed Jan 14, 2020
1 parent 6ffd214 commit e543135
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 5 deletions.
9 changes: 6 additions & 3 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,15 +2,18 @@
Changelog
=========

1.0.0 (In Development)
======================
1.0.0 (2020-01-14)
==================

- chore: Release **1.0.0** version which highlights updates to error middleware
and first class support of `yarl.URL` instances within the library

1.0.0b1 (2020-01-14)
--------------------

- chore: Make default error handler available to import as,

.. code-block:: python
.. code-block:: python
from aiohttp_middlewares import default_error_handler
Expand Down
2 changes: 1 addition & 1 deletion aiohttp_middlewares/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
"""

__version__ = "1.0.0b1"
__version__ = "1.0.0"

from .constants import IDEMPOTENT_METHODS, NON_IDEMPOTENT_METHODS
from .cors import cors_middleware
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ line_length = 79

[tool.poetry]
name = "aiohttp-middlewares"
version = "1.0.0b1"
version = "1.0.0"
description = "Collection of useful middlewares for aiohttp applications."
authors = ["Igor Davydenko <[email protected]>"]
license = "BSD-3-Clause"
Expand Down

0 comments on commit e543135

Please sign in to comment.