Bump version to 0.95-dev, tweak exports, NEWS entries.
This commit is contained in:
parent
52b32f459b
commit
5e236e6ef1
4 changed files with 8 additions and 3 deletions
6
NEWS.md
6
NEWS.md
|
@ -1,3 +1,9 @@
|
|||
## Changes for 0.9.5-dev (20xx):
|
||||
|
||||
* 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
|
||||
in the last git push.
|
||||
|
||||
## Changes for 0.9.4 (2014-05-05):
|
||||
|
||||
* **SITE-BREAKING CHANGE**: Coleslaw now supports user-defined routing.
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
(defsystem #:coleslaw
|
||||
:name "coleslaw"
|
||||
:description "Flexible Lisp Blogware"
|
||||
:version "0.9.4"
|
||||
:version "0.9.5-dev"
|
||||
:license "BSD"
|
||||
:author "Brit Butler <redline6561@gmail.com>"
|
||||
:pathname "src/"
|
||||
|
|
|
@ -10,7 +10,6 @@
|
|||
(:export #:main
|
||||
#:preview
|
||||
#:*config*
|
||||
#:*last-revision*
|
||||
#:content
|
||||
#:post
|
||||
#:index
|
||||
|
|
|
@ -97,7 +97,7 @@ along with any missing parent directories otherwise."
|
|||
:external-format '(:utf-8))
|
||||
(write text :stream out :escape nil)))
|
||||
|
||||
(defun get-updated-files (revision)
|
||||
(defun get-updated-files (&optional (revision *last-revision*))
|
||||
"Return a plist of (file-status file-name) for files that were changed
|
||||
in the git repo since REVISION."
|
||||
(flet ((split-on-whitespace (str)
|
||||
|
|
Loading…
Add table
Reference in a new issue