Browse Source

0.18.1 version and release notes

Vince Salvino 4 years ago
parent
commit
8ecd849b36
3 changed files with 22 additions and 1 deletions
  1. 1 1
      coderedcms/__init__.py
  2. 1 0
      docs/releases/index.rst
  3. 20 0
      docs/releases/v0.18.1.rst

+ 1 - 1
coderedcms/__init__.py

@@ -1,4 +1,4 @@
-release = ["0", "18", "0"]
+release = ["0", "18", "1"]
 
 __version__ = "{0}.{1}.{2}".format(release[0], release[1], release[2])
 __shortversion__ = "{0}.{1}".format(release[0], release[1])

+ 1 - 0
docs/releases/index.rst

@@ -17,6 +17,7 @@ CodeRed CMS follows the ``[major].[minor].[maintenance]`` versioning scheme.
 .. toctree::
     :maxdepth: 1
 
+    v0.18.1
     v0.18.0
     v0.17.0
     v0.16.3

+ 20 - 0
docs/releases/v0.18.1.rst

@@ -0,0 +1,20 @@
+CodeRed CMS 0.18.1 release notes
+================================
+
+
+Bug fixes
+---------
+
+* Custom CSS class and Custom ID set in StreamField blocks should now render
+  correctly in HTML.
+* Fix new flake8 code quality warning.
+
+
+Upgrade considerations
+----------------------
+
+Many built-in HTML templates have changed, in order to reference the correct
+block attribute (``self.settings.custom_id``) versus the incorrect
+(``self.settings.custom_css_id`` or variations of that). If you are overring or
+have copied any built-in HTML templates, please double check that you may need
+to manually fix this bug in some of your own templates as well.