From e1366d0a18540ce700e4dfd112d2460e7773b4d3 Mon Sep 17 00:00:00 2001 From: Dougal Matthews Date: Thu, 21 Aug 2014 09:22:36 +0100 Subject: [PATCH] Initial release notes --- docs/about/release-notes.md | 33 +++++++++++++++++++++++++++++++++ mkdocs.yml | 1 + 2 files changed, 34 insertions(+) create mode 100644 docs/about/release-notes.md diff --git a/docs/about/release-notes.md b/docs/about/release-notes.md new file mode 100644 index 00000000..084225eb --- /dev/null +++ b/docs/about/release-notes.md @@ -0,0 +1,33 @@ +# Release Notes + +--- + +## Upgrading + +To upgrade Django REST framework to the latest version, use pip: + + pip install -U mkdocs + +You can determine your currently installed version using `pip freeze`: + + pip freeze | grep mkdocs + + +## 0.10.X series + +* Added support for Python 3.3 and 3.4. (#103) +* Configurable Python-Markdown extensions with the config setting + `mardown_extensions`. (#74) +* Added `mkdocs json` command to output your rendered + documentation as json files. (#128) +* Bugfix: Fix path for embeded images in sub pages. (#138) +* Bugfix: Fix `use_directory_urls` config behaviour. (#63) +* Bugfix: Add support for `extra_javascript` and `extra_css` in + all themes. (#90) +* Bugfix: Fix path-handling under windows. (#121) +* Bugfix: Fix the menu generation in the readthedocstheme. (#110) +* Bugfix: Fix the mkdocs command creation under Windows. (#122) +* Bugfix: Correctly handle external files in `extra_javascript` and + `extra_css`. (#92) +* Bugfix: Fixed favicon support. (#87) + diff --git a/mkdocs.yml b/mkdocs.yml index 9173d2ec..d74833ca 100644 --- a/mkdocs.yml +++ b/mkdocs.yml @@ -10,6 +10,7 @@ pages: - ['user-guide/styling-your-docs.md', 'User Guide', 'Styling your docs'] - ['user-guide/configuration.md', 'User Guide', 'Configuration'] - ['about/license.md', 'About', 'License'] +- ['about/release-notes.md', 'About', 'Release Notes'] copyright: Copyright © 2014, Tom Christie. google_analytics: ['UA-27795084-5', 'mkdocs.org']