2 Commits

Author SHA1 Message Date
David Thompson
1bfb388123 Bump version to 0.2.4. 2018-11-29 11:40:46 -05:00
Christopher Lemmer Webber
286edaa5de atom: links should use href attribute, not url attribute.
* haunt/builder/atom.scm (post->atom-entry): Switch url attribute to
  href attribute.
2018-11-29 11:29:59 -05:00
2 changed files with 2 additions and 2 deletions

View File

@@ -1,6 +1,6 @@
dnl -*- Autoconf -*-
AC_INIT(Haunt, 0.2.3)
AC_INIT(Haunt, 0.2.4)
AC_CONFIG_SRCDIR(haunt)
AC_CONFIG_AUX_DIR([build-aux])
AM_INIT_AUTOMAKE([color-tests -Wall -Wno-portability foreign])

View File

@@ -152,7 +152,7 @@
,@(map (lambda (enclosure)
`(link (@ (rel "enclosure")
(title ,(enclosure-title enclosure))
(url ,(enclosure-url enclosure))
(href ,(enclosure-url enclosure))
(type ,(enclosure-mime-type enclosure))
,@(map (match-lambda
((key . value)