Skip to content

Commit

Permalink
Releasing 2.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
gi0baro committed Aug 11, 2020
1 parent 42cdeff commit 1eeec33
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion emmett/__version__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "2.0.0"
__version__ = "2.0.1"
4 changes: 2 additions & 2 deletions emmett/app.py
Original file line number Diff line number Diff line change
Expand Up @@ -242,11 +242,11 @@ def pipeline(self, pipes):

@property
def injectors(self):
return self.route._injectors
return self._router_http.injectors

@injectors.setter
def injectors(self, injectors):
self.route._injectors = injectors
self._router_http.injectors = injectors

def route(
self,
Expand Down
6 changes: 3 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "Emmett"
version = "2.0.0"
version = "2.0.1"
description = "The web framework for inventors"
authors = ["Giovanni Barillari <[email protected]>"]
license = "BSD-3-Clause"
Expand Down Expand Up @@ -44,14 +44,14 @@ emmett = "emmett.cli:main"
python = "^3.7"
click = ">=6.0"
h11 = "~0.9.0"
pendulum = "~2.0.0"
pendulum = "~2.1.2"
pyaes = "~1.6.0"
pyDAL = "17.3"
python-rapidjson = "~0.9.1"
pyyaml = "~5.3.0"
renoir = "^1.2"
severus = "^1.0"
uvicorn = "0.11.5"
uvicorn = "0.11.8"
websockets = "^8.0"

httptools = { version = "~0.1.0", markers = "sys_platform != 'win32'" }
Expand Down
10 changes: 5 additions & 5 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
click==7.1.2
h11==0.9.0
httptools==0.1.1; sys_platform != "win32" and sys_platform != "cygwin" and platform_python_implementation != "PyPy" or sys_platform != "win32"
pendulum==2.0.5
pendulum==2.1.2
pyaes==1.6.1
pydal==17.3
python-dateutil==2.8.1
python-rapidjson==0.9.1
pytzdata==2019.3
pytzdata==2020.1
pyyaml==5.3.1
renoir==1.2.0
severus==1.0.0
six==1.14.0
uvicorn==0.11.5
severus==1.0.1
six==1.15.0
uvicorn==0.11.8
uvloop==0.14.0; sys_platform != "win32" and sys_platform != "cygwin" and platform_python_implementation != "PyPy" or sys_platform != "win32"
websockets==8.1

0 comments on commit 1eeec33

Please sign in to comment.