Add one more docs note, call it 0.9.5.
This commit is contained in:
parent
70cad7c7d1
commit
733a8a82ad
3 changed files with 12 additions and 4 deletions
10
NEWS.md
10
NEWS.md
|
@ -1,10 +1,14 @@
|
||||||
## Changes for 0.9.5-dev (20xx):
|
## Changes for 0.9.5 (2014-06-04):
|
||||||
|
|
||||||
* A Twitter plugin to tweet your new posts. Thanks to @PuercoPop!
|
* A plugin for Incremental builds, cutting runtime for generating
|
||||||
|
medium to large sites roughly in half!
|
||||||
|
* A Twitter plugin to tweet about your new posts. Thanks to @PuercoPop!
|
||||||
* Coleslaw now exports a `get-updated-files` function which can be
|
* Coleslaw now exports a `get-updated-files` function which can be
|
||||||
used to get a list of file-status/file-name pairs that were changed
|
used to get a list of file-status/file-name pairs that were changed
|
||||||
in the last git push. There is also an exported `find-content-by-path`
|
in the last git push. There is also an exported `find-content-by-path`
|
||||||
function to retrieve content objects from the above file-name.
|
function to retrieve content objects from the above file-name. These
|
||||||
|
were used by both the Twitter and Incremental plugins.
|
||||||
|
* The usual bugfixes, performance improvements, and documentation tweaks.
|
||||||
|
|
||||||
## Changes for 0.9.4 (2014-05-05):
|
## Changes for 0.9.4 (2014-05-05):
|
||||||
|
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
(defsystem #:coleslaw
|
(defsystem #:coleslaw
|
||||||
:name "coleslaw"
|
:name "coleslaw"
|
||||||
:description "Flexible Lisp Blogware"
|
:description "Flexible Lisp Blogware"
|
||||||
:version "0.9.5-dev"
|
:version "0.9.5"
|
||||||
:license "BSD"
|
:license "BSD"
|
||||||
:author "Brit Butler <redline6561@gmail.com>"
|
:author "Brit Butler <redline6561@gmail.com>"
|
||||||
:pathname "src/"
|
:pathname "src/"
|
||||||
|
|
|
@ -41,6 +41,10 @@
|
||||||
|
|
||||||
**Example**: `(incremental)`
|
**Example**: `(incremental)`
|
||||||
|
|
||||||
|
**Setup**:
|
||||||
|
- You must run the `examples/dump_db.sh` script to generate a database dump
|
||||||
|
for your site before enabling the incremental plugin.
|
||||||
|
|
||||||
## LaTeX via Mathjax
|
## LaTeX via Mathjax
|
||||||
|
|
||||||
**Description**: Provides LaTeX support through
|
**Description**: Provides LaTeX support through
|
||||||
|
|
Loading…
Add table
Reference in a new issue