diff --git a/CHANGES.rst b/CHANGES.rst index 4664cd31..cb033084 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -1,3 +1,10 @@ +1.1 (2021-06-03) +---------------- + +- Allow startup to happen twice (#60) +- Enforce that the HireFire token is present for flask (#61) +- Pass arguments to the Blueprint constructor in the correct order (#62) + 1.0 (2020-08-14) ---------------- diff --git a/docs/conf.py b/docs/conf.py index ddfb743e..0ca38aa3 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -51,9 +51,9 @@ # built documents. # # The short X.Y version. -version = '0.5' +version = '1.1' # The full version, including alpha/beta/rc tags. -release = '0.5' +release = '1.1' # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. diff --git a/hirefire/__init__.py b/hirefire/__init__.py index 7e49527e..439eb0cd 100644 --- a/hirefire/__init__.py +++ b/hirefire/__init__.py @@ -1 +1 @@ -__version__ = '1.0' +__version__ = '1.1'