summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Thompson <dthompson2@worcester.edu>2017-01-23 20:14:59 -0500
committerDavid Thompson <dthompson2@worcester.edu>2017-01-23 20:14:59 -0500
commit16bc1eae0c66d418fd60b81068cc37c7b6ec01ea (patch)
tree06c6c7528dc5fe7a564358daaf324fa03108bc9c
parent6568361bd3f33c43879d57047437a34083b9c12d (diff)
Add 0.2.1 release announcement.
-rw-r--r--website/haunt.scm6
-rw-r--r--website/posts/0.2.1-release.md24
2 files changed, 28 insertions, 2 deletions
diff --git a/website/haunt.scm b/website/haunt.scm
index 25b2d57..c3becb4 100644
--- a/website/haunt.scm
+++ b/website/haunt.scm
@@ -19,6 +19,7 @@
(use-modules (haunt site)
(haunt reader)
(haunt reader skribe)
+ (haunt reader commonmark)
(haunt asset)
(haunt page)
(haunt post)
@@ -33,7 +34,8 @@
(web uri))
(define %releases
- '(("0.2" #t)
+ '(("0.2.1" #t)
+ ("0.2" #t)
("0.1" #f)))
(define (tarball-url version)
@@ -217,7 +219,7 @@ the official git repository:")
#:default-metadata
'((author . "David Thompson")
(email . "davet@gnu.org"))
- #:readers (list sxml-reader skribe-reader)
+ #:readers (list sxml-reader skribe-reader commonmark-reader)
#:builders (list (blog #:theme haunt-theme #:collections %collections)
(atom-feed)
(atom-feeds-by-tag)
diff --git a/website/posts/0.2.1-release.md b/website/posts/0.2.1-release.md
new file mode 100644
index 0000000..16f85d8
--- /dev/null
+++ b/website/posts/0.2.1-release.md
@@ -0,0 +1,24 @@
+title: Haunt 0.2.1 released
+date: 2017-01-23 08:00:00
+tags: release
+summary: Haunt 0.2.1 released
+---
+
+I am pleased to announce the release of Haunt version 0.2.1. This
+release features a new reader for the
+[Markdown](http://commonmark.org/) format via
+[guile-commonmark](https://github.com/OrangeShark/guile-commonmark) as
+well as small improvements to the Atom feed generator and
+documentation.
+
+The new Commonmark reader can be found in the `(haunt reader
+commonmark)` module.
+
+Thank you to Erik Edrosa, Ludovic Courtès, and Vladimir Zhbanov for
+contributing to this release.
+
+Source tarball: [haunt-0.2.1.tar.gz](https://files.dthompson.us/haunt/haunt-0.2.1.tar.gz.sig)
+
+GPG signature [haunt-0.2.1.tar.gz.sig](https://files.dthompson.us/haunt/haunt-0.2.1.tar.gz.sig)
+
+Happy haunting!