diff --git a/AUTHORS.rst b/AUTHORS.rst index 1b741e6..144c49b 100644 --- a/AUTHORS.rst +++ b/AUTHORS.rst @@ -6,6 +6,11 @@ This version would not exist without the contributions from the Contributors =============================================================================== +- |vinilios| + + * Added a helper method in Expando class to ease up non existing keys handling. + * Some improvements in LessCSSPlugin to be able to build complex less projects (such as twitter bootstrap) + - |nud|_ * Bug Fix: Fix class name of `test_stylus` @@ -109,4 +114,6 @@ Contributors .. |theevocater| replace:: Jacob Kaufman .. _theevocater: https://github.com/theevocater .. |nud| replace:: Steve Frécinaux -.. _nud: https://github.com/nud \ No newline at end of file +.. _nud: https://github.com/nud +.. |vinilios| replace:: Kostas Papadimitriou +.. _vinilios: https://github.com/vinilios \ No newline at end of file diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 1bdf1b4..a2e49ae 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -1,3 +1,12 @@ +Version 0.8.5a9 +============================================================ + +Thanks to @vinilios + +* Added a helper method in Expando class to ease up non existing keys handling. (Issue #117) +* Some improvements in LessCSSPlugin to be able to build complex less projects (such as twitter bootstrap) (Issue #117) + + Version 0.8.5a8 ============================================================ diff --git a/README.rst b/README.rst index b0d5488..d88d5a4 100644 --- a/README.rst +++ b/README.rst @@ -1,4 +1,4 @@ -Version 0.8.5a8 +Version 0.8.5a9 A brand new **hyde** ==================== @@ -12,6 +12,8 @@ with hyde. `Hyde layout for bootstrap`_ by `auzigog`_ is also a good alternative if you like Twitter's `bootstrap framework`_. +You can also take a look at `Hyde Powered Websites`_ for inspiration and reference. + Installation ------------ @@ -162,4 +164,5 @@ Links .. _PyFS library: http://packages.python.org/fs/ .. _Hyde layout for bootstrap: https://github.com/auzigog/hyde-bootstrap .. _auzigog: https://github.com/auzigog -.. _bootstrap framework: http://twitter.github.com/bootstrap/ \ No newline at end of file +.. _bootstrap framework: http://twitter.github.com/bootstrap/ +.. _Hyde Powered Websites: https://github.com/hyde/hyde/wiki/Hyde-Powered \ No newline at end of file diff --git a/hyde/version.py b/hyde/version.py index 80a6dac..8b46213 100644 --- a/hyde/version.py +++ b/hyde/version.py @@ -3,4 +3,4 @@ Handles hyde version TODO: Use fabric like versioning scheme """ -__version__ = '0.8.5a8' +__version__ = '0.8.5a9'