nanoc 4.11.15 → 4.11.16

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 4095705ee984152d7ecf6d5a30be0ca2a924c3c5133587ac84a054fa0fc46e9d
4
- data.tar.gz: 160e3dae99c1e08af2a04d51dc9b65ec7a5222e0cf8281e8103c787290c29a22
3
+ metadata.gz: 618b49ed618ca603097654f7a624bda64a239303bc708d702ae4e5870ccf5e33
4
+ data.tar.gz: 39c04516afa7d5ba5ad078e62a4522888e03857faf0e8b0edc88d3e4f835035a
5
5
  SHA512:
6
- metadata.gz: f76a9bd9dc02e98c8c095073d1ec6a584ec260f1b92c859590183b67c3233d88f2ee7ef790812df6b830e7d0d70db6c79301de11d0eed91c8636062a65826215
7
- data.tar.gz: ea3e1ce531452ddf3b8c8aceac582f8019d10ad0668a65fab99bb56f487bff7fbc0abb427b87a4f87e46304bf1ca78026510c03ba890f424dd00accdab5d9ba5
6
+ metadata.gz: c8e1a1ecdf6268f762a7a1893ab6cf623370caf14dba7d4ceacc737176b2341e3a446968bbc3cc649aeaaf7042153f67eb00dbc1df232f5ecc3eb44df0189877
7
+ data.tar.gz: a00995d7994ace4908bffbc37f0da119d742c1ca1cc81133b055be52856bd5c0b1a4e68fbed46bc5f1a4f2e5f215b46ad1365a600fb8f5e7803f0c4ac531e266
data/NEWS.md CHANGED
@@ -1,297 +1,308 @@
1
1
  # Nanoc news
2
2
 
