Release: Version 0.8! NEWS tells the story.
This commit is contained in:
parent
1d4312f01f
commit
8592cad324
3 changed files with 35 additions and 5 deletions
30
NEWS.md
Normal file
30
NEWS.md
Normal file
|
@ -0,0 +1,30 @@
|
||||||
|
## Changes for 0.8 (2013-01-06):
|
||||||
|
|
||||||
|
* Add support for new [content types](http://blog.redlinernotes.com/posts/Lessons-from-Coleslaw.html).
|
||||||
|
* Support for [Multi-site Publishing](http://blub.co.za/posts/Adding-multi-site-support-to-Coleslaw.html).
|
||||||
|
* CCL and Atom feed bugfixes.
|
||||||
|
* Major code refactor and docs update.
|
||||||
|
|
||||||
|
## Changes for 0.7 (2012-09-20):
|
||||||
|
|
||||||
|
* Add commenting support via Disqus plugin.
|
||||||
|
* Add formal plugin API with per-page predicate support. (aka "injections")
|
||||||
|
* Note jsmpereira's [coleslaw heroku package](https://github.com/jsmpereira/coleslaw-heroku) in README.
|
||||||
|
* Support for RSS feeds of arbitrary tags, e.g. "lisp" posts.
|
||||||
|
|
||||||
|
## Changes for 0.6.5 (2012-09-12):
|
||||||
|
|
||||||
|
* Add support for ATOM feeds.
|
||||||
|
* Add support for a sitenav in coleslawrc configs.
|
||||||
|
* Template and rendering cleanup.
|
||||||
|
* Miscellaneous deployment improvements.
|
||||||
|
|
||||||
|
## Changes for 0.6 (2012-08-29):
|
||||||
|
|
||||||
|
* Support Markdown in core rather than as a plugin.
|
||||||
|
* Improve documentation + README.
|
||||||
|
* Copious bugfixes and code cleanups.
|
||||||
|
|
||||||
|
## Changes for 0.5 (2012-08-22):
|
||||||
|
|
||||||
|
* Initial release.
|
8
TODO
8
TODO
|
@ -4,12 +4,12 @@ BUGS:
|
||||||
; Slugs aren't unicode safe. See [reddit discussion](http://www.reddit.com/r/lisp/comments/yvh6g/coleslaw_jekylllike_static_blogware_in_500_lines/) and [mozilla code](https://github.com/mozilla/unicode-slugify/blob/master/slugify/__init__.py).
|
; Slugs aren't unicode safe. See [reddit discussion](http://www.reddit.com/r/lisp/comments/yvh6g/coleslaw_jekylllike_static_blogware_in_500_lines/) and [mozilla code](https://github.com/mozilla/unicode-slugify/blob/master/slugify/__init__.py).
|
||||||
|
|
||||||
TODO:
|
TODO:
|
||||||
0.8
|
0.9
|
||||||
; Add SHOUT content type. Add shout indices by month. Twitter\Disqus integration with shouts?
|
; Add SHOUT content type.
|
||||||
;; needs: shout template or just render function, publish analog for indices of a given ctype?
|
;; needs: shout template/render function. Twitter\Disqus integration with shouts?
|
||||||
;; Indices fundamentally don't know about content-types. Is that a problem?
|
;; Indices fundamentally don't know about content-types. Is that a problem?
|
||||||
;; Rename index.posts to something else?
|
;; Rename index.posts to something else?
|
||||||
0.next
|
Coleslaw.next
|
||||||
; improve date check/error reporting. -> 0.9
|
; improve date check/error reporting. -> 0.9
|
||||||
; doc themes and plugins, s3+hunchentoot. -> 0.9
|
; doc themes and plugins, s3+hunchentoot. -> 0.9
|
||||||
; unit tests -> 0.9
|
; unit tests -> 0.9
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
(defsystem #:coleslaw
|
(defsystem #:coleslaw
|
||||||
:name "coleslaw-core"
|
:name "coleslaw-core"
|
||||||
:description "Flexible Lisp Blogware"
|
:description "Flexible Lisp Blogware"
|
||||||
:version "0.7"
|
:version "0.8"
|
||||||
:license "BSD"
|
:license "BSD"
|
||||||
:author "Brit Butler <redline6561@gmail.com>"
|
:author "Brit Butler <redline6561@gmail.com>"
|
||||||
:pathname "src/"
|
:pathname "src/"
|
||||||
|
|
Loading…
Add table
Reference in a new issue