summaryrefslogtreecommitdiff
path: root/examples
diff options
context:
space:
mode:
authorJasper Van der Jeugt <jaspervdj@gmail.com>2010-02-17 17:21:23 +0100
committerJasper Van der Jeugt <jaspervdj@gmail.com>2010-02-17 17:21:23 +0100
commit37bed02f480db4d671ac78e6aec3e697164d9a7e (patch)
tree77adc8334d21c70c0af5f8eeb7d6af76281febf2 /examples
parent627ad76ca65a118f4e9a092217ec04799df27817 (diff)
downloadhakyll-37bed02f480db4d671ac78e6aec3e697164d9a7e.tar.gz
Version bump.
Diffstat (limited to 'examples')
-rw-r--r--examples/hakyll/changelog.markdown42
-rw-r--r--examples/hakyll/hakyll.hs1
-rw-r--r--examples/hakyll/sidebar.markdown1
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)