3
+ ## 4.11.16 (2020-04-26)
4
+
5
+ Fixes:
6
+
7
+ - Fixed uninitialized constant/undefined method bug with guard-nanoc (#1494, #1495)
8
+ - Removed remaining more “Using the last argument …” warnings (#1498)
9
+
10
+ Enhancements:
11
+
12
+ - Ignore redirects to self (misued for cookies) (#1496) [Daniel Aleksandersen]
13
+
3
14
  ## 4.11.15 (2020-03-07)
4
15
 
5
16
  Enhancements:
6
17
 
7
- * Made `prune` print files to delete when using dry run (#1474, #1476)
8
- * Made Nanoc emit a warning when the `contracts` library is loaded, as it can cause severe slowdowns (#1483, #1489)
9
- * Made the default Rules handle `index.*` files (#1485, #1490)
18
+ - Made `prune` print files to delete when using dry run (#1474, #1476)
19
+ - Made Nanoc emit a warning when the `contracts` library is loaded, as it can cause severe slowdowns (#1483, #1489)
20
+ - Made the default Rules handle `index.*` files (#1485, #1490)
10
21
 
11
22
  Fixes:
12
23
 
13
- * Fixed warnings on Ruby 2.7
14
- * Made `@rep` (not just `@item_rep`) available in the Rendering helper (#1484, #1488)
15
- * Made the `:relativize_paths` filter relativize the `value` attribute, not the `content` one, of the `param` HTML element (#1491)
16
- * Made the `:relativize_paths` filter support relativizing paths in `srcset` attributes (#1475, #1492)
17
- * Fixed an issue that could cause items to be marked as outdated when they shouldn’t be (#1471, #1493).
24
+ - Fixed warnings on Ruby 2.7
25
+ - Made `@rep` (not just `@item_rep`) available in the Rendering helper (#1484, #1488)
26
+ - Made the `:relativize_paths` filter relativize the `value` attribute, not the `content` one, of the `param` HTML element (#1491)
27
+ - Made the `:relativize_paths` filter support relativizing paths in `srcset` attributes (#1475, #1492)
28
+ - Fixed an issue that could cause items to be marked as outdated when they shouldn’t be (#1471, #1493).
18
29
 
19
30
  ## 4.11.14 (2019-11-10)
20
31
 
21
32
  Fixes:
22
33
 
23
- * Fixed an issue where removing and re-adding an item would not cause dependent items to be recompiled (#1463, #1464)
34
+ - Fixed an issue where removing and re-adding an item would not cause dependent items to be recompiled (#1463, #1464)
24
35
 
25
36
  ## 4.11.13 (2019-11-02)
26
37
 
27
38
  Fixes:
28
39
 
29
- * Fixed an issue which could cause Nanoc to freeze when generating the output diff on Windows
40
+ - Fixed an issue which could cause Nanoc to freeze when generating the output diff on Windows
30
41
 
31
42
  ## 4.11.12 (2019-09-21)
32
43
 
33
44
  Fixes:
34
45
 
35
- * Fixed an issue with the output diff, where some hunks would not appear (#1457)
46
+ - Fixed an issue with the output diff, where some hunks would not appear (#1457)
36
47
 
37
48
  ## 4.11.11 (2019-09-07)
38
49
 
39
50
  Fixes:
40
51
 
41
- * Made output diff more reliable (#1455, #1456)
52
+ - Made output diff more reliable (#1455, #1456)
42
53
 
43
54
  ## 4.11.10 (2019-08-31)
44
55
 
45
56
  Fixes:
46
57
 
47
- * Fixed problem with sporadic `DDMetrics::Stopwatch::AlreadyRunningError` (#1445)
58
+ - Fixed problem with sporadic `DDMetrics::Stopwatch::AlreadyRunningError` (#1445)
48
59
 
49
60
  ## 4.11.9 (2019-08-17)
50
61
 
51
62
  Enhancements:
52
63
 
53
- * Allowed specifying excluded files across all checks (#1438)
54
- * Replace handlebars.rb with ruby-handlebars (#1443)
55
- * Improved dependency tracking for Sass imports (#1451, #1452) [Romain Goyet]
64
+ - Allowed specifying excluded files across all checks (#1438)
65
+ - Replace handlebars.rb with ruby-handlebars (#1443)
66
+ - Improved dependency tracking for Sass imports (#1451, #1452) [Romain Goyet]
56
67
 
57
68
  ## 4.11.8 (2019-08-08)
58
69
 
59
70
  Fixes:
60
71
 
61
- * Fixed issue with `#find_all` yielding incorrect objects, causing a crash when attempting to access attributes (#1446, #1447)
72
+ - Fixed issue with `#find_all` yielding incorrect objects, causing a crash when attempting to access attributes (#1446, #1447)
62
73
 
63
74
  ## 4.11.7 (2019-07-28)
64
75
 
65
76
  Fixes:
66
77
 
67
- * Fixed handling of protocol-relative URLs (#1444)
78
+ - Fixed handling of protocol-relative URLs (#1444)
68
79
 
69
80
  ## 4.11.6 (2019-07-06)
70
81
 
71
82
  Fixes:
72
83
 
73
- * Fixed crash in the `show-data` command when printing layout outdatedness (#1432)
74
- * Fixed crash in the `view` command when host/port is not specified
84
+ - Fixed crash in the `show-data` command when printing layout outdatedness (#1432)
85
+ - Fixed crash in the `view` command when host/port is not specified
75
86
 
76
87
  Enhancements:
77
88
 
78
- * Added `#env_name` to `@config` (#1437)
79
- * Made the `external_links` checker detect more kinds of broken links (#1422) [Daniel Aleksandersen]
80
- * Made the `external_links` checker shuffle the list of links (#1429) [Daniel Aleksandersen]
89
+ - Added `#env_name` to `@config` (#1437)
90
+ - Made the `external_links` checker detect more kinds of broken links (#1422) [Daniel Aleksandersen]
91
+ - Made the `external_links` checker shuffle the list of links (#1429) [Daniel Aleksandersen]
81
92
 
82
93
  ## 4.11.5 (2019-04-30)
83
94
 
84
95
  Fixes:
85
96
 
86
- * Fixed an incompatibility introduced in Cri 2.15.4 (#1423, #1426)
97
+ - Fixed an incompatibility introduced in Cri 2.15.4 (#1423, #1426)
87
98
 
88
99
  ## 4.11.4 (2019-04-28)
89
100
 
90
101
  Fixes:
91
102
 
92
- * Fixed an issue which could cause `#compiled_content` to sometimes return compiled content that erroneously includes the layout (#1412, #1421)
103
+ - Fixed an issue which could cause `#compiled_content` to sometimes return compiled content that erroneously includes the layout (#1412, #1421)
93
104
 
94
105
  ## 4.11.3 (2019-04-27)
95
106
 
96
107
  Enhancements:
97
108
 
98
- * Set a User-Agent for HTTP requests made by the `external_links` check (#1417) [Daniel Aleksandersen]
99
- * Added `atom:link[type]` attributes (#1415) [Daniel Aleksandersen]
100
- * Made the `external_links` check treat permanent redirects as errors (#1419) [Daniel Aleksandersen]
109
+ - Set a User-Agent for HTTP requests made by the `external_links` check (#1417) [Daniel Aleksandersen]
110
+ - Added `atom:link[type]` attributes (#1415) [Daniel Aleksandersen]
111
+ - Made the `external_links` check treat permanent redirects as errors (#1419) [Daniel Aleksandersen]
101
112
 
102
113
  ## 4.11.2 (2019-02-16)
103
114
 
104
115
  Fixes:
105
116
 
106
- * Fixed issue which prevented Sass (not SCSS) files from being imported (#1397, #1407) [Alexander Groß]
117
+ - Fixed issue which prevented Sass (not SCSS) files from being imported (#1397, #1407) [Alexander Groß]
107
118
 
108
119
  ## 4.11.1 (2019-02-09)
109
120
 
110
121
  Fixes:
111
122
 
112
- * Fixed an issue which caused hardlinking to fail in certain situations (#1405, #1406)
123
+ - Fixed an issue which caused hardlinking to fail in certain situations (#1405, #1406)
113
124
 
114
125
  ## 4.11.0 (2018-12-01)
115
126
 
116
127
  Features:
117
128
 
118
- * Added support for generating inline source maps for Sass (#1376) [Gregory Pakosz]
119
- * Added `:tiebreaker` option to the breadcrumbs helper, so that it can deal with ambiguity (#1368)
129
+ - Added support for generating inline source maps for Sass (#1376) [Gregory Pakosz]
130
+ - Added `:tiebreaker` option to the breadcrumbs helper, so that it can deal with ambiguity (#1368)
120
131
 
121
132
  ## 4.10.4 (2018-12-01)
122
133
 
123
134
  Fixes:
124
135
 
125
- * Fixed an error when importing a Sass/SCSS file outside of Nanoc’s content directory (#1378, #1379)
136
+ - Fixed an error when importing a Sass/SCSS file outside of Nanoc’s content directory (#1378, #1379)
126
137
 
127
138
  ## 4.10.3 (2018-10-28)
128
139
 
129
140
  Fixes:
130
141
 
131
- * Fixed an issue which could cause `write nil` to still invoke the routing rule (#1374, #1375)
142
+ - Fixed an issue which could cause `write nil` to still invoke the routing rule (#1374, #1375)
132
143
 
133
144
  ## 4.10.2 (2018-10-21)
134
145
 
135
146
  Fixes:
136
147
 
137
- * Fixed an issue where changing a layout rule’s parameters would not recompile items that use the layout for this layout rule (#1372, #1373)
148
+ - Fixed an issue where changing a layout rule’s parameters would not recompile items that use the layout for this layout rule (#1372, #1373)
138
149
 
139
150
  ## 4.10.1 (2018-10-16)
140
151
 
141
152
  Fixes:
142
153
 
143
- * Made Nanoc no longer crash when the Sass gem is not available (#1371)
154
+ - Made Nanoc no longer crash when the Sass gem is not available (#1371)
144
155
 
145
156
  ## 4.10.0 (2018-10-14)
146
157
 
147
158
  Features:
148
159
 
149
- * Added source map support to the Sass filter (#1365) [Gregory Pakosz]
150
- * Added a `nanoc()` Sass function (#1365) [Gregory Pakosz]
160
+ - Added source map support to the Sass filter (#1365) [Gregory Pakosz]
161
+ - Added a `nanoc()` Sass function (#1365) [Gregory Pakosz]
151
162
 
152
163
  Fixes:
153
164
 
154
- * Ensured breadcrumb trail always ends in item itself (#1367)
165
+ - Ensured breadcrumb trail always ends in item itself (#1367)
155
166
 
156
167
  Enhancemens:
157
168
 
158
- * Made Nanoc error when meta-file cannot be unambiguously associated (#1370)
169
+ - Made Nanoc error when meta-file cannot be unambiguously associated (#1370)
159
170
 
160
171
  ## 4.9.9 (2018-10-06)
161
172
 
162
173
  Fixes:
163
174
 
164
- * Allowed `items_root` and `layouts_root` to be null
175
+ - Allowed `items_root` and `layouts_root` to be null
165
176
 
166
177
  ## 4.9.8 (2018-10-05)
167
178
 
168
179
  Fixes:
169
180
 
170
- * Fixed missing `configuration-schema.json` file
181
+ - Fixed missing `configuration-schema.json` file
171
182
 
172
183
  ## 4.9.7 (2018-10-05)
173
184
 
174
185
  Enhancements:
175
186
 
176
- * Added `title_proc:` option to the blogging helper (#1362, #1363) [Thomas Hochstein]
177
- * Dropped Ruby 2.3 support, as it is no longer maintained (#1361)
178
- * Added static configuration file verification (#1360)
187
+ - Added `title_proc:` option to the blogging helper (#1362, #1363) [Thomas Hochstein]
188
+ - Dropped Ruby 2.3 support, as it is no longer maintained (#1361)
189
+ - Added static configuration file verification (#1360)
179
190
 
180
191
  ## 4.9.6 (2018-09-19)
181
192
 
182
193
  Fixes:
183
194
 
184
- * Fixed an issue which would cause the checksum of binary items created by the filesystem data source not to be updated when the content changes (#1358, #1359)
195
+ - Fixed an issue which would cause the checksum of binary items created by the filesystem data source not to be updated when the content changes (#1358, #1359)
185
196
 
186
197
  ## 4.9.5 (2018-09-15)
187
198
 
188
199
  Fixes:
189
200
 
190
- * Fixed an issue which would cause Nanoc to trip up when the working directory changes during compilation (#1338, #1353, #1354, #1357)
201
+ - Fixed an issue which would cause Nanoc to trip up when the working directory changes during compilation (#1338, #1353, #1354, #1357)
191
202
 
192
203
  ## 4.9.4 (2018-08-19)
193
204
 
194
205
  Fixes:
195
206
 
196
- * Fixed an issue where compiled content of items generated in the preprocessor would not be available in the postprocessor (#1341, #1348)
207
+ - Fixed an issue where compiled content of items generated in the preprocessor would not be available in the postprocessor (#1341, #1348)
197
208
 
198
209
  ## 4.9.3 (2018-06-09)
199
210
 
200
211
  Enhancements:
201
212
 
202
- * Added an `:exclude` option to `relativize_paths`, to exclude certain paths from being relativized (#1340)
213
+ - Added an `:exclude` option to `relativize_paths`, to exclude certain paths from being relativized (#1340)
203
214
 
204
215
  ## 4.9.2 (2018-03-30)
205
216
 
206
217
  Fixes:
207
218
 
208
- * Fixed bug which caused `output_dir` not to be ignored when checking for excludes in pruner (#1313, #1324)
209
- * Fixed bug which caused `Filter#depend_on` not to create a proper dependency when the depended-on item has no representations (#1330)
219
+ - Fixed bug which caused `output_dir` not to be ignored when checking for excludes in pruner (#1313, #1324)
220
+ - Fixed bug which caused `Filter#depend_on` not to create a proper dependency when the depended-on item has no representations (#1330)
210
221
 
211
222
  Enhancements:
212
223
 
213
- * Made Nanoc use hardlinks instead of copying files when possible (#1321) [Antonio Terceiro]
214
- * Made Nanoc show an understandable error when a filter returns `nil` by accident (#1323, #1326)
215
- * Made the checks also consider `.xhtml` and `.htm` files (#1328, #1329)
216
- * Made Nanoc not report thread exceptions, which would freeze Ruby (#1332)
224
+ - Made Nanoc use hardlinks instead of copying files when possible (#1321) [Antonio Terceiro]
225
+ - Made Nanoc show an understandable error when a filter returns `nil` by accident (#1323, #1326)
226
+ - Made the checks also consider `.xhtml` and `.htm` files (#1328, #1329)
227
+ - Made Nanoc not report thread exceptions, which would freeze Ruby (#1332)
217
228
 
218
229
  ## 4.9.1 (2018-02-22)
219
230
 
220
231
  Fixes:
221
232
 
222
- * Fixed issue which could cause terminal output to be jumbled up (#1312, #1316)
223
- * Made pruner ignore `output_dir` configuration attribute when checking for excludes (#1313, #1317)
224
- * Fixed handling of interrupts (SIGINT) in the `shell` command (#1309, #1318)
225
- * Added workaround for `relativize_paths` mangling `gcse:search` elements (#1319, #1320)
233
+ - Fixed issue which could cause terminal output to be jumbled up (#1312, #1316)
234
+ - Made pruner ignore `output_dir` configuration attribute when checking for excludes (#1313, #1317)
235
+ - Fixed handling of interrupts (SIGINT) in the `shell` command (#1309, #1318)
236
+ - Added workaround for `relativize_paths` mangling `gcse:search` elements (#1319, #1320)
226
237
 
227
238
  Enhancements:
228
239
 
229
- * Allowed overriding `<id>` and `<link rel="alternate">` elements in Atom feed generator (#1301) [Ian Young]
230
- * Made `sh` an alias for the `shell` command (#1308)
231
- * Simplified the default configuration (#1311)
232
- * Removed routing rules from newly-created sites (#1310)
240
+ - Allowed overriding `<id>` and `<link rel="alternate">` elements in Atom feed generator (#1301) [Ian Young]
241
+ - Made `sh` an alias for the `shell` command (#1308)
242
+ - Simplified the default configuration (#1311)
243
+ - Removed routing rules from newly-created sites (#1310)
233
244
 
234
245
  ## 4.9.0 (2018-01-31)
235
246
 
236
247
  Features:
237
248
 
238
- * Added `Identifier#match?` (#1305)
239
- * Added `Nanoc::Check.define`
240
- * Made Nanoc read checks configuration from `nanoc.yaml` (#1296)
249
+ - Added `Identifier#match?` (#1305)
250
+ - Added `Nanoc::Check.define`
251
+ - Made Nanoc read checks configuration from `nanoc.yaml` (#1296)
241
252
 
242
253
  Enhancements:
243
254
 
244
- * Made Nanoc write out files asynchronously (#1288)
245
- * Made the filesystem data source ignore an initial blank line after the frontmatter (#1292, #1293)
246
- * Made the `check` command run deploy checks by default (#1304)
247
- * Made Nanoc honor the `NO_COLOR` environment variable (#1306)
255
+ - Made Nanoc write out files asynchronously (#1288)
256
+ - Made the filesystem data source ignore an initial blank line after the frontmatter (#1292, #1293)
257
+ - Made the `check` command run deploy checks by default (#1304)
258
+ - Made Nanoc honor the `NO_COLOR` environment variable (#1306)
248
259
 
249
260
  Bugs:
250
261
 
251
- * Fixed a potential deadlock in the `external_links` check (#1294, #1295)
252
- * Fixed the `external_links` check’s handling of redirects without a `Location` header (#1297, #1302)
253
- * Fixed the `external_links` check’s handling of URLs with invalid components (#1303)
262
+ - Fixed a potential deadlock in the `external_links` check (#1294, #1295)
263
+ - Fixed the `external_links` check’s handling of redirects without a `Location` header (#1297, #1302)
264
+ - Fixed the `external_links` check’s handling of URLs with invalid components (#1303)
254
265
 
255
266
  ## 4.8.19 (2018-01-01)
256
267
 
257
268
  Enhancements:
258
269
 
259
- * Made `write nil` skip routing rule (#1286)
270
+ - Made `write nil` skip routing rule (#1286)
260
271
 
261
272
  ## 4.8.18 (2017-12-28)
262
273
 
263
274
  Enhancements:
264
275
 
265
- * Added `.tex` to the default list of text extensions (#1280) [Rien Maertens]
276
+ - Added `.tex` to the default list of text extensions (#1280) [Rien Maertens]
266
277
 
267
278
  Fixes:
268
279
 
269
- * Made `#breadcrumbs_trail` smarter about picking the right parent when there is ambiguity (#1278, #1279)
270
- * Made `#find_all` be callable with block instead of an argument (like `Enumerable#find_all`) (#1284, #1285)
280
+ - Made `#breadcrumbs_trail` smarter about picking the right parent when there is ambiguity (#1278, #1279)
281
+ - Made `#find_all` be callable with block instead of an argument (like `Enumerable#find_all`) (#1284, #1285)
271
282
 
272
283
  ## 4.8.17 (2017-12-16)
273
284
 
274
285
  Enhancements:
275
286
 
276
- * Made `LoadError` be printed more nicely (#1273, #1274, #1275)
287
+ - Made `LoadError` be printed more nicely (#1273, #1274, #1275)
277
288
 
278
289
  ## 4.8.16 (2017-12-09)
279
290
 
280
291
  Fixes:
281
292
 
282
- * Made `adsf-live` not be required for `nanoc view`, unless running with `--live-reload`
293
+ - Made `adsf-live` not be required for `nanoc view`, unless running with `--live-reload`
283
294
 
284
295
  ## 4.8.15 (2017-12-02)
285
296
 
286
297
  Fixes:
287
298
 
288
- * Made `nanoc` show item being compiled in crash logs of all errors, not just errors inheriting from `StandardError` (#1258)
289
- * Made Erubi stack traces include the filename of the item or layout that is being compiled (#1255, #1259)
290
- * Prevented `view --live-reload` from crashing when the output directory does not exist (#1254, #1261)
299
+ - Made `nanoc` show item being compiled in crash logs of all errors, not just errors inheriting from `StandardError` (#1258)
300
+ - Made Erubi stack traces include the filename of the item or layout that is being compiled (#1255, #1259)
301
+ - Prevented `view --live-reload` from crashing when the output directory does not exist (#1254, #1261)
291
302
 
292
303
  Enhancements:
293
304
 
294
- * Made pruner not remove the output directory if it’s empty (#1260)
305
+ - Made pruner not remove the output directory if it’s empty (#1260)
295
306
 
296
307
  ## 4.8.14 (2017-11-27)
297
308
 
@@ -301,152 +312,152 @@ Same as 4.8.13, but published with the proper release date.
301
312
 
302
313
  Enhancements:
303
314
 
304
- * Added `-L`/`--live-reload` option to `nanoc view` (#1251)
315
+ - Added `-L`/`--live-reload` option to `nanoc view` (#1251)
305
316
 
306
317
  ## 4.8.12 (2017-11-16)
307
318
 
308
319
  Fixes:
309
320
 
310
- * Fixed issue where changing `:output_dir` during preprocessing would prevent Nanoc from performing incremental compilation (#1248, #1249)
321
+ - Fixed issue where changing `:output_dir` during preprocessing would prevent Nanoc from performing incremental compilation (#1248, #1249)
311
322
 
312
323
  Enhancements:
313
324
 
314
- * Allowed creation of pattern from symbols, not just strings (#1247) [Gregory Pakosz]
325
+ - Allowed creation of pattern from symbols, not just strings (#1247) [Gregory Pakosz]
315
326
 
316
327
  ## 4.8.11 (2017-10-28)
317
328
 
318
329
  Enhancements:
319
330
 
320
- * Added `:save_with` parameter to `relativize_paths` filter (#1237) [Gregory Pakosz]
321
- * Made error messages more compact and easier to read
331
+ - Added `:save_with` parameter to `relativize_paths` filter (#1237) [Gregory Pakosz]
332
+ - Made error messages more compact and easier to read
322
333
 
323
334
  ## 4.8.10 (2017-10-08)
324
335
 
325
336
  Fixes:
326
337
 
327
- * Fixed handling of four dashes for separating metadata (#1222, #1223)
328
- * Made `#raw_path` unavailable in rules context (#1231)
338
+ - Fixed handling of four dashes for separating metadata (#1222, #1223)
339
+ - Made `#raw_path` unavailable in rules context (#1231)
329
340
 
330
341
  ## 4.8.9 (2017-09-22)
331
342
 
332
343
  Fixes:
333
344
 
334
- * Fixed “uninitialized constant DisabledContracts::Args” error
345
+ - Fixed “uninitialized constant DisabledContracts::Args” error
335
346
 
336
347
  ## 4.8.8 (2017-09-22)
337
348
 
338
349
  Enhancements:
339
350
 
340
- * Added `#dig` to configuration (#1221) [Gregory Pakosz]
351
+ - Added `#dig` to configuration (#1221) [Gregory Pakosz]
341
352
 
342
353
  ## 4.8.7 (2017-09-18)
343
354
 
344
355
  Fixes:
345
356
 
346
- * Fixed “uninitialized constant CGI” issue (#1218)
357
+ - Fixed “uninitialized constant CGI” issue (#1218)
347
358
 
348
359
  ## 4.8.6 (2017-09-17)
349
360
 
350
361
  Fixes:
351
362
 
352
- * Fixed issue which would cause items not to be considered as outdated when their content and/or attributes are changed in the preprocessor (#1216, #1217)
363
+ - Fixed issue which would cause items not to be considered as outdated when their content and/or attributes are changed in the preprocessor (#1216, #1217)
353
364
 
354
365
  ## 4.8.5 (2017-09-07)
355
366
 
356
367
  Enhancements:
357
368
 
358
- * Made `nanoc check` accept hyphenated check names (e.g. `internal-links`, in addition to `internal_links`).
359
- * `compile --verbose` now prints “cached” rather than “identical” when cached compiled content is used. (#1214)
369
+ - Made `nanoc check` accept hyphenated check names (e.g. `internal-links`, in addition to `internal_links`).
370
+ - `compile --verbose` now prints “cached” rather than “identical” when cached compiled content is used. (#1214)
360
371
 
361
372
  ## 4.8.4 (2017-09-03)
362
373
 
363
374
  Fixes:
364
375
 
365
- * Fixed issue which caused the CLI to load the site at the wrong moment (#1211, #1212, #1213)
376
+ - Fixed issue which caused the CLI to load the site at the wrong moment (#1211, #1212, #1213)
366
377
 
367
378
  ## 4.8.3 (2017-08-30)
368
379
 
369
380
  Fixes:
370
381
 
371
- * Disallowed full identifiers from ending with a slash (#1206)
372
- * Made `nanoc view` listen on 127.0.0.1, not 0.0.0.0, by default (#1205)
382
+ - Disallowed full identifiers from ending with a slash (#1206)
383
+ - Made `nanoc view` listen on 127.0.0.1, not 0.0.0.0, by default (#1205)
373
384
 
374
385
  Enhancements:
375
386
 
376
- * Made `nanoc view` print site URL (#1204)
377
- * Made `nanoc` search for parent directory containing Nanoc site (#1210)
387
+ - Made `nanoc view` print site URL (#1204)
388
+ - Made `nanoc` search for parent directory containing Nanoc site (#1210)
378
389
 
379
390
  ## 4.8.2 (2017-08-19)
380
391
 
381
392
  Fixes:
382
393
 
383
- * Fixed compatibility issue with guard-nanoc
394
+ - Fixed compatibility issue with guard-nanoc
384
395
 
385
396
  ## 4.8.1 (2017-08-06)
386
397
 
387
398
  Enhancements:
388
399
 
389
- * Various speed improvements
400
+ - Various speed improvements
390
401
 
391
402
  ## 4.8 (2017-07-17)
392
403
 
393
404
  Features:
394
405
 
395
- * Added `asciidoctor` filter (#1199)
406
+ - Added `asciidoctor` filter (#1199)
396
407
 
397
408
  ## 4.7.14 (2017-07-16)
398
409
 
399
410
  Enhancements:
400
411
 
401
- * Various speed improvements (#1195, #1198)
412
+ - Various speed improvements (#1195, #1198)
402
413
 
403
414
  ## 4.7.13 (2017-07-02)
404
415
 
405
416
  Enhancements:
406
417
 
407
- * Made adding an item or a layout only recompile items that likely depend on it (#1191, #1193)
418
+ - Made adding an item or a layout only recompile items that likely depend on it (#1191, #1193)
408
419
 
409
420
  ## 4.7.12 (2017-06-23)
410
421
 
411
422
  Fixes:
412
423
 
413
- * Fixed an issue in which the fog deployer could run out of open file descriptors (#1189)
424
+ - Fixed an issue in which the fog deployer could run out of open file descriptors (#1189)
414
425
 
415
426
  Enhancements:
416
427
 
417
- * Made changes to `@config` only cause outdatedness of items that depend on `@config` (#1188)
428
+ - Made changes to `@config` only cause outdatedness of items that depend on `@config` (#1188)
418
429
 
419
430
  ## 4.7.11 (2017-06-17)
420
431
 
421
432
  Fixes:
422
433
 
423
- * Made the `external_links` check always use GET, not HEAD (#1178, #1179)
424
- * Fixed an issue where changing identifiers during preprocessing could cause a crash (#1184, #1185)
434
+ - Made the `external_links` check always use GET, not HEAD (#1178, #1179)
435
+ - Fixed an issue where changing identifiers during preprocessing could cause a crash (#1184, #1185)
425
436
 
426
437
  Enhancements:
427
438
 
428
- * Added `--preprocess` to `shell` command, to load preprocessed site data (#1180)
439
+ - Added `--preprocess` to `shell` command, to load preprocessed site data (#1180)
429
440
 
430
441
  ## 4.7.10 (2017-05-14)
431
442
 
432
443
  Fixes:
433
444
 
434
- * Fixed behavior of `parent_config_file` so that it merges, rather than overwrites (#1176) [Gregory Pakosz]
445
+ - Fixed behavior of `parent_config_file` so that it merges, rather than overwrites (#1176) [Gregory Pakosz]
435
446
 
436
447
  Enhancements:
437
448
 
438
- * Made `slim` filter show the filename in error messages (#1175) [Alexander Groß]
439
- * Added `#use_helper` as an alternative to `#include` for enabling helpers (#1170)
449
+ - Made `slim` filter show the filename in error messages (#1175) [Alexander Groß]
450
+ - Added `#use_helper` as an alternative to `#include` for enabling helpers (#1170)
440
451
 
441
452
  ## 4.7.9 (2017-05-01)
442
453
 
443
454
  Fixes:
444
455
 
445
- * Fixed character set handling of code snippets (#1171, #1174)
456
+ - Fixed character set handling of code snippets (#1171, #1174)
446
457
 
447
458
  Enhancements:
448
459
 
449
- * Added `xml:base` support (#1172, #1173) [Chris Burkhardt]
460
+ - Added `xml:base` support (#1172, #1173) [Chris Burkhardt]
450
461
 
451
462
  This release drops support for Ruby 2.2, as it is no longer maintained.
452
463
 
@@ -454,298 +465,298 @@ This release drops support for Ruby 2.2, as it is no longer maintained.
454
465
 
455
466
  Fixes:
456
467
 
457
- * Fixed a crash when printing dependency cycle error messages (#1164, #1166)
458
- * Fixed incorrect ordering in dependency cycle error messages (#1167, #1168)
459
- * Fixed a crash when attempting to print malformed UTF-8 strings (#1163, #1165)
468
+ - Fixed a crash when printing dependency cycle error messages (#1164, #1166)
469
+ - Fixed incorrect ordering in dependency cycle error messages (#1167, #1168)
470
+ - Fixed a crash when attempting to print malformed UTF-8 strings (#1163, #1165)
460
471
 
461
472
  Enhancements:
462
473
 
463
- * Added various speed improvements (#1158, #1159, #1160)
474
+ - Added various speed improvements (#1158, #1159, #1160)
464
475
 
465
476
  ## 4.7.7 (2017-04-16)
466
477
 
467
478
  Enhancements:
468
479
 
469
- * Added `--diff` option to `compile` command as a one-time alternative to `enable_output_diff` (#1155)
470
- * Sped up incremental compilation (#1156, #1157)
480
+ - Added `--diff` option to `compile` command as a one-time alternative to `enable_output_diff` (#1155)
481
+ - Sped up incremental compilation (#1156, #1157)
471
482
 
472
483
  ## 4.7.6 (2017-04-15)
473
484
 
474
485
  Enhancements:
475
486
 
476
- * Added support for `:html5` in `relativize_paths` and `colorize_syntax` filters (#1153)
487
+ - Added support for `:html5` in `relativize_paths` and `colorize_syntax` filters (#1153)
477
488
 
478
489
  ## 4.7.5 (2017-04-01)
479
490
 
480
491
  Fixes:
481
492
 
482
- * Made `--verbose` be recognised when calling `nanoc` without subcommand (#1145, #1146)
493
+ - Made `--verbose` be recognised when calling `nanoc` without subcommand (#1145, #1146)
483
494
 
484
495
  Enhancements:
485
496
 
486
- * Made `show-data` print all outdatedness reasons, not just the first (#1142)
487
- * Sped up `@items.find_all` (#1147)
497
+ - Made `show-data` print all outdatedness reasons, not just the first (#1142)
498
+ - Sped up `@items.find_all` (#1147)
488
499
 
489
500
  ## 4.7.4 (2017-03-29)
490
501
 
491
502
  Enhancements:
492
503
 
493
- * Made attribute dependencies cause outdatedness less often (#1136, #1137, #1138)
494
- * Improved speed of Rules file handling (#1140)
504
+ - Made attribute dependencies cause outdatedness less often (#1136, #1137, #1138)
505
+ - Improved speed of Rules file handling (#1140)
495
506
 
496
507
  ## 4.7.3 (2017-03-26)
497
508
 
498
509
  Fixes:
499
510
 
500
- * Fixed an issue which could cause a missing file for a snapshot that is not `:last` not to be regenerated when compiling (#1134, #1135)
511
+ - Fixed an issue which could cause a missing file for a snapshot that is not `:last` not to be regenerated when compiling (#1134, #1135)
501
512
 
502
513
  ## 4.7.2 (2017-03-21)
503
514
 
504
515
  Fixes:
505
516
 
506
- * Fixed crash when calling `#raw_path` in the Checks file (#1130, #1131)
517
+ - Fixed crash when calling `#raw_path` in the Checks file (#1130, #1131)
507
518
 
508
519
  ## 4.7.1 (2017-03-19)
509
520
 
510
521
  Fixes:
511
522
 
512
- * Fixed issue with `:xsl` filter not recompiling when it should (#924, #1127)
523
+ - Fixed issue with `:xsl` filter not recompiling when it should (#924, #1127)
513
524
 
514
525
  Enhancements:
515
526
 
516
- * Made `compile --verbose` print percentiles rather than averages (#1122)
517
- * Improved dependency cycle error messages (#1123)
527
+ - Made `compile --verbose` print percentiles rather than averages (#1122)
528
+ - Improved dependency cycle error messages (#1123)
518
529
 
519
530
  ## 4.7 (2017-03-15)
520
531
 
521
532
  Features:
522
533
 
523
- * Added `:erubi` filter (#1103) [Jan M. Faber]
524
- * Added `write ext: 'something'` shortcut (#1079)
534
+ - Added `:erubi` filter (#1103) [Jan M. Faber]
535
+ - Added `write ext: 'something'` shortcut (#1079)
525
536
 
526
537
  ## 4.6.4 (2017-03-10)
527
538
 
528
539
  Fixes:
529
540
 
530
- * Fixed issue where `compile --verbose` would show misleading timing information (#1113)
541
+ - Fixed issue where `compile --verbose` would show misleading timing information (#1113)
531
542
 
532
543
  ## 4.6.3 (2017-03-05)
533
544
 
534
545
  Fixes:
535
546
 
536
- * Fixed `Errno::ENOENT` crash (#1094, #1109)
537
- * Fixed undefined method `#reverse_each` crash (#1107, #1108)
538
- * Fixed compilation speed issue introduced in 4.6.2 (#1106)
547
+ - Fixed `Errno::ENOENT` crash (#1094, #1109)
548
+ - Fixed undefined method `#reverse_each` crash (#1107, #1108)
549
+ - Fixed compilation speed issue introduced in 4.6.2 (#1106)
539
550
 
540
551
  ## 4.6.2 (2017-03-04)
541
552
 
542
553
  Fixes:
543
554
 
544
- * Fixed crash in `#binary?` (#1082, #1083, #1084)
545
- * Fixed issue which would cause the file referenced by `#raw_path` not to exist (#1097, #1099)
555
+ - Fixed crash in `#binary?` (#1082, #1083, #1084)
556
+ - Fixed issue which would cause the file referenced by `#raw_path` not to exist (#1097, #1099)
546
557
 
547
558
  Enhancements:
548
559
 
549
- * Allowed calling `#write` multiple times in the same rule (#1037, #1085)
550
- * Changed the `html` check to use validator.nu (#1104)
560
+ - Allowed calling `#write` multiple times in the same rule (#1037, #1085)
561
+ - Changed the `html` check to use validator.nu (#1104)
551
562
 
552
563
  ## 4.6.1 (2017-01-29)
553
564
 
554
565
  Fixes:
555
566
 
556
- * Fixed table formatting in `compile --verbose` (#1074) [Hugo Peixoto]
567
+ - Fixed table formatting in `compile --verbose` (#1074) [Hugo Peixoto]
557
568
 
558
569
  Enhancements:
559
570
 
560
- * Reduced memory usage (#1075, #1076, #1077, #1078)
571
+ - Reduced memory usage (#1075, #1076, #1077, #1078)
561
572
 
562
573
  ## 4.6 (2017-01-22)
563
574
 
564
575
  Features:
565
576
 
566
- * Made `#content_for` accept a string as well as a block, to allow setting captured content outside of ERB (#1066, #1073)
567
- * Added `#raw_content=` to items and layouts during preprocessing (#1057)
568
- * Added `#snapshot?` to item rep views (#1056)
577
+ - Made `#content_for` accept a string as well as a block, to allow setting captured content outside of ERB (#1066, #1073)
578
+ - Added `#raw_content=` to items and layouts during preprocessing (#1057)
579
+ - Added `#snapshot?` to item rep views (#1056)
569
580
 
570
581
  Enhancements:
571
582
 
572
- * Prevented useless recompilations when switching Nanoc environments (#1070, #1071)
583
+ - Prevented useless recompilations when switching Nanoc environments (#1070, #1071)
573
584
 
574
585
  ## 4.5.4 (2017-01-16)
575
586
 
576
587
  Fixes:
577
588
 
578
- * Fixed issue with site not being recompiled fully when switching between environments (#1067, #1069)
589
+ - Fixed issue with site not being recompiled fully when switching between environments (#1067, #1069)
579
590
 
580
591
  ## 4.5.3 (2017-01-15)
581
592
 
582
593
  Fixes:
583
594
 
584
- * Fixed “Fixnum is deprecated” message (#1061, #1062)
585
- * Fixed `:pre` snapshot not being created for items that are not laid out (#1064, #1065)
595
+ - Fixed “Fixnum is deprecated” message (#1061, #1062)
596
+ - Fixed `:pre` snapshot not being created for items that are not laid out (#1064, #1065)
586
597
 
587
598
  ## 4.5.2 (2017-01-11)
588
599
 
589
600
  Fixes:
590
601
 
591
- * Fixed handling of periods in full identifiers (#1022, #1059)
592
- * Fixed “cannot layout binary items” error message (#1058)
593
- * Fixed escaping of URLs in sitemaps (#1052, #1054)
602
+ - Fixed handling of periods in full identifiers (#1022, #1059)
603
+ - Fixed “cannot layout binary items” error message (#1058)
604
+ - Fixed escaping of URLs in sitemaps (#1052, #1054)
594
605
 
595
606
  ## 4.5.1 (2017-01-09)
596
607
 
597
608
  Fixes:
598
609
 
599
- * Fixed crash when Nokogiri is not installed (#1053)
610
+ - Fixed crash when Nokogiri is not installed (#1053)
600
611
 
601
612
  ## 4.5 (2017-01-09)
602
613
 
603
614
  Features:
604
615
 
605
- * Added Git deployer (#997)
616
+ - Added Git deployer (#997)
606
617
 
607
618
  ## 4.4.7 (2017-01-05)
608
619
 
609
620
  Fixes:
610
621
 
611
- * Fixed issue that caused an item not to be considered outdated when only the mtime has changed (#1046)
612
- * Removed stray `require 'parallel'` which could break the `external_links` check (#1051) [Cédric Boutillier]
622
+ - Fixed issue that caused an item not to be considered outdated when only the mtime has changed (#1046)
623
+ - Removed stray `require 'parallel'` which could break the `external_links` check (#1051) [Cédric Boutillier]
613
624
 
614
625
  Enhancements:
615
626
 
616
- * Made Nanoc not recompile compiled items after an exception occurs (#1044)
627
+ - Made Nanoc not recompile compiled items after an exception occurs (#1044)
617
628
 
618
629
  ## 4.4.6 (2016-12-28)
619
630
 
620
631
  Fixes:
621
632
 
622
- * Fixed issue where `#compiled_content` would not return the correct content (#1040, #1041)
633
+ - Fixed issue where `#compiled_content` would not return the correct content (#1040, #1041)
623
634
 
624
635
  ## 4.4.5 (2016-12-24)
625
636
 
626
637
  Fixes:
627
638
 
628
- * Prevented stale data from making it into the checksum store and thereby blowing up in memory (#1004, #1027)
629
- * Fixed slow recompile after adding many items to a site (#1028)
630
- * Fixed wrong capturing helper output when the output field separator (`$,`) is set
631
- * Fixed issue that could cause items with multiple reps not to be recompiled when needed (#1031, #1032)
632
- * Fixed error when fetching textual content of item whose `:last` snapshot is binary (#1035, #1036)
639
+ - Prevented stale data from making it into the checksum store and thereby blowing up in memory (#1004, #1027)
640
+ - Fixed slow recompile after adding many items to a site (#1028)
641
+ - Fixed wrong capturing helper output when the output field separator (`$,`) is set
642
+ - Fixed issue that could cause items with multiple reps not to be recompiled when needed (#1031, #1032)
643
+ - Fixed error when fetching textual content of item whose `:last` snapshot is binary (#1035, #1036)
633
644
 
634
645
  ## 4.4.4 (2016-12-19)
635
646
 
636
647
  Enhancements:
637
648
 
638
- * Improved speed of incremental compilations (#1017, #1019, #1024)
649
+ - Improved speed of incremental compilations (#1017, #1019, #1024)
639
650
 
640
651
  ## 4.4.3 (2016-12-17)
641
652
 
642
653
  Fixes:
643
654
 
644
- * Prevented stale data from making it into the compiled content cache and thereby blowing up in memory (#1004, #1013)
645
- * Fixed “about” and “IRC channel” links in default site
646
- * Fixed accuracy of `<updated>` in Atom feed (use most recent `updated_at` or `created_at`) (#1007, #1014)
655
+ - Prevented stale data from making it into the compiled content cache and thereby blowing up in memory (#1004, #1013)
656
+ - Fixed “about” and “IRC channel” links in default site
657
+ - Fixed accuracy of `<updated>` in Atom feed (use most recent `updated_at` or `created_at`) (#1007, #1014)
647
658
 
648
659
  Enhancements:
649
660
 
650
- * Added support for non-legacy identifiers in `#breadcrumbs_trail` (#1010, #1011)
651
- * Defined checksum for `Nanoc::Int::Context` to make outdatedness checker more precise (#1008, #1012)
652
- * Made Nanoc raise an error when item reps are routed to a path that does not start with a slash (#1015, #1016)
661
+ - Added support for non-legacy identifiers in `#breadcrumbs_trail` (#1010, #1011)
662
+ - Defined checksum for `Nanoc::Int::Context` to make outdatedness checker more precise (#1008, #1012)
663
+ - Made Nanoc raise an error when item reps are routed to a path that does not start with a slash (#1015, #1016)
653
664
 
654
665
  ## 4.4.2 (2016-11-27)
655
666
 
656
667
  Fixes:
657
668
 
658
- * Fixed “Maximum call stack size exceeded” issue in the `less` filter (#1001)
659
- * Fixed issue that could cause the `less` filter to not generate all necessary dependencies (#1003)
669
+ - Fixed “Maximum call stack size exceeded” issue in the `less` filter (#1001)
670
+ - Fixed issue that could cause the `less` filter to not generate all necessary dependencies (#1003)
660
671
 
661
672
  Enhancements:
662
673
 
663
- * Improved the way that the crash log displays the item rep that is being compiled (#1000)
674
+ - Improved the way that the crash log displays the item rep that is being compiled (#1000)
664
675
 
665
676
  ## 4.4.1 (2016-11-21)
666
677
 
667
678
  Fixes:
668
679
 
669
- * Fixed an issue where the `xsl` filter would not generate a correct dependency on the layout (#996)
680
+ - Fixed an issue where the `xsl` filter would not generate a correct dependency on the layout (#996)
670
681
 
671
682
  Enhancements:
672
683
 
673
- * Made `view` command use index filenames specified in the `index_filenames` site configuration attribute (#998)
684
+ - Made `view` command use index filenames specified in the `index_filenames` site configuration attribute (#998)
674
685
 
675
686
  ## 4.4 (2016-11-19)
676
687
 
677
688
  Features:
678
689
 
679
- * Added support for Nanoc environments (#859)
690
+ - Added support for Nanoc environments (#859)
680
691
 
681
692
  ## 4.3.8 (2016-11-18)
682
693
 
683
694
  Enhancements:
684
695
 
685
- * Improved support for Rouge 1.x and 2.x (#880) [Rémi Barraquand]
686
- * Added `#include` to the `nanoc shell` command (#973)
687
- * Improved speed of full and incremental compilations (#977, #985)
696
+ - Improved support for Rouge 1.x and 2.x (#880) [Rémi Barraquand]
697
+ - Added `#include` to the `nanoc shell` command (#973)
698
+ - Improved speed of full and incremental compilations (#977, #985)
688
699
 
689
700
  Fixes:
690
701
 
691
- * Made routing rules and `#write` calls accept an identifier, and not just a string (#976)
692
- * Removed GC speed-up hacks, which became counterproductive in Ruby 2.2 (#975)
693
- * Fixed issue which caused items to be always recompiled if `rep`/`item_rep` or `self` are used in those items’ rules (#982)
702
+ - Made routing rules and `#write` calls accept an identifier, and not just a string (#976)
703
+ - Removed GC speed-up hacks, which became counterproductive in Ruby 2.2 (#975)
704
+ - Fixed issue which caused items to be always recompiled if `rep`/`item_rep` or `self` are used in those items’ rules (#982)
694
705
 
695
706
  ## 4.3.7 (2016-10-29)
696
707
 
697
708
  Fixes:
698
709
 
699
- * Fixed issue with `show-data` and `show-rules` commands not showing all data (#970) [Chris Chapman]
710
+ - Fixed issue with `show-data` and `show-rules` commands not showing all data (#970) [Chris Chapman]
700
711
 
701
712
  Enhancements:
702
713
 
703
- * Improved speed of `compile` command (#968)
704
- * Improved speed of `prune` command (#969)
705
- * Made kramdown warnings include affected item rep (#967) [Gregory Pakosz]
706
- * Made kramdown warnings configurable (#967) [Gregory Pakosz]
714
+ - Improved speed of `compile` command (#968)
715
+ - Improved speed of `prune` command (#969)
716
+ - Made kramdown warnings include affected item rep (#967) [Gregory Pakosz]
717
+ - Made kramdown warnings configurable (#967) [Gregory Pakosz]
707
718
 
708
719
  ## 4.3.6 (2016-10-23)
709
720
 
710
721
  Fixes:
711
722
 
712
- * Made legacy patterns properly support full identifiers (#957)
713
- * Fixed timezone issues in `#to_iso8601_date` (#961)
714
- * Fixed error when accessing item (rep) paths in shell command (#963)
715
- * Fixed issue that caused `#path` to be nil inside compilation rules (#964)
716
- * Made `__FILE__` in Checks file be a absolute path (#966)
723
+ - Made legacy patterns properly support full identifiers (#957)
724
+ - Fixed timezone issues in `#to_iso8601_date` (#961)
725
+ - Fixed error when accessing item (rep) paths in shell command (#963)
726
+ - Fixed issue that caused `#path` to be nil inside compilation rules (#964)
727
+ - Made `__FILE__` in Checks file be a absolute path (#966)
717
728
 
718
729
  Enhancements:
719
730
 
720
- * Made the command line write status information to stderr, not stdout (#958)
731
+ - Made the command line write status information to stderr, not stdout (#958)
721
732
 
722
733
  ## 4.3.5 (2016-10-14)
723
734
 
724
735
  Fixes:
725
736
 
726
- * Handle `form/@action` in `relativize_paths` filter (#950) [Lorin Werthen]
737
+ - Handle `form/@action` in `relativize_paths` filter (#950) [Lorin Werthen]
727
738
 
728
739
  Experimental features:
729
740
 
730
- * `profiler`: adds `--profile` option to the `compile` command to profile compilation (#903)
731
- * `environments`: adds support for Nanoc environments (#859)
741
+ - `profiler`: adds `--profile` option to the `compile` command to profile compilation (#903)
742
+ - `environments`: adds support for Nanoc environments (#859)
732
743
 
733
744
  ## 4.3.4 (2016-10-02)
734
745
 
735
746
  Fixes:
736
747
 
737
- * Fixed compilation crash when output directory does not exist and auto-pruning is enabled (#948, #949)
748
+ - Fixed compilation crash when output directory does not exist and auto-pruning is enabled (#948, #949)
738
749
 
739
750
  ## 4.3.3 (2016-09-26)
740
751
 
741
752
  Fixes:
742
753
 
743
- * Fixed issue causing `Bundler::GemfileNotFound` to be thrown (#936) [Lorin Werthen]
744
- * Fixed issue when replacing a directory with a file or vice versa (#942, #946)
754
+ - Fixed issue causing `Bundler::GemfileNotFound` to be thrown (#936) [Lorin Werthen]
755
+ - Fixed issue when replacing a directory with a file or vice versa (#942, #946)
745
756
 
746
757
  Enhancements:
747
758
 
748
- * Modified the `compile` command to allow specifying the deploy target as argument (#945)
759
+ - Modified the `compile` command to allow specifying the deploy target as argument (#945)
749
760
 
750
761
  ## 4.3.2 (2016-08-23)
751
762
 
@@ -755,67 +766,67 @@ Identical to 4.3.1, but with corrected release notes.
755
766
 
756
767
  Fixes:
757
768
 
758
- * Fixed “outdatedness of LayoutView” error (#927, #931)
759
- * Fixed bug causing some checks not to appear in `nanoc check --list` (#928, #930)
760
- * Fixed `@item`, … not being accessible in filters defined with `Nanoc::Filter.define` (#932, #934)
769
+ - Fixed “outdatedness of LayoutView” error (#927, #931)
770
+ - Fixed bug causing some checks not to appear in `nanoc check --list` (#928, #930)
771
+ - Fixed `@item`, … not being accessible in filters defined with `Nanoc::Filter.define` (#932, #934)
761
772
 
762
773
  ## 4.3 (2016-08-21)
763
774
 
764
775
  Features:
765
776
 
766
- * Added `Nanoc::Filter.define`, to easily define filters (#895)
767
- * Made the `nanoc` Gemfile group be auto-required when Nanoc starts (#910) [whitequark]
777
+ - Added `Nanoc::Filter.define`, to easily define filters (#895)
778
+ - Made the `nanoc` Gemfile group be auto-required when Nanoc starts (#910) [whitequark]
768
779
 
769
780
  ## 4.2.4 (2016-07-24)
770
781
 
771
782
  Fixes:
772
783
 
773
- * Fixed `UnmetDependency` errors in postprocessor (#913, #917)
784
+ - Fixed `UnmetDependency` errors in postprocessor (#913, #917)
774
785
 
775
786
  Enhancements:
776
787
 
777
- * Sped up Nanoc by not releasing cache memory as quickly (#902)
778
- * Let `internal_links` check also verify resource paths, such as scripts and images (#912) [Lorin Werthen]
779
- * Improved error reporting for errors in the Rules file (#908, #914, #915, #916)
780
- * Removed `win32console` support, as it’s deprecated and causing problems (#900, #918)
788
+ - Sped up Nanoc by not releasing cache memory as quickly (#902)
789
+ - Let `internal_links` check also verify resource paths, such as scripts and images (#912) [Lorin Werthen]
790
+ - Improved error reporting for errors in the Rules file (#908, #914, #915, #916)
791
+ - Removed `win32console` support, as it’s deprecated and causing problems (#900, #918)
781
792
 
782
793
  ## 4.2.3 (2016-07-03)
783
794
 
784
795
  Fixes:
785
796
 
786
- * Fixed issue with `#inspect` raising a `WeakRef::RefError` (#877, #897)
797
+ - Fixed issue with `#inspect` raising a `WeakRef::RefError` (#877, #897)
787
798
 
788
799
  Enhancements:
789
800
 
790
- * Sped up compiler (#894)
791
- * Improved `#inspect` output of some classes (#896)
792
- * Deprecated `Item#modified` and replaced it with `Item#modified_reps` (#898)
801
+ - Sped up compiler (#894)
802
+ - Improved `#inspect` output of some classes (#896)
803
+ - Deprecated `Item#modified` and replaced it with `Item#modified_reps` (#898)
793
804
 
794
805
  ## 4.2.2 (2016-07-02)
795
806
 
796
807
  Fixes:
797
808
 
798
- * Fixed confusing “invalid prefix” error message (#873, #879)
799
- * Ensured filter arguments are frozen, to prevent outdatedness checker errors (#881, #886)
800
- * Fixed issue with dependencies of items generated in the preprocessor not being tracked (#885, #891, #893)
809
+ - Fixed confusing “invalid prefix” error message (#873, #879)
810
+ - Ensured filter arguments are frozen, to prevent outdatedness checker errors (#881, #886)
811
+ - Fixed issue with dependencies of items generated in the preprocessor not being tracked (#885, #891, #893)
801
812
 
802
813
  Enhancements:
803
814
 
804
- * Added specific handling for `Sass::Importers::Filesystem` in the checksummer, which should reduce unnecessary recompiles in sites using Compass (#866, #884)
805
- * Improved speed of checksummer (#864, #887)
815
+ - Added specific handling for `Sass::Importers::Filesystem` in the checksummer, which should reduce unnecessary recompiles in sites using Compass (#866, #884)
816
+ - Improved speed of checksummer (#864, #887)
806
817
 
807
818
  ## 4.2.1 (2016-06-19)
808
819
 
809
820
  Fixes:
810
821
 
811
- * Fixed an occasional `WeakRef::RefError` (#863, #865)
812
- * Fixed `show-data` command not running preprocessor (#867, #870)
822
+ - Fixed an occasional `WeakRef::RefError` (#863, #865)
823
+ - Fixed `show-data` command not running preprocessor (#867, #870)
813
824
 
814
825
  ## 4.2 (2016-06-04)
815
826
 
816
827
  Enhancements:
817
828
 
818
- * Dropped Ruby 2.1 support (#856)
829
+ - Dropped Ruby 2.1 support (#856)
819
830
 
820
831
  This release also includes the changes from 4.2.0b1.
821
832
 
@@ -823,81 +834,81 @@ This release also includes the changes from 4.2.0b1.
823
834
 
824
835
  Fixes:
825
836
 
826
- * Strip index.html only if it is a full component (#850, #851)
827
- * Force UTF-8 for item rep paths (#837, #852)
837
+ - Strip index.html only if it is a full component (#850, #851)
838
+ - Force UTF-8 for item rep paths (#837, #852)
828
839
 
829
840
  ## 4.2.0b1 (2016-04-17)
830
841
 
831
842
  Features:
832
843
 
833
- * Allow creating items and layouts with a pre-calculated checksum (#793) [Ruben Verborgh]
834
- * Allow lazy-loading item/layout content and attributes (#794) [Ruben Verborgh]
835
- * Added `exclude_origins` configuration option to internal links checker (#847)
836
- * Added `ChildParent` helper, providing `#children_of` and `#parent_of` (#849)
844
+ - Allow creating items and layouts with a pre-calculated checksum (#793) [Ruben Verborgh]
845
+ - Allow lazy-loading item/layout content and attributes (#794) [Ruben Verborgh]
846
+ - Added `exclude_origins` configuration option to internal links checker (#847)
847
+ - Added `ChildParent` helper, providing `#children_of` and `#parent_of` (#849)
837
848
 
838
849
  Enhancements:
839
850
 
840
- * Made `#html_escape` raise an appropriate error when the given argument is not a String (#840) [Micha Rosenbaum]
841
- * Improved memory usage of memoized values by using weak refs (#846)
851
+ - Made `#html_escape` raise an appropriate error when the given argument is not a String (#840) [Micha Rosenbaum]
852
+ - Improved memory usage of memoized values by using weak refs (#846)
842
853
 
843
854
  ## 4.1.5 (2016-03-24)
844
855
 
845
856
  Fixes:
846
857
 
847
- * Fixed crash in `show-data` command (#833, #835)
848
- * Fixed preprocessor not being invoked before running checks (#841, #842)
858
+ - Fixed crash in `show-data` command (#833, #835)
859
+ - Fixed preprocessor not being invoked before running checks (#841, #842)
849
860
 
850
861
  ## 4.1.4 (2016-02-13)
851
862
 
852
863
  Fixes:
853
864
 
854
- * Added missing `Configuration#key?` method (#815, #820)
855
- * Made output diff use correct snapshot rather than `:last` (#813, #814)
865
+ - Added missing `Configuration#key?` method (#815, #820)
866
+ - Made output diff use correct snapshot rather than `:last` (#813, #814)
856
867
 
857
868
  Enhancements:
858
869
 
859
- * Sped up item resolution in Sass filter (#821)
860
- * Made `#link_to` more resilient to unsupported argument types (#816, #819)
870
+ - Sped up item resolution in Sass filter (#821)
871
+ - Made `#link_to` more resilient to unsupported argument types (#816, #819)
861
872
 
862
873
  ## 4.1.3 (2016-01-30)
863
874
 
864
875
  Fixes:
865
876
 
866
- * Fixed crash in `check` command when the subject of an issue is nil (#804, #811)
867
- * Made stale check not ignore non-final snapshot paths (#809, #810)
877
+ - Fixed crash in `check` command when the subject of an issue is nil (#804, #811)
878
+ - Made stale check not ignore non-final snapshot paths (#809, #810)
868
879
 
869
880
  ## 4.1.2 (2016-01-16)
870
881
 
871
882
  Fixes:
872
883
 
873
- * Made @-variables (e.g. `@items`) report their frozenness properly, so that optimisations based on frozenness work once again (#795, #797)
874
- * Removed environment from `crash.log` to prevent leaking sensitive information (#798, #800)
884
+ - Made @-variables (e.g. `@items`) report their frozenness properly, so that optimisations based on frozenness work once again (#795, #797)
885
+ - Removed environment from `crash.log` to prevent leaking sensitive information (#798, #800)
875
886
 
876
887
  Enhancements:
877
888
 
878
- * Removed redundant checksum calculation (#789) [Ruben Verborgh]
889
+ - Removed redundant checksum calculation (#789) [Ruben Verborgh]
879
890
 
880
891
  ## 4.1.1 (2015-12-30)
881
892
 
882
893
  Fixes:
883
894
 
884
- * Fixed preprocessor not being run before check/deploy/prune commands (#763, #784, #787, #788)
895
+ - Fixed preprocessor not being run before check/deploy/prune commands (#763, #784, #787, #788)
885
896
 
886
897
  Enhancements:
887
898
 
888
- * Made `#breadcrumbs_trail` explicitly fail when using full identifiers (#781, #783)
899
+ - Made `#breadcrumbs_trail` explicitly fail when using full identifiers (#781, #783)
889
900
 
890
901
  ## 4.1 (2015-12-18)
891
902
 
892
903
  Fixes:
893
904
 
894
- * Fixed crash when attempting to `#puts` an object that’s not a string (#778)
895
- * Made pruner not prune away files from routes defined for custom snapshots (#779)
896
- * Wrapped `@layout` in a layout view (#773)
905
+ - Fixed crash when attempting to `#puts` an object that’s not a string (#778)
906
+ - Made pruner not prune away files from routes defined for custom snapshots (#779)
907
+ - Wrapped `@layout` in a layout view (#773)
897
908
 
898
909
  Enhancements:
899
910
 
900
- * Added a base path to the Checks file, so that it supports `#require_relative` (#774)
911
+ - Added a base path to the Checks file, so that it supports `#require_relative` (#774)
901
912
 
902
913
  This release also includes the changes from 4.1.0a1 to 4.1.0rc2.
903
914
 
@@ -905,77 +916,77 @@ This release also includes the changes from 4.1.0a1 to 4.1.0rc2.
905
916
 
906
917
  Fixes:
907
918
 
908
- * Fixed children of the root item not having a parent (#769, #770)
919
+ - Fixed children of the root item not having a parent (#769, #770)
909
920
 
910
921
  Enhancements:
911
922
 
912
- * Made `#path`, `#compiled_content` and `#reps` unavailable during pre-processing, compilation and routing, because they do not make sense in these contexts (#571, #767, #768)
923
+ - Made `#path`, `#compiled_content` and `#reps` unavailable during pre-processing, compilation and routing, because they do not make sense in these contexts (#571, #767, #768)
913
924
 
914
925
  ## 4.1.0rc1 (2015-12-12)
915
926
 
916
927
  Fixes:
917
928
 
918
- * Fixed `@item.compiled_content` in a layout raising an exception (#761, #766)
929
+ - Fixed `@item.compiled_content` in a layout raising an exception (#761, #766)
919
930
 
920
931
  ## 4.1.0b1 (2015-12-11)
921
932
 
922
933
  Fixes:
923
934
 
924
- * Fixed issue with `:pre` snapshot not being generated properly (#764)
935
+ - Fixed issue with `:pre` snapshot not being generated properly (#764)
925
936
 
926
937
  Enhancements:
927
938
 
928
- * Updated default site to use `#write` (#759)
939
+ - Updated default site to use `#write` (#759)
929
940
 
930
941
  ## 4.1.0a1 (2015-12-05)
931
942
 
932
943
  Features:
933
944
 
934
- * Added `postprocess` block (#726) [Garen Torikian]
935
- * Added `#write` compilation instruction and `path` option to `#snapshot` (#753)
945
+ - Added `postprocess` block (#726) [Garen Torikian]
946
+ - Added `#write` compilation instruction and `path` option to `#snapshot` (#753)
936
947
 
937
948
  Fixes:
938
949
 
939
- * Fixed crash when printing non-string object (#712) [Garen Torikian]
940
- * Removed English text from `#link_to` helper (#736) [Lucas Vuotto]
950
+ - Fixed crash when printing non-string object (#712) [Garen Torikian]
951
+ - Removed English text from `#link_to` helper (#736) [Lucas Vuotto]
941
952
 
942
953
  Enhancements:
943
954
 
944
- * Allowed excluding URLs from external links check (#686) [Yannick Ihmels]
945
- * Added `atom` to list of text extensions (#657) [Yannick Ihmels]
946
- * Added `#each` to `Nanoc::ConfigView` (#705) [Garen Torikian]
947
- * Made `#attribute_to_time` handle `DateTime` (#717) [Micha Rosenbaum]
948
- * Added `Identifier#components` (#677)
949
- * Added `:existing` option to `#content_for` (can be `:error`, `:overwrite` and `:append`) (#744)
955
+ - Allowed excluding URLs from external links check (#686) [Yannick Ihmels]
956
+ - Added `atom` to list of text extensions (#657) [Yannick Ihmels]
957
+ - Added `#each` to `Nanoc::ConfigView` (#705) [Garen Torikian]
958
+ - Made `#attribute_to_time` handle `DateTime` (#717) [Micha Rosenbaum]
959
+ - Added `Identifier#components` (#677)
960
+ - Added `:existing` option to `#content_for` (can be `:error`, `:overwrite` and `:append`) (#744)
950
961
 
951
962
  ## 4.0.2 (2015-11-30)
952
963
 
953
964
  Fixes:
954
965
 
955
- * Properly set required Ruby version to 2.1 in the gem specification (#747)
956
- * Fixed issue with CLI commands not being loaded as UTF-8 (#742)
957
- * Added missing `#identifier=` method to items and layouts during preprocessing (#750)
966
+ - Properly set required Ruby version to 2.1 in the gem specification (#747)
967
+ - Fixed issue with CLI commands not being loaded as UTF-8 (#742)
968
+ - Added missing `#identifier=` method to items and layouts during preprocessing (#750)
958
969
 
959
970
  Enhancements:
960
971
 
961
- * Let attempts to fetch an item rep by number, rather than symbol, fail with a meaningful error (#749)
972
+ - Let attempts to fetch an item rep by number, rather than symbol, fail with a meaningful error (#749)
962
973
 
963
974
  ## 4.0.1 (2015-11-28)
964
975
 
965
976
  Fixes:
966
977
 
967
- * Fixed params documentation for :rdiscount filter (#722)
968
- * Fixed crash when comparing item rep views (#735, #738)
978
+ - Fixed params documentation for :rdiscount filter (#722)
979
+ - Fixed crash when comparing item rep views (#735, #738)
969
980
 
970
981
  Enhancements:
971
982
 
972
- * Lowered minimum required Ruby version from 2.2 to 2.1 (#732)
983
+ - Lowered minimum required Ruby version from 2.2 to 2.1 (#732)
973
984
 
974
985
  ## 4.0 (2015-11-07)
975
986
 
976
987
  Enhancements:
977
988
 
978
- * `#parent` and `#children` now raise an exception when used on items with a non-legacy identifier (#710)
989
+ - `#parent` and `#children` now raise an exception when used on items with a non-legacy identifier (#710)
979
990
 
980
991
  This release also includes the changes from 4.0.0a1 to 4.0.0rc3.
981
992
 
@@ -983,134 +994,134 @@ This release also includes the changes from 4.0.0a1 to 4.0.0rc3.
983
994
 
984
995
  Features:
985
996
 
986
- * Added `Identifier#without_exts` and `Identifier#exts` (#644, #696) [Rémi Barraquand]
987
- * Added `DocumentView#attributes` (#699, #702)
997
+ - Added `Identifier#without_exts` and `Identifier#exts` (#644, #696) [Rémi Barraquand]
998
+ - Added `DocumentView#attributes` (#699, #702)
988
999
 
989
1000
  Fixes:
990
1001
 
991
- * Fixed issue when comparing document views (#680, #693)
1002
+ - Fixed issue when comparing document views (#680, #693)
992
1003
 
993
1004
  Enhancements:
994
1005
 
995
- * Made `#base_url` argument in `#tags_for` optional (#687) [Croath Liu]
996
- * Allowed `IdentifiableCollection#[]` to be passed an identifier (#681, #695)
997
- * Improved `Pattern.from` error message (#683, #692)
998
- * Let default site use a direct link to the stylesheet (#685, #701)
1006
+ - Made `#base_url` argument in `#tags_for` optional (#687) [Croath Liu]
1007
+ - Allowed `IdentifiableCollection#[]` to be passed an identifier (#681, #695)
1008
+ - Improved `Pattern.from` error message (#683, #692)
1009
+ - Let default site use a direct link to the stylesheet (#685, #701)
999
1010
 
1000
1011
  Changes:
1001
1012
 
1002
- * Removed `Identifier#with_ext` because its behavior was confusing (#697, #700)
1003
- * Disallowed storing document (views) in attributes (#682, #694)
1013
+ - Removed `Identifier#with_ext` because its behavior was confusing (#697, #700)
1014
+ - Disallowed storing document (views) in attributes (#682, #694)
1004
1015
 
1005
1016
  ## 4.0.0rc2 (2015-07-11)
1006
1017
 
1007
1018
  Fixes:
1008
1019
 
1009
- * Fixed broken `shell` command (#672) [Jim Mendenhall]
1010
- * Fixed absolute path check on Windows (#656)
1020
+ - Fixed broken `shell` command (#672) [Jim Mendenhall]
1021
+ - Fixed absolute path check on Windows (#656)
1011
1022
 
1012
1023
  Enhancements:
1013
1024
 
1014
- * Made Nanoc error when multiple items have the same output path (#665, #669)
1015
- * Improved error message for non-hash frontmatter (#670, #673)
1025
+ - Made Nanoc error when multiple items have the same output path (#665, #669)
1026
+ - Improved error message for non-hash frontmatter (#670, #673)
1016
1027
 
1017
1028
  Changes:
1018
1029
 
1019
- * nanoc is now called Nanoc
1030
+ - nanoc is now called Nanoc
1020
1031
 
1021
1032
  ## 4.0.0rc1 (2015-06-21)
1022
1033
 
1023
1034
  Fixes:
1024
1035
 
1025
- * Fixed double-wrapping of `@layout` in rendering helper (#631)
1026
- * Fixed `show-rules` command (#633)
1036
+ - Fixed double-wrapping of `@layout` in rendering helper (#631)
1037
+ - Fixed `show-rules` command (#633)
1027
1038
 
1028
1039
  ## 4.0.0b4 (2015-06-10)
1029
1040
 
1030
1041
  Fixes:
1031
1042
 
1032
- * Added missing `#ext` method to identifiers (#612)
1033
- * Fixed issue where identifiers would have the wrong extension (#611)
1034
- * Fixed rule context exposing entities rather than views (#614, #615)
1035
- * Fixed `#key?` and `#fetch` not being available on layout views (#618)
1036
- * Fixed `#update_attributes` not being available on mutable layout views (#619)
1043
+ - Added missing `#ext` method to identifiers (#612)
1044
+ - Fixed issue where identifiers would have the wrong extension (#611)
1045
+ - Fixed rule context exposing entities rather than views (#614, #615)
1046
+ - Fixed `#key?` and `#fetch` not being available on layout views (#618)
1047
+ - Fixed `#update_attributes` not being available on mutable layout views (#619)
1037
1048
 
1038
1049
  ## 4.0.0b3 (2015-05-31)
1039
1050
 
1040
1051
  Changes:
1041
1052
 
1042
- * Removed `filesystem_verbose` data source (#599)
1043
- * Set minimum required Ruby version to 2.2
1053
+ - Removed `filesystem_verbose` data source (#599)
1054
+ - Set minimum required Ruby version to 2.2
1044
1055
 
1045
1056
  Enhancements:
1046
1057
 
1047
- * Made `@config`, `@items` and `@layouts` available in checks (#598)
1048
- * Made `filesystem` an alias for `filesystem_unified` (#599)
1049
- * Made specific reps for an item accessible using `@item.reps[:name]` (#586, #607)
1050
- * Removed `allow_periods_in_identifiers` documentation (#605)
1051
- * Made fog deployer not upload files with identical ETags to AWS (#480, #536, #552) [Paul Boone]
1058
+ - Made `@config`, `@items` and `@layouts` available in checks (#598)
1059
+ - Made `filesystem` an alias for `filesystem_unified` (#599)
1060
+ - Made specific reps for an item accessible using `@item.reps[:name]` (#586, #607)
1061
+ - Removed `allow_periods_in_identifiers` documentation (#605)
1062
+ - Made fog deployer not upload files with identical ETags to AWS (#480, #536, #552) [Paul Boone]
1052
1063
 
1053
1064
  Fixes:
1054
1065
 
1055
- * Made `ItemView#parent` return nil if parent is nil (#600, #602)
1056
- * Added missing `identifier_type` documentation (#604)
1066
+ - Made `ItemView#parent` return nil if parent is nil (#600, #602)
1067
+ - Added missing `identifier_type` documentation (#604)
1057
1068
 
1058
1069
  ## 4.0.0b2 (2015-05-23)
1059
1070
 
1060
1071
  Changes:
1061
1072
 
1062
- * Removed `ItemCollectionView#at` (#582)
1063
- * Removed support for calling `ItemCollectionView#[]` with an integer (#582)
1064
- * Renamed `identifier_style` to `identifier_type`, and made its values be `"full"` or `"legacy"` (#593)
1065
- * Renamed `pattern_syntax` to `string_pattern_type`, and made its values be `"glob"` or `"legacy"` (#593)
1066
- * Made `"full"` the default for `identifier_type` (#592, #594)
1067
- * Made `"glob"` the default for `string_pattern_type` (#592)
1068
- * Enabled auto-pruning by default for new sites (#590)
1073
+ - Removed `ItemCollectionView#at` (#582)
1074
+ - Removed support for calling `ItemCollectionView#[]` with an integer (#582)
1075
+ - Renamed `identifier_style` to `identifier_type`, and made its values be `"full"` or `"legacy"` (#593)
1076
+ - Renamed `pattern_syntax` to `string_pattern_type`, and made its values be `"glob"` or `"legacy"` (#593)
1077
+ - Made `"full"` the default for `identifier_type` (#592, #594)
1078
+ - Made `"glob"` the default for `string_pattern_type` (#592)
1079
+ - Enabled auto-pruning by default for new sites (#590)
1069
1080
 
1070
1081
  Enhancements:
1071
1082
 
1072
- * Added `--force` to `create-site` command (#580) [David Alexander]
1073
- * Made default Rules file more future-proof (#591)
1083
+ - Added `--force` to `create-site` command (#580) [David Alexander]
1084
+ - Made default Rules file more future-proof (#591)
1074
1085
 
1075
1086
  Fixes:
1076
1087
 
1077
- * Fixed `LayoutCollectionView#[]` documentation (it mentioned items)
1078
- * Fixed `ItemCollectionView#[]` returning an array when passed a regex
1079
- * Fixed an issue with mutable collection views’ `#delete_if` not yielding mutable views
1080
- * Fixed an issue with collection views’ `#find_all` returning entities instead of views
1088
+ - Fixed `LayoutCollectionView#[]` documentation (it mentioned items)
1089
+ - Fixed `ItemCollectionView#[]` returning an array when passed a regex
1090
+ - Fixed an issue with mutable collection views’ `#delete_if` not yielding mutable views
1091
+ - Fixed an issue with collection views’ `#find_all` returning entities instead of views
1081
1092
 
1082
1093
  ## 4.0.0b1 (2015-05-14)
1083
1094
 
1084
1095
  Changes:
1085
1096
 
1086
- * Removed tasks
1087
- * Removed several private methods in the view API
1088
- * Removed default `base_url` in tagging helper
1097
+ - Removed tasks
1098
+ - Removed several private methods in the view API
1099
+ - Removed default `base_url` in tagging helper
1089
1100
 
1090
1101
  Enhancements:
1091
1102
 
1092
- * Removed unused options from CLI
1093
- * Added `Nanoc::Identifier#without_ext`
1094
- * Made `Nanoc::Identifier#=~` work with a glob
1095
- * Added `Nanoc::LayoutCollectionView#[]`
1096
- * Allowed creation of site in current directory (#549) [David Alexander]
1103
+ - Removed unused options from CLI
1104
+ - Added `Nanoc::Identifier#without_ext`
1105
+ - Made `Nanoc::Identifier#=~` work with a glob
1106
+ - Added `Nanoc::LayoutCollectionView#[]`
1107
+ - Allowed creation of site in current directory (#549) [David Alexander]
1097
1108
 
1098
1109
  Fixes:
1099
1110
 
1100
- * Fixed `#passthrough` for identifiers with extensions
1101
- * Fixed rendering helper for identifiers with extensions
1102
- * Fixed filtering helper
1111
+ - Fixed `#passthrough` for identifiers with extensions
1112
+ - Fixed rendering helper for identifiers with extensions
1113
+ - Fixed filtering helper
1103
1114
 
1104
1115
  ## 4.0.0a2 (2015-05-12)
1105
1116
 
1106
1117
  Features:
1107
1118
 
1108
- * Glob patterns (opt-in by setting `pattern_syntax` to `"glob"` in the site configuration)
1109
- * Identifiers with extensions (opt-in by setting `identifier_style` to `"full"` in the data source configuration)
1119
+ - Glob patterns (opt-in by setting `pattern_syntax` to `"glob"` in the site configuration)
1120
+ - Identifiers with extensions (opt-in by setting `identifier_style` to `"full"` in the data source configuration)
1110
1121
 
1111
1122
  Enhancements:
1112
1123
 
1113
- * Added several convenience methods to view classes (#570, #572)
1124
+ - Added several convenience methods to view classes (#570, #572)
1114
1125
 
1115
1126
  See the [nanoc 4 upgrade guide](https://nanoc.ws/doc/nanoc-4-upgrade-guide/) for details.
1116
1127
 
@@ -1124,96 +1135,96 @@ This release provides no new features, but streamlines the API and functionality
1124
1135
 
1125
1136
  Features:
1126
1137
 
1127
- * Added `mixed_content` check (#542, #543) [Mike Pennisi]
1128
- * Added `commands_dirs` configuration option for specifying directories to read commands from (#475) [Gregory Pakosz]
1129
- * Added `:cdn_id` option to fog deployer for invalidating CDN objects (#451) [Vlatko Kosturjak]
1130
- * Add access to regular expressions group matches in rules (#478) [Michal Papis]
1131
- * Allow filtering the items array by regex (#458) [Mike Pennisi]
1138
+ - Added `mixed_content` check (#542, #543) [Mike Pennisi]
1139
+ - Added `commands_dirs` configuration option for specifying directories to read commands from (#475) [Gregory Pakosz]
1140
+ - Added `:cdn_id` option to fog deployer for invalidating CDN objects (#451) [Vlatko Kosturjak]
1141
+ - Add access to regular expressions group matches in rules (#478) [Michal Papis]
1142
+ - Allow filtering the items array by regex (#458) [Mike Pennisi]
1132
1143
 
1133
1144
  Enhancements:
1134
1145
 
1135
- * Added `:preserve_order` option to preserve order in Atom feed (#533, #534)
1136
- * Allowed accessing `:pre` snapshot from within item itself (#537, #538, #548)
1146
+ - Added `:preserve_order` option to preserve order in Atom feed (#533, #534)
1147
+ - Allowed accessing `:pre` snapshot from within item itself (#537, #538, #548)
1137
1148
 
1138
1149
  Fixes:
1139
1150
 
1140
- * Allowed passing generic Pandoc options with :args (#526, #535)
1141
- * Fix crash when compiling extensionless binary items (#524, #525)
1142
- * Fix double snapshot creation error (#547)
1151
+ - Allowed passing generic Pandoc options with :args (#526, #535)
1152
+ - Fix crash when compiling extensionless binary items (#524, #525)
1153
+ - Fix double snapshot creation error (#547)
1143
1154
 
1144
1155
  ## 3.7.5 (2015-01-12)
1145
1156
 
1146
1157
  Enhancements:
1147
1158
 
1148
- * Allowed extra patterns to be specified in the data source configuration, so that dotfiles are no longer necessary ignored (e.g. `extra_files: ['.htaccess']`) (#492, #498) [Andy Drop, Michal Papis]
1149
- * Removed Ruby 1.8.x support ([details](https://groups.google.com/forum/#!topic/nanoc/pSL1i15EFz8)) (#517)
1150
- * Improved CSS and HTML error messages (#484, #504)
1151
- * Let kramdown filter print warnings (#459, #519)
1159
+ - Allowed extra patterns to be specified in the data source configuration, so that dotfiles are no longer necessary ignored (e.g. `extra_files: ['.htaccess']`) (#492, #498) [Andy Drop, Michal Papis]
1160
+ - Removed Ruby 1.8.x support ([details](https://groups.google.com/forum/#!topic/nanoc/pSL1i15EFz8)) (#517)
1161
+ - Improved CSS and HTML error messages (#484, #504)
1162
+ - Let kramdown filter print warnings (#459, #519)
1152
1163
 
1153
1164
  Fixes:
1154
1165
 
1155
- * Fixed HTML class names for recent Rouge versions (#502)
1156
- * Fixed crash when using items or layouts in attributes (#469, #518)
1166
+ - Fixed HTML class names for recent Rouge versions (#502)
1167
+ - Fixed crash when using items or layouts in attributes (#469, #518)
1157
1168
 
1158
1169
  ## 3.7.4 (2014-11-23)
1159
1170
 
1160
1171
  Enhancements:
1161
1172
 
1162
- * Made `check` command fail when output directory is missing (#472) [Mike Pennisi]
1163
- * Made external links check timeouts start small and grow (#483) [Michal Papis]
1164
- * Made code and API adhere much more closely to the Ruby style guide (#476)
1173
+ - Made `check` command fail when output directory is missing (#472) [Mike Pennisi]
1174
+ - Made external links check timeouts start small and grow (#483) [Michal Papis]
1175
+ - Made code and API adhere much more closely to the Ruby style guide (#476)
1165
1176
 
1166
1177
  Fixes:
1167
1178
 
1168
- * Fixed potential “parent directory is world writable” error (#465, #474)
1169
- * Fixed retrying requests in the external link checker (#483) [Michal Papis]
1170
- * Fixed issue with data sources not being unloaded (#491) [Michal Papis]
1179
+ - Fixed potential “parent directory is world writable” error (#465, #474)
1180
+ - Fixed retrying requests in the external link checker (#483) [Michal Papis]
1181
+ - Fixed issue with data sources not being unloaded (#491) [Michal Papis]
1171
1182
 
1172
1183
  ## 3.7.3 (2014-08-31)
1173
1184
 
1174
1185
  Fixes:
1175
1186
 
1176
- * Fixed issue which caused metadata sections not be recognised in files that use CRLF line endings (#470, #471) [Gregory Pakosz]
1187
+ - Fixed issue which caused metadata sections not be recognised in files that use CRLF line endings (#470, #471) [Gregory Pakosz]
1177
1188
 
1178
1189
  ## 3.7.2 (2014-08-17)
1179
1190
 
1180
1191
  Fixes:
1181
1192
 
1182
- * Fixed broken links to the now defunct RubyForge (#454, #467)
1183
- * Fixed crash when Gemfile is missing but Bundler is installed (#464)
1184
- * Made filesystem data source not strip any whitespace (#463) [Gregory Pakosz]
1193
+ - Fixed broken links to the now defunct RubyForge (#454, #467)
1194
+ - Fixed crash when Gemfile is missing but Bundler is installed (#464)
1195
+ - Made filesystem data source not strip any whitespace (#463) [Gregory Pakosz]
1185
1196
 
1186
1197
  Enhancements:
1187
1198
 
1188
- * Fixed issue which could cause items to be unnecessarily marked as outdated (#461) [Gregory Pakosz]
1189
- * Prevented binary layouts from being generated (#468) [Gregory Pakosz]
1199
+ - Fixed issue which could cause items to be unnecessarily marked as outdated (#461) [Gregory Pakosz]
1200
+ - Prevented binary layouts from being generated (#468) [Gregory Pakosz]
1190
1201
 
1191
1202
  ## 3.7.1 (2014-06-16)
1192
1203
 
1193
1204
  Fixes:
1194
1205
 
1195
- * Fixed bug which would cause nanoc to crash if no Gemfile is present (#447, #449)
1206
+ - Fixed bug which would cause nanoc to crash if no Gemfile is present (#447, #449)
1196
1207
 
1197
1208
  ## 3.7 (2014-06-08)
1198
1209
 
1199
1210
  New features:
1200
1211
 
1201
- * Allowed excluding links from the internal links check (`@config[:checks][:internal_links][:exclude]`) (#242) [Remko Tronçon]
1202
- * Added Rouge syntax coloring filter (#398) [Guilherme Garnier]
1203
- * Backported `after_setup` from nanoc 4 to make it easier to create CLI plugins (#407) [Rémi Barraquand]
1204
- * Make lib dirs configurable using `lib_dirs` config attribute (#424) [Gregory Pakosz]
1205
- * Added support for setting parent config dir using `parent_config_file` config attribute (#419) [Gregory Pakosz]
1212
+ - Allowed excluding links from the internal links check (`@config[:checks][:internal_links][:exclude]`) (#242) [Remko Tronçon]
1213
+ - Added Rouge syntax coloring filter (#398) [Guilherme Garnier]
1214
+ - Backported `after_setup` from nanoc 4 to make it easier to create CLI plugins (#407) [Rémi Barraquand]
1215
+ - Make lib dirs configurable using `lib_dirs` config attribute (#424) [Gregory Pakosz]
1216
+ - Added support for setting parent config dir using `parent_config_file` config attribute (#419) [Gregory Pakosz]
1206
1217
 
1207
1218
  Enhancements:
1208
1219
 
1209
- * Added `:with_toc` support to RedCarpet (#222, #232)
1210
- * Added `slim` to the list of text extensions (#316)
1211
- * Made `content/` and `layouts/` dirs configurable (#412) [Gregory Pakosz]
1212
- * Allowed included rules files to have their own preprocess block (#420) [Gregory Pakosz]
1220
+ - Added `:with_toc` support to RedCarpet (#222, #232)
1221
+ - Added `slim` to the list of text extensions (#316)
1222
+ - Made `content/` and `layouts/` dirs configurable (#412) [Gregory Pakosz]
1223
+ - Allowed included rules files to have their own preprocess block (#420) [Gregory Pakosz]
1213
1224
 
1214
1225
  Fixes:
1215
1226
 
1216
- * Fixed bug which caused temporary directories not to be removed (#440, #444)
1227
+ - Fixed bug which caused temporary directories not to be removed (#440, #444)
1217
1228
 
1218
1229
  ## 3.6.11 (2014-05-09)
1219
1230
 
@@ -1225,606 +1236,606 @@ This release was previously known as 3.6.10.1, but was renamed due to incompatib
1225
1236
 
1226
1237
  Fixes:
1227
1238
 
1228
- * Fixed occasional "no such file" error on JRuby (#422)
1229
- * Prevented multiple items and layouts from having the same identifier (#434, #435)
1239
+ - Fixed occasional "no such file" error on JRuby (#422)
1240
+ - Prevented multiple items and layouts from having the same identifier (#434, #435)
1230
1241
 
1231
1242
  Enhancements:
1232
1243
 
1233
- * Set default encoding to UTF-8 (#428)
1234
- * Improved checksummer to reduce number of unnecessary recompiles (#310, #431)
1235
- * Disabled USR1 on JRuby in order to suppress warning (#425, #426)
1236
- * Made pandoc filter argument passing more generic (#210, #433)
1244
+ - Set default encoding to UTF-8 (#428)
1245
+ - Improved checksummer to reduce number of unnecessary recompiles (#310, #431)
1246
+ - Disabled USR1 on JRuby in order to suppress warning (#425, #426)
1247
+ - Made pandoc filter argument passing more generic (#210, #433)
1237
1248
 
1238
1249
  ## 3.6.9 (2014-04-15)
1239
1250
 
1240
1251
  Fixes:
1241
1252
 
1242
- * Fixed path to default stylesheet (#410, #411)
1243
- * Improved reliability of piping from/to external processes in JRuby (#417)
1244
- * Added workaround for “cannot modify” errors when using Nokogiri on JRuby (#416)
1245
- * Made corrupted cached data auto-repair itself if possible (#409, #418)
1253
+ - Fixed path to default stylesheet (#410, #411)
1254
+ - Improved reliability of piping from/to external processes in JRuby (#417)
1255
+ - Added workaround for “cannot modify” errors when using Nokogiri on JRuby (#416)
1256
+ - Made corrupted cached data auto-repair itself if possible (#409, #418)
1246
1257
 
1247
1258
  ## 3.6.8 (2014-03-22)
1248
1259
 
1249
1260
  Fixes:
1250
1261
 
1251
- * Fixed issue with missing compilation durations (#374, #379)
1252
- * Made XSL filter transform item rather than layout (#399, #401) [Simon South]
1253
- * Made XSL filter honor omit-xml-declaration (#403, #404) [Simon South]
1254
- * Removed "see full crash log" line from crash log (#397, #402)
1262
+ - Fixed issue with missing compilation durations (#374, #379)
1263
+ - Made XSL filter transform item rather than layout (#399, #401) [Simon South]
1264
+ - Made XSL filter honor omit-xml-declaration (#403, #404) [Simon South]
1265
+ - Removed "see full crash log" line from crash log (#397, #402)
1255
1266
 
1256
1267
  Enhancements:
1257
1268
 
1258
- * Added warning when multiple preprocessors are defined (#389)
1259
- * Improve stylesheet handling in default site (#339, #395)
1269
+ - Added warning when multiple preprocessors are defined (#389)
1270
+ - Improve stylesheet handling in default site (#339, #395)
1260
1271
 
1261
1272
  ## 3.6.7 (2013-12-09)
1262
1273
 
1263
1274
  Fixes:
1264
1275
 
1265
- * Made Handlebars filter usable outside layouts (#346, #348)
1266
- * Fixed ANSI color support on Windows (#352, #356)
1267
- * Made fog deployer handle prefixes properly (#351) [Oliver Byford]
1268
- * Fixed crash in watcher (#358)
1269
- * Fixed huge durations when showing skipped items after compilation (#360, #364)
1270
- * Fixed output of `--verbose` compilation statistics (#359, #365)
1271
- * Fixed issue with Sass files not recompiling (#350, #370)
1276
+ - Made Handlebars filter usable outside layouts (#346, #348)
1277
+ - Fixed ANSI color support on Windows (#352, #356)
1278
+ - Made fog deployer handle prefixes properly (#351) [Oliver Byford]
1279
+ - Fixed crash in watcher (#358)
1280
+ - Fixed huge durations when showing skipped items after compilation (#360, #364)
1281
+ - Fixed output of `--verbose` compilation statistics (#359, #365)
1282
+ - Fixed issue with Sass files not recompiling (#350, #370)
1272
1283
 
1273
1284
  Enhancements:
1274
1285
 
1275
- * Fixed Windows compatibility issues in test suite (#353) [Raphael von der Grün]
1276
- * Hid deprecated `autocompile` and `watch` commands in help
1277
- * Made CLI swallow broken pipe errors when piping to a process that terminates prematurely (#318, #369)
1286
+ - Fixed Windows compatibility issues in test suite (#353) [Raphael von der Grün]
1287
+ - Hid deprecated `autocompile` and `watch` commands in help
1288
+ - Made CLI swallow broken pipe errors when piping to a process that terminates prematurely (#318, #369)
1278
1289
 
1279
1290
  ## 3.6.6 (2013-11-08)
1280
1291
 
1281
1292
  Enhancements:
1282
1293
 
1283
- * Reduced number of dependencies generated by Sass filter (#306) [Gregory Pakosz]
1284
- * Recognised lowercase `utf` in language value (e.g. `en_US.utf8`) as being UTF-8 (#335, #338)
1285
- * Set [Thin](https://github.com/macournoyer/thin) as the default server for `nanoc view` (#342, #345)
1286
- * Removed watcher section from the default configuration file (#343, #344)
1294
+ - Reduced number of dependencies generated by Sass filter (#306) [Gregory Pakosz]
1295
+ - Recognised lowercase `utf` in language value (e.g. `en_US.utf8`) as being UTF-8 (#335, #338)
1296
+ - Set [Thin](https://github.com/macournoyer/thin) as the default server for `nanoc view` (#342, #345)
1297
+ - Removed watcher section from the default configuration file (#343, #344)
1287
1298
 
1288
1299
  Fixes:
1289
1300
 
1290
- * Prevented capturing helper from erroneously compiling items twice (#331, #337)
1301
+ - Prevented capturing helper from erroneously compiling items twice (#331, #337)
1291
1302
 
1292
1303
  ## 3.6.5 (2013-09-29)
1293
1304
 
1294
1305
  Fixes:
1295
1306
 
1296
- * Fixed bug which could cause incorrect dependencies to be generated in some cases (#329)
1297
- * Fixed handling of index filenames when allowing periods in identifiers (#330)
1307
+ - Fixed bug which could cause incorrect dependencies to be generated in some cases (#329)
1308
+ - Fixed handling of index filenames when allowing periods in identifiers (#330)
1298
1309
 
1299
1310
  ## 3.6.4 (2013-05-29)
1300
1311
 
1301
1312
  Enhancements:
1302
1313
 
1303
- * Deprecated `watch` and `autocompile` commands in favour of [`guard-nanoc`](https://github.com/guard/guard-nanoc)
1314
+ - Deprecated `watch` and `autocompile` commands in favour of [`guard-nanoc`](https://github.com/guard/guard-nanoc)
1304
1315
 
1305
1316
  Fixes:
1306
1317
 
1307
- * Fixed bug which could cause the `tmp/` dir to blow up in size
1308
- * Unescaped URLs when checking internal links
1318
+ - Fixed bug which could cause the `tmp/` dir to blow up in size
1319
+ - Unescaped URLs when checking internal links
1309
1320
 
1310
1321
  ## 3.6.3 (2013-04-24)
1311
1322
 
1312
1323
  Fixes:
1313
1324
 
1314
- * Added support for growlnotify on Windows (#253, #267)
1315
- * Fixed bug which caused the external links checker to ignore the query string (#279, #297)
1316
- * Removed weird treatment of `DOCTYPE`s in the `relativize_paths` filter (#296)
1317
- * Fixed CodeRay syntax coloring on Ruby 2.0
1318
- * Silenced "Could not find files for the given pattern(s)" message on Windows (#298)
1319
- * Fixed issue which could cause `output.diff` not to be generated correctly (#255, #301)
1320
- * Let filesystem and static data sources follow symlinks (#299, #302)
1321
- * Added compatibility with Listen 1.0 (#309)
1322
- * Let `#passthrough` in Rules work well with the static data source (#251) [Gregory Pakosz]
1323
- * Made timing information be more accurate (#303)
1325
+ - Added support for growlnotify on Windows (#253, #267)
1326
+ - Fixed bug which caused the external links checker to ignore the query string (#279, #297)
1327
+ - Removed weird treatment of `DOCTYPE`s in the `relativize_paths` filter (#296)
1328
+ - Fixed CodeRay syntax coloring on Ruby 2.0
1329
+ - Silenced "Could not find files for the given pattern(s)" message on Windows (#298)
1330
+ - Fixed issue which could cause `output.diff` not to be generated correctly (#255, #301)
1331
+ - Let filesystem and static data sources follow symlinks (#299, #302)
1332
+ - Added compatibility with Listen 1.0 (#309)
1333
+ - Let `#passthrough` in Rules work well with the static data source (#251) [Gregory Pakosz]
1334
+ - Made timing information be more accurate (#303)
1324
1335
 
1325
1336
  ## 3.6.2 (2013-03-23)
1326
1337
 
1327
1338
  Fixes:
1328
1339
 
1329
- * Removed the list of available deployers from the `deploy` help text and moved
1340
+ - Removed the list of available deployers from the `deploy` help text and moved
1330
1341
  them into a new `--list-deployers` option [Damien Pollet]
1331
- * Fixed warning about `__send__` and `object_id` being redefined on Ruby
1342
+ - Fixed warning about `__send__` and `object_id` being redefined on Ruby
1332
1343
  1.8.x [Justin Hileman]
1333
1344
 
1334
1345
  Enhancements:
1335
1346
 
1336
- * Added possible alternative names for the `Checks` file for consistency with
1347
+ - Added possible alternative names for the `Checks` file for consistency with
1337
1348
  the `Rules` file: `Checks.rb`, `checks`, `checks.rb` [Damien Pollet]
1338
- * Made sure unchanged files never have their mtime updated [Justin Hileman]
1339
- * Made link checker retry 405 Method Not Allowed results with GET instead of
1349
+ - Made sure unchanged files never have their mtime updated [Justin Hileman]
1350
+ - Made link checker retry 405 Method Not Allowed results with GET instead of
1340
1351
  HEAD [Daniel Hofstetter]
1341
1352
 
1342
1353
  ## 3.6.1 (2013-02-25)
1343
1354
 
1344
1355
  Fixes:
1345
1356
 
1346
- * Fixed bug which could cause the Sass filter to raise a load error [Damien Pollet]
1347
- * Fixed warnings about `__send__` and `object_id` being redefined [Justin Hileman]
1348
- * Made `files_to_watch` contain `nanoc.yaml`, not `config.yaml` by default
1357
+ - Fixed bug which could cause the Sass filter to raise a load error [Damien Pollet]
1358
+ - Fixed warnings about `__send__` and `object_id` being redefined [Justin Hileman]
1359
+ - Made `files_to_watch` contain `nanoc.yaml`, not `config.yaml` by default
1349
1360
 
1350
1361
  ## 3.6 (2013-02-24)
1351
1362
 
1352
1363
  Features:
1353
1364
 
1354
- * Added `sync` command, allowing data sources to update local caches of
1365
+ - Added `sync` command, allowing data sources to update local caches of
1355
1366
  external data [Justin Hileman]
1356
- * Added `#ignore` compiler DSL method
1357
- * Allowed accessing items by identifier using e.g. `@items['/about/']`
1358
- * Added `shell` command
1367
+ - Added `#ignore` compiler DSL method
1368
+ - Allowed accessing items by identifier using e.g. `@items['/about/']`
1369
+ - Added `shell` command
1359
1370
 
1360
1371
  Enhancements:
1361
1372
 
1362
- * Renamed the nanoc configuration file from `config.yaml` to `nanoc.yaml`
1373
+ - Renamed the nanoc configuration file from `config.yaml` to `nanoc.yaml`
1363
1374
 
1364
1375
  Fixes:
1365
1376
 
1366
- * Updated references to old web site and old repository
1367
- * Made `require` errors mention Bundler if appropriate
1368
- * Fixed bug which caused pruner not to delete directories in some cases [Matthias Reitinger]
1369
- * Made `check` command exit with the proper exit status
1370
- * Added support for the `HTML_TOC` Redcarpet renderer
1371
- * Made `stale` check honor files excluded by the pruner
1377
+ - Updated references to old web site and old repository
1378
+ - Made `require` errors mention Bundler if appropriate
1379
+ - Fixed bug which caused pruner not to delete directories in some cases [Matthias Reitinger]
1380
+ - Made `check` command exit with the proper exit status
1381
+ - Added support for the `HTML_TOC` Redcarpet renderer
1382
+ - Made `stale` check honor files excluded by the pruner
1372
1383
 
1373
1384
  ## 3.5 (2013-01-27)
1374
1385
 
1375
1386
  Major changes:
1376
1387
 
1377
- * Added checks
1388
+ - Added checks
1378
1389
 
1379
1390
  Minor changes:
1380
1391
 
1381
- * Added `#include_rules` for modularising Rules files [Justin Hileman]
1382
- * Replaced FSSM with Listen [Takashi Uchibe]
1383
- * Made USR1 print stack trace (not on Windows)
1384
- * Added ability to configure autocompiler host/port in config.yaml [Stuart Montgomery]
1385
- * Added static data source
1386
- * Added `:rep_select` parameter to XML sitemap to allow filtering reps
1387
- * Removed use of bright/bold colors for compatibility with Solarized
1392
+ - Added `#include_rules` for modularising Rules files [Justin Hileman]
1393
+ - Replaced FSSM with Listen [Takashi Uchibe]
1394
+ - Made USR1 print stack trace (not on Windows)
1395
+ - Added ability to configure autocompiler host/port in config.yaml [Stuart Montgomery]
1396
+ - Added static data source
1397
+ - Added `:rep_select` parameter to XML sitemap to allow filtering reps
1398
+ - Removed use of bright/bold colors for compatibility with Solarized
1388
1399
 
1389
1400
  Exensions:
1390
1401
 
1391
- * Added support for parameters in Less filter [Ruben Verborgh]
1392
- * Added support for icon and logo in Atom feed [Ruben Verborgh]
1402
+ - Added support for parameters in Less filter [Ruben Verborgh]
1403
+ - Added support for icon and logo in Atom feed [Ruben Verborgh]
1393
1404
 
1394
1405
  Fixes:
1395
1406
 
1396
- * Made syntax colorizer only use the first non-empty line when extracting the
1407
+ - Made syntax colorizer only use the first non-empty line when extracting the
1397
1408
  language comment
1398
- * Fixed XSL filter
1409
+ - Fixed XSL filter
1399
1410
 
1400
1411
  ## 3.4.3 (2012-12-09)
1401
1412
 
1402
1413
  Improvements:
1403
1414
 
1404
- * Item reps are now accessible in a consistent way: in Rules and during
1415
+ - Item reps are now accessible in a consistent way: in Rules and during
1405
1416
  compilation, they can be accessed using both `@rep` and `@item_rep`
1406
1417
 
1407
1418
  Fixes:
1408
1419
 
1409
- * Made cleaning streams (stdout/stderr as used by nanoc) compatible with
1420
+ - Made cleaning streams (stdout/stderr as used by nanoc) compatible with
1410
1421
  Ruby’s built-in Logger
1411
- * Made prune work when the output directory is a symlink
1412
- * Made Handlebars filter compatible with the latest version
1413
- * Made `show-data` command show more accurate dependencies [Stefan Bühler]
1414
- * Restored compatibility with Sass 3.2.2
1422
+ - Made prune work when the output directory is a symlink
1423
+ - Made Handlebars filter compatible with the latest version
1424
+ - Made `show-data` command show more accurate dependencies [Stefan Bühler]
1425
+ - Restored compatibility with Sass 3.2.2
1415
1426
 
1416
1427
  ## 3.4.2 (2012-11-01)
1417
1428
 
1418
1429
  Fixes:
1419
1430
 
1420
- * Made passthrough rules be inserted in the right place [Gregory Pakosz]
1421
- * Fixed crashes in the progress indicator when compiling
1422
- * Made auto-pruning honor excluded files [Grégory Karékinian]
1423
- * Made lack of which/where not crash watch command
1431
+ - Made passthrough rules be inserted in the right place [Gregory Pakosz]
1432
+ - Fixed crashes in the progress indicator when compiling
1433
+ - Made auto-pruning honor excluded files [Grégory Karékinian]
1434
+ - Made lack of which/where not crash watch command
1424
1435
 
1425
1436
  Improvements:
1426
1437
 
1427
- * Fixed constant reinitialization warnings [Damien Pollet]
1428
- * Made UTF-8 not be decomposed when outputting to a file from a non-UTF-8 terminal
1429
- * Made syntax colorizer wrap CodeRay output in required CodeRay divs
1430
- * Made fog delete after upload, not before [Go Maeda]
1431
- * Made requesting compiled content of binary item impossible
1438
+ - Fixed constant reinitialization warnings [Damien Pollet]
1439
+ - Made UTF-8 not be decomposed when outputting to a file from a non-UTF-8 terminal
1440
+ - Made syntax colorizer wrap CodeRay output in required CodeRay divs
1441
+ - Made fog delete after upload, not before [Go Maeda]
1442
+ - Made requesting compiled content of binary item impossible
1432
1443
 
1433
1444
  ## 3.4.1 (2012-09-22)
1434
1445
 
1435
1446
  Fixes:
1436
1447
 
1437
- * Fixed auto-pruning
1438
- * Made slim filter work with the capturing helper [Bil Bas]
1448
+ - Fixed auto-pruning
1449
+ - Made slim filter work with the capturing helper [Bil Bas]
1439
1450
 
1440
1451
  Improvements:
1441
1452
 
1442
- * Made several speed improvements
1443
- * Added prune configuration to config.yaml
1444
- * Made nanoc check for presence of nanoc in Gemfile
1445
- * Made compile command not show identicals (use `--verbose` if you want them)
1446
- * Made `relativize_paths` filter recognise more paths to relativize [Arnau Siches]
1447
- * Fixed #passthrough for items without extensions [Justin Hileman]
1448
- * Added more IO/File proxy methods to cleaning streams
1453
+ - Made several speed improvements
1454
+ - Added prune configuration to config.yaml
1455
+ - Made nanoc check for presence of nanoc in Gemfile
1456
+ - Made compile command not show identicals (use `--verbose` if you want them)
1457
+ - Made `relativize_paths` filter recognise more paths to relativize [Arnau Siches]
1458
+ - Fixed #passthrough for items without extensions [Justin Hileman]
1459
+ - Added more IO/File proxy methods to cleaning streams
1449
1460
 
1450
1461
  ## 3.4 (2012-06-09)
1451
1462
 
1452
- * Improved error output and added crash log
1453
- * Renamed `debug` and `info` commands to `show-data` and `show-plugins`, respectively
1454
- * Added `show-rules` command (aka `explain`)
1463
+ - Improved error output and added crash log
1464
+ - Renamed `debug` and `info` commands to `show-data` and `show-plugins`, respectively
1465
+ - Added `show-rules` command (aka `explain`)
1455
1466
 
1456
1467
  Extensions:
1457
1468
 
1458
- * Added `:yield` key for Mustache filter
1459
- * Added Handebars filter
1460
- * Added Pandoc filter
1461
- * Made the deployer use the `default` target if no target is specified
1462
- * Converted HTML/CSS/link validation tasks to commands
1463
- * Made link validator follow relative redirects
1469
+ - Added `:yield` key for Mustache filter
1470
+ - Added Handebars filter
1471
+ - Added Pandoc filter
1472
+ - Made the deployer use the `default` target if no target is specified
1473
+ - Converted HTML/CSS/link validation tasks to commands
1474
+ - Made link validator follow relative redirects
1464
1475
 
1465
1476
  ## 3.3.7 (2012-05-28)
1466
1477
 
1467
- * Added filename to YAML parser errors
1468
- * Fixed issue which caused extra dependencies to be generated
1469
- * Made timing information take filtering helper into account
1478
+ - Added filename to YAML parser errors
1479
+ - Fixed issue which caused extra dependencies to be generated
1480
+ - Made timing information take filtering helper into account
1470
1481
 
1471
1482
  ## 3.3.6 (2012-04-27)
1472
1483
 
1473
- * Fixed issue with relative_link_to stripping HTML boilerplate
1484
+ - Fixed issue with relative_link_to stripping HTML boilerplate
1474
1485
 
1475
1486
  ## 3.3.5 (2012-04-23)
1476
1487
 
1477
- * Fixed issue with relative_link_to not working properly
1488
+ - Fixed issue with relative_link_to not working properly
1478
1489
 
1479
1490
  ## 3.3.4 (2012-04-23)
1480
1491
 
1481
- * Fixed bug which caused the compilation stack to be empty
1482
- * Restored Ruby 1.8 compatibility
1492
+ - Fixed bug which caused the compilation stack to be empty
1493
+ - Restored Ruby 1.8 compatibility
1483
1494
 
1484
1495
  ## 3.3.3 (2012-04-11)
1485
1496
 
1486
- * Fixed directed graph implementation on Rubinius
1487
- * Made capturing helper not remember content between runs
1488
- * Fixed Date#freeze issue on Ruby 1.8.x
1489
- * Made it possible to have any kind of object as parameters in the Rules file
1490
- * Fixed bug which caused changed routes not to cause a recompile
1497
+ - Fixed directed graph implementation on Rubinius
1498
+ - Made capturing helper not remember content between runs
1499
+ - Fixed Date#freeze issue on Ruby 1.8.x
1500
+ - Made it possible to have any kind of object as parameters in the Rules file
1501
+ - Fixed bug which caused changed routes not to cause a recompile
1491
1502
 
1492
1503
  ## 3.3.2 (2012-03-16)
1493
1504
 
1494
- * Removed bin/nanoc3 (use nanoc3 gem if you want it)
1495
- * Fixed wrong “no such snapshot” errors
1496
- * Made deployer default to rsync for backwards compatibility
1497
- * Fixed missing Nanoc::OrigCLI in deployment tasks
1498
- * Fixed “unrecognised kind” deployer error
1505
+ - Removed bin/nanoc3 (use nanoc3 gem if you want it)
1506
+ - Fixed wrong “no such snapshot” errors
1507
+ - Made deployer default to rsync for backwards compatibility
1508
+ - Fixed missing Nanoc::OrigCLI in deployment tasks
1509
+ - Fixed “unrecognised kind” deployer error
1499
1510
 
1500
1511
  ## 3.3.1 (2012-02-18)
1501
1512
 
1502
- * Fixed issue with long paths on Windows
1503
- * Fixed a few deployer crashes
1504
- * Added nanoc3.rb, nanoc3/tasks.rb, … for compatibility with older versions
1505
- * Made nanoc setup Bundler at startup [John Nishinaga]
1513
+ - Fixed issue with long paths on Windows
1514
+ - Fixed a few deployer crashes
1515
+ - Added nanoc3.rb, nanoc3/tasks.rb, … for compatibility with older versions
1516
+ - Made nanoc setup Bundler at startup [John Nishinaga]
1506
1517
 
1507
1518
  ## 3.3 (2012-02-12)
1508
1519
 
1509
1520
  Base:
1510
1521
 
1511
- * Dropped the “3” suffix on nanoc3/Nanoc3
1512
- * Turned Rake tasks into proper nanoc commands
1513
- * Improved dependency tracking
1514
- * Added support for locals in filters and layouts
1522
+ - Dropped the “3” suffix on nanoc3/Nanoc3
1523
+ - Turned Rake tasks into proper nanoc commands
1524
+ - Improved dependency tracking
1525
+ - Added support for locals in filters and layouts
1515
1526
 
1516
1527
  Extensions:
1517
1528
 
1518
- * Added support for deployment using Fog [Jack Chu]
1519
- * Added CoffeeScript filter [Riley Goodside]
1520
- * Added XSL filter [Arnau Siches]
1521
- * Added YUICompress filter [Matt Keveney]
1522
- * Added pygments.rb to supported syntax colorizers
1523
- * Allowed syntax colorizer to colorize outside `pre` elements [Kevin Lynagh]
1524
- * Added support for HTTPS link validation [Fabian Buch]
1525
- * Added support for (automatically) pruning stray output files [Justin Hileman]
1526
- * Added deploy command
1529
+ - Added support for deployment using Fog [Jack Chu]
1530
+ - Added CoffeeScript filter [Riley Goodside]
1531
+ - Added XSL filter [Arnau Siches]
1532
+ - Added YUICompress filter [Matt Keveney]
1533
+ - Added pygments.rb to supported syntax colorizers
1534
+ - Allowed syntax colorizer to colorize outside `pre` elements [Kevin Lynagh]
1535
+ - Added support for HTTPS link validation [Fabian Buch]
1536
+ - Added support for (automatically) pruning stray output files [Justin Hileman]
1537
+ - Added deploy command
1527
1538
 
1528
1539
  ## 3.2.4 (2012-01-09)
1529
1540
 
1530
- * Fixed bug which would cause some reps not to be compiled when invoking nanoc programmatically
1531
- * Made data source configuration location a bit more obvious
1532
- * Fixed watch command under Windows
1533
- * Made filesystem data source ignore UTF-8 BOM
1534
- * Improved compatibility of `colorize_syntax` filter with older libxml versions
1541
+ - Fixed bug which would cause some reps not to be compiled when invoking nanoc programmatically
1542
+ - Made data source configuration location a bit more obvious
1543
+ - Fixed watch command under Windows
1544
+ - Made filesystem data source ignore UTF-8 BOM
1545
+ - Improved compatibility of `colorize_syntax` filter with older libxml versions
1535
1546
 
1536
1547
  ## 3.2.3 (2011-10-31)
1537
1548
 
1538
- * Made syntax colorizer only strip trailing blank lines instead of all blanks
1539
- * Improved Ruby 1.9.x compatibility
1540
- * Made default rakefile require rubygems if necessary
1541
- * Made filename/content argument of `Nanoc3::Item#initialize` mandatory
1549
+ - Made syntax colorizer only strip trailing blank lines instead of all blanks
1550
+ - Improved Ruby 1.9.x compatibility
1551
+ - Made default rakefile require rubygems if necessary
1552
+ - Made filename/content argument of `Nanoc3::Item#initialize` mandatory
1542
1553
 
1543
1554
  ## 3.2.2 (2011-09-04)
1544
1555
 
1545
- * Fixed command usage printing
1546
- * Made `relativize_paths` filter handle Windows network paths [Ruben Verborgh]
1547
- * Made watcher use correct configuration
1548
- * Allowed code blocks to start with a non-language shebang line
1556
+ - Fixed command usage printing
1557
+ - Made `relativize_paths` filter handle Windows network paths [Ruben Verborgh]
1558
+ - Made watcher use correct configuration
1559
+ - Allowed code blocks to start with a non-language shebang line
1549
1560
 
1550
1561
  ## 3.2.1 (2011-07-27)
1551
1562
 
1552
- * Made `@config` available in rules file
1553
- * Fixed `#readpartial` issue on JRuby [Matt Keveney]
1554
- * Fixed possible `@cache` name clash in memoization module
1555
- * Fixed options with required arguments (such as `--port` and `--host`)
1556
- * Fixed broken `#check_availability`
1557
- * Fixed error handling in watch command
1563
+ - Made `@config` available in rules file
1564
+ - Fixed `#readpartial` issue on JRuby [Matt Keveney]
1565
+ - Fixed possible `@cache` name clash in memoization module
1566
+ - Fixed options with required arguments (such as `--port` and `--host`)
1567
+ - Fixed broken `#check_availability`
1568
+ - Fixed error handling in watch command
1558
1569
 
1559
1570
  ## 3.2 (2011-07-24)
1560
1571
 
1561
1572
  Base:
1562
1573
 
1563
- * Sped up nanoc quite a bit
1564
- * Added progress indicator for long-running filters
1565
- * Made all source data, such as item attributes, frozen during compilation
1566
- * Added --color option to force color on
1567
- * Cleaned up internals, deprecating several parts and/or marking them as private in the progress
1568
- * Allowed custom commands in commands/
1574
+ - Sped up nanoc quite a bit
1575
+ - Added progress indicator for long-running filters
1576
+ - Made all source data, such as item attributes, frozen during compilation
1577
+ - Added --color option to force color on
1578
+ - Cleaned up internals, deprecating several parts and/or marking them as private in the progress
1579
+ - Allowed custom commands in commands/
1569
1580
 
1570
1581
  Extensions:
1571
1582
 
1572
- * Added AsciiDoc filter
1573
- * Added Redcarpet filter [Peter Aronoff]
1574
- * Added Slim filter [Zaiste de Grengolada]
1575
- * Added Typogruby filter
1576
- * Added UglifyJS filter [Justin Hileman]
1577
- * Added `:items` parameter for the XML site map [Justin Hileman]
1578
- * Added support for params to ERB
1579
- * Added `:default_colorizer` parameter to the `:colorize_syntax` filter
1580
- * Allowed for passing arbitrary options to pygmentize [Matthias Vallentin]
1581
- * Exposed RedCloth parameters in the filter [Vincent Driessen]
1583
+ - Added AsciiDoc filter
1584
+ - Added Redcarpet filter [Peter Aronoff]
1585
+ - Added Slim filter [Zaiste de Grengolada]
1586
+ - Added Typogruby filter
1587
+ - Added UglifyJS filter [Justin Hileman]
1588
+ - Added `:items` parameter for the XML site map [Justin Hileman]
1589
+ - Added support for params to ERB
1590
+ - Added `:default_colorizer` parameter to the `:colorize_syntax` filter
1591
+ - Allowed for passing arbitrary options to pygmentize [Matthias Vallentin]
1592
+ - Exposed RedCloth parameters in the filter [Vincent Driessen]
1582
1593
 
1583
1594
  ## 3.1.9 (2011-06-30)
1584
1595
 
1585
- * Really fixed dependency generation between Sass partials this time
1586
- * Updated Less filter to 2.0
1587
- * Made `colorize_syntax` filter throw an error if pygmentize is not available
1596
+ - Really fixed dependency generation between Sass partials this time
1597
+ - Updated Less filter to 2.0
1598
+ - Made `colorize_syntax` filter throw an error if pygmentize is not available
1588
1599
 
1589
1600
  ## 3.1.8 (2011-06-25)
1590
1601
 
1591
- * Made link validator accept https: URLs
1592
- * Fixed erroneous handling of layouts with names ending in index
1593
- * Fixed dependency generation between Sass partials
1594
- * Fixed errors related to thread requires
1595
- * Fixed crash while handling load errors
1596
- * Improved encoding handling while reading files
1602
+ - Made link validator accept https: URLs
1603
+ - Fixed erroneous handling of layouts with names ending in index
1604
+ - Fixed dependency generation between Sass partials
1605
+ - Fixed errors related to thread requires
1606
+ - Fixed crash while handling load errors
1607
+ - Improved encoding handling while reading files
1597
1608
 
1598
1609
  ## 3.1.7 (2011-05-03)
1599
1610
 
1600
- * Restored compatibility with Sass 3.1
1611
+ - Restored compatibility with Sass 3.1
1601
1612
 
1602
1613
  ## 3.1.6 (2010-11-21)
1603
1614
 
1604
- * Fixed issues with incompatible encodings
1615
+ - Fixed issues with incompatible encodings
1605
1616
 
1606
1617
  ## 3.1.5 (2010-08-24)
1607
1618
 
1608
- * Improved `#render` documentation
1609
- * Improved metadata section check so that e.g. raw diffs are handled properly
1610
- * Deprecated using `Nanoc3::Site#initialize` with a non-`"."` argument
1611
- * Added Ruby engine to version string
1612
- * Allowed the `created_at` and `updated_at` attributes used in the `Blogging` helper to be `Date` instances
1619
+ - Improved `#render` documentation
1620
+ - Improved metadata section check so that e.g. raw diffs are handled properly
1621
+ - Deprecated using `Nanoc3::Site#initialize` with a non-`"."` argument
1622
+ - Added Ruby engine to version string
1623
+ - Allowed the `created_at` and `updated_at` attributes used in the `Blogging` helper to be `Date` instances
1613
1624
 
1614
1625
  ## 3.1.4 (2010-07-25)
1615
1626
 
1616
- * Made INT and TERM signals always quit the CLI
1617
- * Allowed relative imports in LESS
1618
- * Made sure modification times are unchanged for identical recompiled items
1619
- * Improved link validator error handling
1620
- * Made pygmentize not output extra divs and pres
1621
- * Allowed colorizers to be specified using symbols instead of strings
1622
- * Added scss to the default list of text extensions
1627
+ - Made INT and TERM signals always quit the CLI
1628
+ - Allowed relative imports in LESS
1629
+ - Made sure modification times are unchanged for identical recompiled items
1630
+ - Improved link validator error handling
1631
+ - Made pygmentize not output extra divs and pres
1632
+ - Allowed colorizers to be specified using symbols instead of strings
1633
+ - Added scss to the default list of text extensions
1623
1634
 
1624
1635
  ## 3.1.3 (2010-04-25)
1625
1636
 
1626
- * Removed annoying win32console warning [Eric Sunshine]
1627
- * Removed color codes when not writing to a terminal, or when writing to Windows’ console when win32console is not installed [Eric Sunshine]
1628
- * Added .xhtml and .xml to list of text extensions
1629
- * Improved support for relative Sass @imports [Chris Eppstein]
1637
+ - Removed annoying win32console warning [Eric Sunshine]
1638
+ - Removed color codes when not writing to a terminal, or when writing to Windows’ console when win32console is not installed [Eric Sunshine]
1639
+ - Added .xhtml and .xml to list of text extensions
1640
+ - Improved support for relative Sass @imports [Chris Eppstein]
1630
1641
 
1631
1642
  ## 3.1.2 (2010-04-07)
1632
1643
 
1633
- * Fixed bug which could cause incorrect output when compilation of an item is delayed due to an unmet dependency
1644
+ - Fixed bug which could cause incorrect output when compilation of an item is delayed due to an unmet dependency
1634
1645
 
1635
1646
  ## 3.1.1 (2010-04-05)
1636
1647
 
1637
- * Sass `@import`s now work for files not managed by nanoc
1638
- * Rake tasks now have their Unicode description decomposed if necessary
1648
+ - Sass `@import`s now work for files not managed by nanoc
1649
+ - Rake tasks now have their Unicode description decomposed if necessary
1639
1650
 
1640
1651
  ## 3.1 (2010-04-03)
1641
1652
 
1642
1653
  New:
1643
1654
 
1644
- * An `Item#rep_named(name)` function for quickly getting a certain rep
1645
- * An `Item#compiled_content` function for quickly getting compiled content
1646
- * An `Item#path` function for quickly getting the path of an item rep
1647
- * A new “+” wildcard in rule patterns that matches one or more characters
1648
- * A `view` command that starts a web server in the output directory
1649
- * A `debug` command that shows information about the items, reps and layouts
1650
- * A `kramdown` filter ([kramdown site](https://kramdown.gettalong.org/))
1651
- * A diff between the previously compiled content and the last compiled content is now written to `output.diff` if the `enable_output_diff` site configuration attribute is true
1652
- * Assigns, such as `@items`, `@layouts`, `@item`, … are accessible without `@`
1653
- * Support for binary items
1655
+ - An `Item#rep_named(name)` function for quickly getting a certain rep
1656
+ - An `Item#compiled_content` function for quickly getting compiled content
1657
+ - An `Item#path` function for quickly getting the path of an item rep
1658
+ - A new “+” wildcard in rule patterns that matches one or more characters
1659
+ - A `view` command that starts a web server in the output directory
1660
+ - A `debug` command that shows information about the items, reps and layouts
1661
+ - A `kramdown` filter ([kramdown site](https://kramdown.gettalong.org/))
1662
+ - A diff between the previously compiled content and the last compiled content is now written to `output.diff` if the `enable_output_diff` site configuration attribute is true
1663
+ - Assigns, such as `@items`, `@layouts`, `@item`, … are accessible without `@`
1664
+ - Support for binary items
1654
1665
 
1655
1666
  Changed:
1656
1667
 
1657
- * New sites now come with a stylesheet item instead of a `style.css` file in the output directory
1658
- * The `deploy:rsync` task now use sensible default options
1659
- * The `deploy:rsync` task now accepts a config environment variable
1660
- * The `deploy:rsync` task now uses a lowercase `dry_run` environment variable
1661
- * The `maruku` filter now accepts parameters
1662
- * The `rainpress` filter now accepts parameters
1663
- * The `filesystem` data source is now known as `filesystem_verbose`
1664
- * Meta files and content files are now optional
1665
- * The `filesystem_compact` and `filesystem_combined` data sources have been merged into a new `filesystem_unified` data source
1666
- * The metadata section in `filesystem_unified` is now optional [Chris Eppstein]
1667
- * The `--server` autocompile option is now known as `--handler`
1668
- * Assigns in filters are now available as instance variables and methods
1669
- * The `#breadcrumbs_trail` function now allows missing parents
1670
- * The `sass` filter now properly handles `@import` dependencies
1668
+ - New sites now come with a stylesheet item instead of a `style.css` file in the output directory
1669
+ - The `deploy:rsync` task now use sensible default options
1670
+ - The `deploy:rsync` task now accepts a config environment variable
1671
+ - The `deploy:rsync` task now uses a lowercase `dry_run` environment variable
1672
+ - The `maruku` filter now accepts parameters
1673
+ - The `rainpress` filter now accepts parameters
1674
+ - The `filesystem` data source is now known as `filesystem_verbose`
1675
+ - Meta files and content files are now optional
1676
+ - The `filesystem_compact` and `filesystem_combined` data sources have been merged into a new `filesystem_unified` data source
1677
+ - The metadata section in `filesystem_unified` is now optional [Chris Eppstein]
1678
+ - The `--server` autocompile option is now known as `--handler`
1679
+ - Assigns in filters are now available as instance variables and methods
1680
+ - The `#breadcrumbs_trail` function now allows missing parents
1681
+ - The `sass` filter now properly handles `@import` dependencies
1671
1682
 
1672
1683
  Deprecated:
1673
1684
 
1674
- * `Nanoc3::FileProxy`; use one of the filename attributes instead
1675
- * `ItemRep#content_at_snapshot`; use `#compiled_content` instead
1676
- * The `last_fm`, `delicious` and `twitter` data sources; fetch online content into a cache by a rake task and load data from this cache instead
1685
+ - `Nanoc3::FileProxy`; use one of the filename attributes instead
1686
+ - `ItemRep#content_at_snapshot`; use `#compiled_content` instead
1687
+ - The `last_fm`, `delicious` and `twitter` data sources; fetch online content into a cache by a rake task and load data from this cache instead
1677
1688
 
1678
1689
  ## 3.0.9 (2010-02-24)
1679
1690
 
1680
- * Fixed 1.8.x parsing bug due to lack of parens which could cause “undefined method `to_iso8601_time` for #<String:0x…>” errors
1691
+ - Fixed 1.8.x parsing bug due to lack of parens which could cause “undefined method `to_iso8601_time` for #<String:0x…>” errors
1681
1692
 
1682
1693
  ## 3.0.8 (2010-02-24)
1683
1694
 
1684
- * `#atom_tag_for` now works with `base_url`s that contain a path [Eric Sunshine]
1685
- * Generated root URLs in `#atom_feed` now end with a slash [Eric Sunshine]
1686
- * Autocompiler now recognises requests to index files
1687
- * `Blogging` helper now allows `created_at` to be a Time instance
1695
+ - `#atom_tag_for` now works with `base_url`s that contain a path [Eric Sunshine]
1696
+ - Generated root URLs in `#atom_feed` now end with a slash [Eric Sunshine]
1697
+ - Autocompiler now recognises requests to index files
1698
+ - `Blogging` helper now allows `created_at` to be a Time instance
1688
1699
 
1689
1700
  ## 3.0.7 (2010-01-29)
1690
1701
 
1691
- * Fixed bug which could cause layout rules not be matched in order
1702
+ - Fixed bug which could cause layout rules not be matched in order
1692
1703
 
1693
1704
  ## 3.0.6 (2010-01-17)
1694
1705
 
1695
- * Error checking in `filesystem_combined` has been improved [Brian Candler]
1696
- * Generated HTML files now have a default encoding of UTF-8
1697
- * Periods in identifiers for layouts now behave correctly
1698
- * The `relativize_paths` filter now correctly handles “/” [Eric Sunshine]
1706
+ - Error checking in `filesystem_combined` has been improved [Brian Candler]
1707
+ - Generated HTML files now have a default encoding of UTF-8
1708
+ - Periods in identifiers for layouts now behave correctly
1709
+ - The `relativize_paths` filter now correctly handles “/” [Eric Sunshine]
1699
1710
 
1700
1711
  ## 3.0.5 (2010-01-12)
1701
1712
 
1702
- * Restored pre-3.0.3 behaviour of periods in identifiers. By default, a file can have multiple extensions (e.g. `content/foo.html.erb` will have the identifier `/foo/`), but if `allow_periods_in_identifiers` in the site configuration is true, a file can have only one extension (e.g. `content/blog/stuff.entry.html` will have the identifier `/blog/stuff.entry/`).
1713
+ - Restored pre-3.0.3 behaviour of periods in identifiers. By default, a file can have multiple extensions (e.g. `content/foo.html.erb` will have the identifier `/foo/`), but if `allow_periods_in_identifiers` in the site configuration is true, a file can have only one extension (e.g. `content/blog/stuff.entry.html` will have the identifier `/blog/stuff.entry/`).
1703
1714
 
1704
1715
  ## 3.0.4 (2010-01-07)
1705
1716
 
1706
- * Fixed a bug which would cause the `filesystem_compact` data source to incorrectly determine the content filename, leading to weird “Expected 1 content file but found 3” errors [Eric Sunshine]
1717
+ - Fixed a bug which would cause the `filesystem_compact` data source to incorrectly determine the content filename, leading to weird “Expected 1 content file but found 3” errors [Eric Sunshine]
1707
1718
 
1708
1719
  ## 3.0.3 (2010-01-06)
1709
1720
 
1710
- * The `Blogging` helper now properly handles item reps without paths
1711
- * The `relativize_paths` filter now only operates inside tags
1712
- * The autocompiler now handles escaped paths
1713
- * The `LinkTo` and `Tagging` helpers now output escaped HTML
1714
- * Fixed `played_at` attribute assignment in the `LastFM` data source for tracks playing now, and added a `now_playing` attribute [Nicky Peeters]
1715
- * The `filesystem_*` data sources can now handle dots in identifiers
1716
- * Required enumerator to make sure `#enum_with_index` always works
1717
- * `Array#stringify_keys` now properly recurses
1721
+ - The `Blogging` helper now properly handles item reps without paths
1722
+ - The `relativize_paths` filter now only operates inside tags
1723
+ - The autocompiler now handles escaped paths
1724
+ - The `LinkTo` and `Tagging` helpers now output escaped HTML
1725
+ - Fixed `played_at` attribute assignment in the `LastFM` data source for tracks playing now, and added a `now_playing` attribute [Nicky Peeters]
1726
+ - The `filesystem_*` data sources can now handle dots in identifiers
1727
+ - Required enumerator to make sure `#enum_with_index` always works
1728
+ - `Array#stringify_keys` now properly recurses
1718
1729
 
1719
1730
  ## 3.0.2 (2009-11-07)
1720
1731
 
1721
- * Children-only identifier patterns no longer erroneously also match parent (e.g. `/foo/*/` no longer matches `/foo/`)
1722
- * The `create_site` command no longer uses those ugly HTML entities
1723
- * Install message now mentions the IRC channel
1732
+ - Children-only identifier patterns no longer erroneously also match parent (e.g. `/foo/*/` no longer matches `/foo/`)
1733
+ - The `create_site` command no longer uses those ugly HTML entities
1734
+ - Install message now mentions the IRC channel
1724
1735
 
1725
1736
  ## 3.0.1 (2009-10-05)
1726
1737
 
1727
- * The proper exception is now raised when no matching compilation rules can be found
1728
- * The autocompile command no longer has a duplicate `--port` option
1729
- * The `#url_for` and `#feed_url` methods now check the presence of the `base_url` site configuration attribute
1730
- * Several outdated URLs are now up-to-date
1731
- * Error handling has been improved in general
1738
+ - The proper exception is now raised when no matching compilation rules can be found
1739
+ - The autocompile command no longer has a duplicate `--port` option
1740
+ - The `#url_for` and `#feed_url` methods now check the presence of the `base_url` site configuration attribute
1741
+ - Several outdated URLs are now up-to-date
1742
+ - Error handling has been improved in general
1732
1743
 
1733
1744
  ## 3.0 (2009-08-14)
1734
1745
 
1735
1746
  New:
1736
1747
 
1737
- * Multiple data sources
1738
- * Dependency tracking between items
1739
- * Filters can now optionally take arguments
1740
- * `#create_page` and `#create_layout` methods in data sources
1741
- * A new way to specify compilation/routing rules using a Rules file
1742
- * A `coderay` filter ([CodeRay site](http://coderay.rubychan.de/))
1743
- * A `filesystem_compact` data source which uses less directories
1748
+ - Multiple data sources
1749
+ - Dependency tracking between items
1750
+ - Filters can now optionally take arguments
1751
+ - `#create_page` and `#create_layout` methods in data sources
1752
+ - A new way to specify compilation/routing rules using a Rules file
1753
+ - A `coderay` filter ([CodeRay site](http://coderay.rubychan.de/))
1754
+ - A `filesystem_compact` data source which uses less directories
1744
1755
 
1745
1756
  Changed:
1746
1757
 
1747
- * Pages and textual assets are now known as “items”
1758
+ - Pages and textual assets are now known as “items”
1748
1759
 
1749
1760
  Removed:
1750
1761
 
1751
- * Support for drafts
1752
- * Support for binary assets
1753
- * Support for templates
1754
- * Everything that was deprecated in nanoc 2.x
1755
- * `save_*`, `move_*` and `delete_*` methods in data sources
1756
- * Processing instructions in metadata
1762
+ - Support for drafts
1763
+ - Support for binary assets
1764
+ - Support for templates
1765
+ - Everything that was deprecated in nanoc 2.x
1766
+ - `save_*`, `move_*` and `delete_*` methods in data sources
1767
+ - Processing instructions in metadata
1757
1768
 
1758
1769
  ## 2.2.2 (2009-05-18)
1759
1770
 
1760
- * Removed `relativize_paths` filter; use `relativize_paths_in_html` or `relativize_paths_in_css` instead
1761
- * Fixed bug which could cause nanoc to eat massive amounts of memory when an exception occurs
1762
- * Fixed bug which would cause nanoc to complain about the open file limit being reached when using a large amount of assets
1771
+ - Removed `relativize_paths` filter; use `relativize_paths_in_html` or `relativize_paths_in_css` instead
1772
+ - Fixed bug which could cause nanoc to eat massive amounts of memory when an exception occurs
1773
+ - Fixed bug which would cause nanoc to complain about the open file limit being reached when using a large amount of assets
1763
1774
 
1764
1775
  ## 2.2.1 (2009-04-08)
1765
1776
 
1766
- * Fixed bug which prevented `relative_path_to` from working
1767
- * Split `relativize_paths` filter into two filter: `relativize_paths_in_html` and `relativize_paths_in_css`
1768
- * Removed bundled mime-types library
1777
+ - Fixed bug which prevented `relative_path_to` from working
1778
+ - Split `relativize_paths` filter into two filter: `relativize_paths_in_html` and `relativize_paths_in_css`
1779
+ - Removed bundled mime-types library
1769
1780
 
1770
1781
  ## 2.2 (2009-04-06)
1771
1782
 
1772
1783
  New:
1773
1784
 
1774
- * `--pages` and `--assets` compiler options
1775
- * `--no-color` command-line option
1776
- * `Filtering` helper
1777
- * `#relative_path_to` function in `LinkTo` helper
1778
- * `rainpress` filter ([Rainpress site](https://github.com/ddfreyne/rainpress))
1779
- * `relativize_paths` filter
1780
- * The current layout is now accessible through the `@layout` variable
1781
- * Much more informative stack traces when something goes wrong
1785
+ - `--pages` and `--assets` compiler options
1786
+ - `--no-color` command-line option
1787
+ - `Filtering` helper
1788
+ - `#relative_path_to` function in `LinkTo` helper
1789
+ - `rainpress` filter ([Rainpress site](https://github.com/ddfreyne/rainpress))
1790
+ - `relativize_paths` filter
1791
+ - The current layout is now accessible through the `@layout` variable
1792
+ - Much more informative stack traces when something goes wrong
1782
1793
 
1783
1794
  Changed:
1784
1795
 
1785
- * The command-line option parser is now a lot more reliable
1786
- * `#atom_feed` now takes optional `:content_proc`, `:excerpt_proc` and `:articles` parameters
1787
- * The compile command show non-written items (those with `skip_output: true`)
1788
- * The compile command compiles everything by default
1789
- * Added `--only-outdated` option to compile only outdated pages
1796
+ - The command-line option parser is now a lot more reliable
1797
+ - `#atom_feed` now takes optional `:content_proc`, `:excerpt_proc` and `:articles` parameters
1798
+ - The compile command show non-written items (those with `skip_output: true`)
1799
+ - The compile command compiles everything by default
1800
+ - Added `--only-outdated` option to compile only outdated pages
1790
1801
 
1791
1802
  Removed:
1792
1803
 
1793
- * deprecated extension-based code
1804
+ - deprecated extension-based code
1794
1805
 
1795
1806
  ## 2.1.6 (2009-02-28)
1796
1807
 
1797
- * The `filesystem_combined` data source now supports empty metadata sections
1798
- * The `rdoc` filter now works for both RDoc 1.x and 2.x
1799
- * The autocompiler now serves a 500 when an exception occurs outside compilation
1800
- * The autocompiler no longer serves index files when the request path does not end with a slash
1801
- * The autocompiler now always serves asset content correctly
1808
+ - The `filesystem_combined` data source now supports empty metadata sections
1809
+ - The `rdoc` filter now works for both RDoc 1.x and 2.x
1810
+ - The autocompiler now serves a 500 when an exception occurs outside compilation
1811
+ - The autocompiler no longer serves index files when the request path does not end with a slash
1812
+ - The autocompiler now always serves asset content correctly
1802
1813
 
1803
1814
  ## 2.1.5 (2009-02-01)
1804
1815
 
1805
- * Added Ruby 1.9 compatibility
1806
- * The `filesystem` and `filesystem_combined` data sources now preserve custom extensions
1816
+ - Added Ruby 1.9 compatibility
1817
+ - The `filesystem` and `filesystem_combined` data sources now preserve custom extensions
1807
1818
 
1808
1819
  ## 2.1.4 (2008-11-15)
1809
1820
 
1810
- * Fixed an issue where the autocompiler in Windows would serve broken assets
1821
+ - Fixed an issue where the autocompiler in Windows would serve broken assets
1811
1822
 
1812
1823
  ## 2.1.3 (2008-09-27)
1813
1824
 
1814
- * The `haml` and `sass` filters now correctly take their options from assets
1815
- * The autocompiler now serves index files instead of 404s
1816
- * Layouts named “index” are now handled correctly
1817
- * The `filesystem_combined` data source now properly handles assets
1825
+ - The `haml` and `sass` filters now correctly take their options from assets
1826
+ - The autocompiler now serves index files instead of 404s
1827
+ - Layouts named “index” are now handled correctly
1828
+ - The `filesystem_combined` data source now properly handles assets
1818
1829
 
1819
1830
  ## 2.1.2 (2008-09-08)
1820
1831
 
1821
- * The utocompiler now compiles assets as well
1822
- * The `sass` filter now takes options (just like the `haml` filter)
1823
- * Haml/Sass options are now taken from the page *rep* instead of the page
1832
+ - The utocompiler now compiles assets as well
1833
+ - The `sass` filter now takes options (just like the `haml` filter)
1834
+ - Haml/Sass options are now taken from the page _rep_ instead of the page
1824
1835
 
1825
1836
  ## 2.1.1 (2008-08-18)
1826
1837
 
1827
- * Fixed issue which would cause files not to be required in the right order
1838
+ - Fixed issue which would cause files not to be required in the right order
1828
1839
 
1829
1840
  ## 2.1 (2008-08-17)
1830
1841
 
@@ -1834,141 +1845,141 @@ updated manual will be useful.
1834
1845
 
1835
1846
  New:
1836
1847
 
1837
- * New `rdiscount` filter ([RDiscount site](https://github.com/davidfstr/rdiscount))
1838
- * New `maruku` filter ([Maruku site](https://github.com/bhollis/maruku/))
1839
- * New `erubis` filter ([Erubis site](http://www.kuwata-lab.com/erubis/))
1840
- * A better command-line frontend
1841
- * A new filesystem data source named `filesystem_combined`
1842
- * Routers, which decide where compiled pages should be written to
1843
- * Page/layout mtimes can now be retrieved through `page.mtime`/`layout.mtime`
1848
+ - New `rdiscount` filter ([RDiscount site](https://github.com/davidfstr/rdiscount))
1849
+ - New `maruku` filter ([Maruku site](https://github.com/bhollis/maruku/))
1850
+ - New `erubis` filter ([Erubis site](http://www.kuwata-lab.com/erubis/))
1851
+ - A better command-line frontend
1852
+ - A new filesystem data source named `filesystem_combined`
1853
+ - Routers, which decide where compiled pages should be written to
1854
+ - Page/layout mtimes can now be retrieved through `page.mtime`/`layout.mtime`
1844
1855
 
1845
1856
  Changed:
1846
1857
 
1847
- * Already compiled pages will no longer be re-compiled unless outdated
1848
- * Layout processors and filters have been merged
1849
- * Layouts no longer rely on file extensions to determine the layout processor
1850
- * Greatly improved source code documentation
1851
- * Greatly improved unit test suite
1858
+ - Already compiled pages will no longer be re-compiled unless outdated
1859
+ - Layout processors and filters have been merged
1860
+ - Layouts no longer rely on file extensions to determine the layout processor
1861
+ - Greatly improved source code documentation
1862
+ - Greatly improved unit test suite
1852
1863
 
1853
1864
  Removed:
1854
1865
 
1855
- * Several filters have been removed and replaced by newer filters:
1856
- * `eruby`: use `erb` or `erubis` instead
1857
- * `markdown`: use `bluecloth`, `rdiscount` or `maruku` instead
1858
- * `textile`: use `redcloth` instead
1866
+ - Several filters have been removed and replaced by newer filters:
1867
+ - `eruby`: use `erb` or `erubis` instead
1868
+ - `markdown`: use `bluecloth`, `rdiscount` or `maruku` instead
1869
+ - `textile`: use `redcloth` instead
1859
1870
 
1860
1871
  ## 2.0.4 (2008-05-04)
1861
1872
 
1862
- * Fixed `default.rb`’s `#html_escape`
1863
- * Updated Haml filter and layout processor so that @page, @pages and @config are now available as instance variables instead of local variables
1873
+ - Fixed `default.rb`’s `#html_escape`
1874
+ - Updated Haml filter and layout processor so that @page, @pages and @config are now available as instance variables instead of local variables
1864
1875
 
1865
1876
  ## 2.0.3 (2008-03-25)
1866
1877
 
1867
- * The autocompiler now honors custom paths
1868
- * The autocompiler now attempts to serve pages with the most appropriate MIME type, instead of always serving everything as `text/html`
1878
+ - The autocompiler now honors custom paths
1879
+ - The autocompiler now attempts to serve pages with the most appropriate MIME type, instead of always serving everything as `text/html`
1869
1880
 
1870
1881
  ## 2.0.2 (2008-01-26)
1871
1882
 
1872
- * nanoc now requires Ruby 1.8.5 instead of 1.8.6
1883
+ - nanoc now requires Ruby 1.8.5 instead of 1.8.6
1873
1884
 
1874
1885
  ## 2.0.1 (2008-01-21)
1875
1886
 
1876
- * Fixed a “too many open files” error that could appear during (auto)compiling
1887
+ - Fixed a “too many open files” error that could appear during (auto)compiling
1877
1888
 
1878
1889
  ## 2.0 (2007-12-25)
1879
1890
 
1880
1891
  New:
1881
1892
 
1882
- * Support for custom layout processors
1883
- * Support for custom data sources
1884
- * Database data source
1885
- * An auto-compiler
1886
- * Pages have `parent` and `children`
1893
+ - Support for custom layout processors
1894
+ - Support for custom data sources
1895
+ - Database data source
1896
+ - An auto-compiler
1897
+ - Pages have `parent` and `children`
1887
1898
 
1888
1899
  Changed:
1889
1900
 
1890
- * The source has been restructured and cleaned up a great deal
1891
- * Filters are defined in a different way now
1892
- * The `eruby` filter now uses ERB instead of Erubis
1901
+ - The source has been restructured and cleaned up a great deal
1902
+ - Filters are defined in a different way now
1903
+ - The `eruby` filter now uses ERB instead of Erubis
1893
1904
 
1894
1905
  Removed:
1895
1906
 
1896
- * The `filters` property; use `filters_pre` instead
1897
- * Support for Liquid
1907
+ - The `filters` property; use `filters_pre` instead
1908
+ - Support for Liquid
1898
1909
 
1899
1910
  ## 1.6.2 (2007-10-23)
1900
1911
 
1901
- * Fixed an issue which prevented the content capturing plugin from working
1912
+ - Fixed an issue which prevented the content capturing plugin from working
1902
1913
 
1903
1914
  ## 1.6.1 (2007-10-14)
1904
1915
 
1905
- * Removed a stray debug message
1916
+ - Removed a stray debug message
1906
1917
 
1907
1918
  ## 1.6 (2007-10-13)
1908
1919
 
1909
- * Added support for post-layout filters
1910
- * Added support for getting a File object for the page, so you can now e.g. easily get the modification time for a given page (`@page.file.mtime`)
1911
- * Cleaned up the source code a lot
1912
- * Removed deprecated asset-copying functionality
1920
+ - Added support for post-layout filters
1921
+ - Added support for getting a File object for the page, so you can now e.g. easily get the modification time for a given page (`@page.file.mtime`)
1922
+ - Cleaned up the source code a lot
1923
+ - Removed deprecated asset-copying functionality
1913
1924
 
1914
1925
  ## 1.5 (2007-09-10)
1915
1926
 
1916
- * Added support for custom filters
1917
- * Improved Liquid support -- Liquid is now a first-class nanoc citizen
1918
- * Deprecated assets -- use something like rsync instead
1919
- * Added `eruby_engine` option, which can be `erb` or `erubis`
1927
+ - Added support for custom filters
1928
+ - Improved Liquid support -- Liquid is now a first-class nanoc citizen
1929
+ - Deprecated assets -- use something like rsync instead
1930
+ - Added `eruby_engine` option, which can be `erb` or `erubis`
1920
1931
 
1921
1932
  ## 1.4 (2007-07-06)
1922
1933
 
1923
- * nanoc now supports ERB (as well as Erubis); Erubis no longer is a dependency
1924
- * `meta.yaml` can now have `haml_options` property, which is passed to Haml
1925
- * Pages can now have a `filename` property, which defaults to `index` [Dennis Sutch]
1926
- * Pages now know in what order they should be compiled, eliminating the need for custom page ordering [Dennis Sutch]
1934
+ - nanoc now supports ERB (as well as Erubis); Erubis no longer is a dependency
1935
+ - `meta.yaml` can now have `haml_options` property, which is passed to Haml
1936
+ - Pages can now have a `filename` property, which defaults to `index` [Dennis Sutch]
1937
+ - Pages now know in what order they should be compiled, eliminating the need for custom page ordering [Dennis Sutch]
1927
1938
 
1928
1939
  ## 1.3.1 (2007-06-30)
1929
1940
 
1930
- * The contents of the `assets` directory are now copied into the output directory specified in `config.yaml`
1941
+ - The contents of the `assets` directory are now copied into the output directory specified in `config.yaml`
1931
1942
 
1932
1943
  ## 1.3 (2007-06-24)
1933
1944
 
1934
- * The `@pages` array now also contains uncompiled pages
1935
- * Pages with `skip_output` set to true will not be outputted
1936
- * Added new filters
1937
- * Textile/RedCloth
1938
- * Sass
1939
- * nanoc now warns before overwriting in `create_site`, `create_page` and `create_template` (but not in compile)
1945
+ - The `@pages` array now also contains uncompiled pages
1946
+ - Pages with `skip_output` set to true will not be outputted
1947
+ - Added new filters
1948
+ - Textile/RedCloth
1949
+ - Sass
1950
+ - nanoc now warns before overwriting in `create_site`, `create_page` and `create_template` (but not in compile)
1940
1951
 
1941
1952
  ## 1.2 (2007-06-05)
1942
1953
 
1943
- * Sites now have an `assets` directory, whose contents are copied to the `output` directory when compiling [Stanley Rost]
1944
- * Added support for non-eRuby layouts (Markaby, Haml, Liquid, …)
1945
- * Added more filters (Markaby, Haml, Liquid, RDoc [Dmitry Bilunov])
1946
- * Improved error reporting
1947
- * Accessing page attributes using instance variables, and not through `@page`, is no longer possible
1948
- * Page attributes can now be accessed using dot notation, i.e. `@page.title` as well as `@page[:title]`
1954
+ - Sites now have an `assets` directory, whose contents are copied to the `output` directory when compiling [Stanley Rost]
1955
+ - Added support for non-eRuby layouts (Markaby, Haml, Liquid, …)
1956
+ - Added more filters (Markaby, Haml, Liquid, RDoc [Dmitry Bilunov])
1957
+ - Improved error reporting
1958
+ - Accessing page attributes using instance variables, and not through `@page`, is no longer possible
1959
+ - Page attributes can now be accessed using dot notation, i.e. `@page.title` as well as `@page[:title]`
1949
1960
 
1950
1961
  ## 1.1.3 (2007-05-18)
1951
1962
 
1952
- * Fixed bug which would cause layoutless pages to be outputted incorrectly
1963
+ - Fixed bug which would cause layoutless pages to be outputted incorrectly
1953
1964
 
1954
1965
  ## 1.1.2 (2007-05-17)
1955
1966
 
1956
- * Backup files (files ending with a “~”) are now ignored
1957
- * Fixed bug which would cause subpages not to be generated correctly
1967
+ - Backup files (files ending with a “~”) are now ignored
1968
+ - Fixed bug which would cause subpages not to be generated correctly
1958
1969
 
1959
1970
  ## 1.1 (2007-05-08)
1960
1971
 
1961
- * Added support for nested layouts
1962
- * Added coloured logging
1963
- * `@page` now hold the page that is currently being processed
1964
- * Index files are now called “content” files and are now named after the directory they are in [Colin Barrett]
1965
- * It is now possible to access `@page` in the page’s content file
1972
+ - Added support for nested layouts
1973
+ - Added coloured logging
1974
+ - `@page` now hold the page that is currently being processed
1975
+ - Index files are now called “content” files and are now named after the directory they are in [Colin Barrett]
1976
+ - It is now possible to access `@page` in the page’s content file
1966
1977
 
1967
1978
  ## 1.0.1 (2007-05-05)
1968
1979
 
1969
- * Fixed a bug which would cause a “no such template” error to be displayed when the template existed but compiling it would raise an exception
1970
- * Fixed bug which would cause pages not to be sorted by order before compiling
1980
+ - Fixed a bug which would cause a “no such template” error to be displayed when the template existed but compiling it would raise an exception
1981
+ - Fixed bug which would cause pages not to be sorted by order before compiling
1971
1982
 
1972
1983
  ## 1.0 (2007-05-03)
1973
1984
 
1974
- * Initial release
1985
+ - Initial release