From 640b5257d963f444e42feda390329b9cb8ba1fdb Mon Sep 17 00:00:00 2001 From: Mike Cooper Date: Sat, 11 Jun 2011 18:35:36 -0400 Subject: [PATCH] Version 0.5 --- CHANGELOG.mkd | 15 +++++++++++++++ README.mkd | 2 ++ wok/__init__.py | 2 +- 3 files changed, 18 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.mkd b/CHANGELOG.mkd index 6a7a14a..cb996b6 100644 --- a/CHANGELOG.mkd +++ b/CHANGELOG.mkd @@ -1,3 +1,17 @@ +Version 0.5 +----------- +### Features +- The structure of the generated files is now user configurable. +- New config option: `author`. See docs for more info. +- Markdown, Pygments, and Docutils dependencies are now optional. +- Output from wok will now wrap to terminal windows. + +### Other +- The readme now references some sample sites. +- Added a license. wok is now officially open source! +- Tweaked output formats. +- Page metadata is now stored in a more consistent way. Sure, you don't care, but I do. :) + Version 0.4 ----------- ### Features @@ -9,6 +23,7 @@ Version 0.4 - Added page.url field, settable in a page's header and accessible from templates. - Started adding unit tests. + ### Fixes - Fix `Page.author` to actually parse author strings right. diff --git a/README.mkd b/README.mkd index 3186575..c03d900 100644 --- a/README.mkd +++ b/README.mkd @@ -131,6 +131,8 @@ Possible configuration options (and their defaults) are - `media_dir` ('media') - Where the media files are copied from. - `site_title` ('Some Random wok Site') - Available to templates as `site.title`. +- `author` (No default) - Fills `site.author`, and provides a default to + `page.author`. - `url_pattern` (`/{category}/{slug}.html`) - The pattern used to name and place the output files. The default produces URLs like `/category/subcategory/foo.html` diff --git a/wok/__init__.py b/wok/__init__.py index 12d008c..c3a5d75 100644 --- a/wok/__init__.py +++ b/wok/__init__.py @@ -1 +1 @@ -version = u'0.4' +version = u'0.5'