From a22330ab2e187186a34f1a535c7684de7ff092ee Mon Sep 17 00:00:00 2001 From: Ryan Hiebert Date: Thu, 3 Jun 2021 14:44:51 -0500 Subject: [PATCH] Release 1.1 --- CHANGES.rst | 7 +++++++ docs/conf.py | 4 ++-- hirefire/__init__.py | 2 +- 3 files changed, 10 insertions(+), 3 deletions(-) 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'