|
@@ -4,13 +4,16 @@
|
4
|
4
|
instead of the previous symlinked, timestamped deploy strategy.
|
5
|
5
|
To retain the previous behavior, add `(versioned)` to your config's
|
6
|
6
|
`:plugins` list.
|
7
|
|
-* **SITE-BREAKING CHANGE**: Custom themes will be broken by a change
|
|
7
|
+* **Incompatible Change**: Custom themes will be broken by a change
|
8
|
8
|
to URL handling. Previously, we were hand-constructing URLs in the
|
9
|
9
|
templates. All site objects now store their URL in an instance slot.
|
10
|
10
|
In general, hrefs should be of the form `<a href="{$config.domain}/{$obj.url}"> ...</a>`.
|
|
11
|
+* **Incompatible Change**: The interface of the `add-injection` function
|
|
12
|
+ has changed. If you have written a plugin which uses `add-injection`
|
|
13
|
+ you should update it to conform to the [new interface][add-inj-new].
|
|
14
|
+* **Docs**: Improved README and Theming docs. New Config File docs.
|
11
|
15
|
* Changes to `:routing` would previously break links in the templates
|
12
|
16
|
but now work seamlessly due to the updated URL handling.
|
13
|
|
-* **Docs**: Improved README and Theming docs. New Config File docs.
|
14
|
17
|
* Loading content is more robust when empty lines or metadata are passed.
|
15
|
18
|
Thanks to @PuercoPop for the bug report and preliminary fix.
|
16
|
19
|
* The config `:repo` option is now deprecated as its value has become
|
|
@@ -21,6 +24,8 @@
|
21
|
24
|
* The templates are now HTML5 valid thanks to @Ferada.
|
22
|
25
|
* Fixed a bug where RSS/Atom tag feeds were being published multiple times.
|
23
|
26
|
|
|
27
|
+[add-inj-new]: https://github.com/redline6561/coleslaw/blob/master/docs/plugin-api.md#extension-points
|
|
28
|
+
|
24
|
29
|
## Changes for 0.9.5 (2014-06-13):
|
25
|
30
|
|
26
|
31
|
* A plugin for Incremental builds, cutting runtime for generating
|