From e916745f9999ec2ed51f3f319b3b4b5a076b8028 Mon Sep 17 00:00:00 2001
From: Milton Lenis <miltonln04@gmail.com>
Date: Sun, 15 Nov 2020 21:41:03 -0500
Subject: [PATCH] Removing flake8 from Travis and bumping up version and adding
 changelog

---
 .travis.yml                | 3 ---
 docs/changelog.rst         | 7 +++++++
 menu_generator/__init__.py | 2 +-
 3 files changed, 8 insertions(+), 4 deletions(-)

diff --git a/.travis.yml b/.travis.yml
index 113407c..2ed50b1 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -23,9 +23,6 @@ install:
   - pip install flake8
   - pip install coveralls
 
-before_script:
-   flake8 .
-
 script: coverage run --source=menu_generator manage.py test
 
 after_success:
diff --git a/docs/changelog.rst b/docs/changelog.rst
index 8a7563f..b3c2310 100644
--- a/docs/changelog.rst
+++ b/docs/changelog.rst
@@ -1,6 +1,13 @@
 CHANGELOG
 =========
 
+1.1.0(2020-11-15)
+-----------------
+
+- Features:
+    - Adding support for newer versions of Python and Django
+    - Adding support for related paths (Thanks to @hansegucker)
+
 1.0.4(2018-02-19)
 -----------------
 
diff --git a/menu_generator/__init__.py b/menu_generator/__init__.py
index e0c9a05..2459475 100755
--- a/menu_generator/__init__.py
+++ b/menu_generator/__init__.py
@@ -1,5 +1,5 @@
 __author__ = 'Milton Lenis'
 __description__ = 'A straightforward menu generator for Django'
-__version__ = '1.0.4'
+__version__ = '1.1.0'
 
 default_app_config = 'menu_generator.apps.MenuAppConfig'
-- 
GitLab