diff options
Diffstat (limited to 'examples')
| -rw-r--r-- | examples/hakyll/changelog.markdown | 42 | ||||
| -rw-r--r-- | examples/hakyll/hakyll.hs | 1 | ||||
| -rw-r--r-- | examples/hakyll/sidebar.markdown | 1 |
3 files changed, 44 insertions, 0 deletions
diff --git a/examples/hakyll/changelog.markdown b/examples/hakyll/changelog.markdown new file mode 100644 index 0000000..09ac4ce --- /dev/null +++ b/examples/hakyll/changelog.markdown @@ -0,0 +1,42 @@ +--- +title: Changelog +--- + +## Hakyll 1.4 + +February 17, 2010 + +- Added an autocompilation feature. +- Support for index URL's (`enableIndexUrl`). + +## Hakyll 1.3 + +January 30, 2010 + +- Added categories in addition to tags. +- Added `createListing` and `createListingWith` function for a more high-level + way to create listings. + +## Hakyll 1.2 + +January 27, 2010 + +- `Data.Binary` is now used for serialization. +- Rewrite of the caching system. +- Specialized data structure for templates. +- Caching of pages and templates. + +## Hakyll 1.1 + +January 19, 2010 + +- Switched to a custom `Hakyll` monad stack instead of the `IO` monad. +- Page sections. +- Combining renderables. +- `renderAndConcat` can now use multiple templates. + +## Hakyll 1.0 + +January 14, 2010 + +- First stable release. diff --git a/examples/hakyll/hakyll.hs b/examples/hakyll/hakyll.hs index b7c40db..ca45175 100644 --- a/examples/hakyll/hakyll.hs +++ b/examples/hakyll/hakyll.hs @@ -25,6 +25,7 @@ main = hakyll $ do , "index.markdown" , "philosophy.markdown" , "reference.markdown" + , "changelog.markdown" ] ++ tutorials where diff --git a/examples/hakyll/sidebar.markdown b/examples/hakyll/sidebar.markdown index cabc8af..3212d61 100644 --- a/examples/hakyll/sidebar.markdown +++ b/examples/hakyll/sidebar.markdown @@ -6,3 +6,4 @@ [about](about.html) [tutorials](tutorials.html) [reference](reference.html) +[changelog](changelog.html) |
