diff options
| author | Jasper Van der Jeugt <jaspervdj@gmail.com> | 2010-02-17 17:21:23 +0100 |
|---|---|---|
| committer | Jasper Van der Jeugt <jaspervdj@gmail.com> | 2010-02-17 17:21:23 +0100 |
| commit | 37bed02f480db4d671ac78e6aec3e697164d9a7e (patch) | |
| tree | 77adc8334d21c70c0af5f8eeb7d6af76281febf2 | |
| parent | 627ad76ca65a118f4e9a092217ec04799df27817 (diff) | |
| download | hakyll-37bed02f480db4d671ac78e6aec3e697164d9a7e.tar.gz | |
Version bump.
| -rw-r--r-- | examples/hakyll/changelog.markdown | 42 | ||||
| -rw-r--r-- | examples/hakyll/hakyll.hs | 1 | ||||
| -rw-r--r-- | examples/hakyll/sidebar.markdown | 1 | ||||
| -rw-r--r-- | hakyll.cabal | 2 |
4 files changed, 45 insertions, 1 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) diff --git a/hakyll.cabal b/hakyll.cabal index c588da3..d2123f1 100644 --- a/hakyll.cabal +++ b/hakyll.cabal @@ -1,5 +1,5 @@ Name: hakyll -Version: 1.3 +Version: 1.4 Synopsis: A simple static site generator library. Description: |
