Browse Source

0.14 release notes and version bump (#165)

Vince Salvino 6 years ago
parent
commit
a5039faac3
3 changed files with 32 additions and 1 deletions
  1. 1 1
      coderedcms/__init__.py
  2. 1 0
      docs/releases/index.rst
  3. 30 0
      docs/releases/v0.14.0.rst

+ 1 - 1
coderedcms/__init__.py

@@ -1,4 +1,4 @@
-release = ['0', '13', '3']
+release = ['0', '14', '0']
 
 __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.14.0
     v0.13.3
     v0.13.2
     v0.13.1

+ 30 - 0
docs/releases/v0.14.0.rst

@@ -0,0 +1,30 @@
+CodeRed CMS 0.14.0 release notes
+================================
+
+
+New features
+------------
+
+* NEW page preview block enables selecting a single page anywhere in the streamfield
+  and rendering a preview of that page using various templates including a Bootstrap
+  card and an HTML form for FormPage types.
+* NEW classifiers enable custom category/group functionality for pages. Create custom
+  classifiers and orderable terms within each classifier. Then assign classifier terms
+  to pages to enable filtering by specific classifier terms.
+* The current page in a navbar or dropdown is highlighted using the ``active`` CSS class.
+* The default streamfield on pages, resusable content snippets, footers, carousels, and modals
+  now includes more blocks including the "Latest pages" and "Page preview" blocks.
+
+
+Maintenance
+-----------
+
+* New projects created with ``coderedcms start`` include a ``.gitignore`` file that ignores
+  editor files (VS Code, emacs, vim, sublime, pycharm, etc.) files by default.
+
+
+Upgrade considerations
+----------------------
+
+* You will need to run ``python manage.py makemigrations website`` and ``python manage.py migrate`` after upgrading.
+* Some blocks within coderedcms/blocks/content_blocks.py have been moved to coderedcms/blocks/html_blocks.py.