-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathchange.log
429 lines (249 loc) · 12.9 KB
/
change.log
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
1.0.1
* templates:
- `choco_bintray/install` to show a snippet to install the app from bintray using chocolatey
- `linux/bintray_repo` to show a snippet to install the app from bintray `apt/dnf` repository.
- mh-cbon <[email protected]>
-- mh-cbon <[email protected]>; Tue, 29 Aug 2017 19:51:46 +0200
1.0.0
* toc: fix link generator to remove colon
* close #26: avoid fatal error when a path is not recognized
* appveyor: close #28: fix badge urls
- mh-cbon <[email protected]>
- solvingJ <[email protected]>
-- mh-cbon <[email protected]>; Thu, 24 Aug 2017 18:46:21 +0200
0.0.12
* __cli__:
- ensure data passed on the command line overwrites everthing else, fix #19.
* __dep__:
- fixed glide lock, needed an update.
* __dev__:
- Add provider tests
- mh-cbon <[email protected]>
-- mh-cbon <[email protected]>; Wed, 10 May 2017 11:30:14 +0200
0.0.11
* __CLI__:
- Fix an issue in argument handling.
* __Path detection__: #17
- The mechanism to detect and extract information from the path,
is improved to work with anything that matches src/[provider]/[user]/[repo]/[path...]
* __Temaplate func helpers__:
- __pkg_doc__: won t panic anymore if the default `main.go` file is not yet created.
* __Temaplates__: #16
- Fix templates output to avoid double `/`.
* __dev__:
- Largely improved tests.
- mh-cbon <[email protected]>
- suntong <[email protected]>
-- mh-cbon <[email protected]>; Sun, 07 May 2017 16:05:48 +0200
0.0.10
* __CLI__:
- new `init` command: Writes a basic `README.e.md` frile to get started
- `gen`: removed useless confirmation message on successful operation.
- `stdin`: emd can now receives the input template from STDIN.
- verbosity: Added support for verbosity with env variable `VERBOSE=y`.
* __Predefined data__:
- New api is introduced to better detect predefined data.
- ProjectPath is better handled when its a symlink outside of `GOPATH` (#15 thanks suntong)
* __Prelude data__:
- It is now possible to override predefined data within the prelude.
This should allow the end user to recover from a buggy implementation in the pre defined variables declaration.
* __TOC__:
- #16 Improve link generator to handle `[]|',`
- Multiple fixes to properly render the TOC level of each header.
* __Template__: added multiple new functions to help to work with templates
- __set__(name string, x interface{}): Save given value `x` as `name` on dot `.`.
- __link__(url string, text ...string) string: Prints markdown link.
- __img__(url string, alt ...string) string: Prints markdown image.
- __concat__(x ...string) string: Concat given arguments.
- __pathjoin__(x ...string) string: Join given arguments with `/`.
* __dev__:
- added small test suites into `test.sh`
- mh-cbon <[email protected]>
- suntong <[email protected]>
-- mh-cbon <[email protected]>; Sat, 06 May 2017 09:09:10 +0200
0.0.10-beta
* CLI:
- new `init` command: Writes a basic `README.e.md` frile to get started
- `gen`: removed useless confirmation message on successful operation.
* Predefined data:
- New api is introduced to better detect predefined data.
* Prelude data:
- It is now possible to override predefined data within the prelude.
This should allow the end user to recover from a buggy implementation in the pre defined variables declaration.
* TOC:
- #16 Improve link generator to handle `[]|',`
- Multiple fixes to properly render the TOC level of each header.
* Template: added multiple new functions to help to work with templates
- __set__(name string, x interface{}): Save given value `x` as `name` on dot `.`.
- __link__(url string, text ...string) string: Prints markdown link.
- __img__(url string, alt ...string) string: Prints markdown image.
- __concat__(x ...string) string: Concat given arguments.
- __pathjoin__(x ...string) string: Join given arguments with `/`.
- mh-cbon <[email protected]>
-- mh-cbon <[email protected]>; Mon, 24 Apr 2017 14:54:07 +0200
0.0.9
* feature #10: Emd file can define a prelude block of `yaml` data to inject into the template processing.
* cli fix: Before the -in argument was mandatory. It was not possible to use the default template.
* feature installer: Fixed apt/rpm repositories.
* feature #8: ensure an errored command line execution displays correctly.
* feature: added new template functions
- __yaml__(file string, keypaths ...string): parses and build new yaml content of given file.
- __preline__(pre , content string): prepends pre for every lines of content.
- __echo__(s ...string): echo every string s.
- __read__(file string): returns file content.
- __cat__(file string): to display the file content.
- __exec__(bin string, args ...string): to exec a program.
- __shell__(s string): to exec a command line on the underlying shell (it is not cross compatible).
- __color__(color string, content string): to embed content in a block code with color.
- __gotest__(rpkg string, run string, args ...string): exec `go test <rpkg> -v -run <run> <args...>`.
- __toc__(maximportance string, title string): display a TOC.
* feature: added new badge templates
- __license/shields__: show a license badge
- __badge/codeship__: show a codeship badge
* __deprecation__ #7: some template functions were deprecated to avoid pre defined formatting,
old behavior can be reset via new options defined into the prelude data. See also the new __color__ function.
- __file__ is dprecated for __cat__
- __cli__ is dprecated for __exec__
* badges fix #14: removed useless whitespace
* dev: Added support for glide, it was required to handle yaml.
* dev: updated tests
* dev: godoc documentation improvements.
- suntong <[email protected]>
- mh-cbon <[email protected]>
-- mh-cbon <[email protected]>; Sat, 22 Apr 2017 10:51:03 +0200
0.0.9-beta9
* fix default reading of the md file
- mh-cbon <[email protected]>
-- mh-cbon <[email protected]>; Tue, 18 Apr 2017 10:51:03 +0200
0.0.9-beta8
* fix #15: properly handle symbolic links
* fix cli: it was not possible to use the default template
- mh-cbon <[email protected]>
-- mh-cbon <[email protected]>; Tue, 18 Apr 2017 10:46:56 +0200
0.0.9-beta7
* fix wrong import path
- mh-cbon <[email protected]>
-- mh-cbon <[email protected]>; Mon, 17 Apr 2017 16:35:09 +0200
0.0.9-beta6
* ci: fix scripts to add glide support
- mh-cbon <[email protected]>
-- mh-cbon <[email protected]>; Mon, 17 Apr 2017 16:26:18 +0200
0.0.9-beta5
* new functions:
- __yaml__(file string, keypaths ...string): parses and build new yaml content of given file.
- __preline__(pre , content string): prepends pre for every lines of content.
- __echo__(s ...string): echo every string s.
- __read__(file string): returns file content.
* toc: multiple fixes,
- it properly handles duplicated title by appending an increment
- fix handling of !; in links generator
- fix line counting when extracting markdown titles
- fix md title selection starting at line N
* prelude:
- fix read of quoted values
- prelude data is now read on all templates added, not only file
- fix last eol handling
* codeship fix #2: proper project url
* bump script: added new utils/ tests
* glide: init versionned dependencies to handle yaml files.
* godoc: refactoring to improve documentation
- mh-cbon <[email protected]>
-- mh-cbon <[email protected]>; Mon, 17 Apr 2017 16:09:41 +0200
0.0.9-beta4
* toc: improve toc parser, refactored, added tests
- mh-cbon <[email protected]>
-- mh-cbon <[email protected]>; Fri, 14 Apr 2017 15:15:52 +0200
0.0.9-beta3
* fix #13: add new template to show a license badge.
* prelude: trim leading whitespaces of unquoted values.
* fix #14: improved badge output, removed useless whitespace.
* fix #2: codeship badge template, added a CsProjectID parameter.
* exec/shell/cat/gotest: avoid pre defined formatting, old behavior can be reset via new options defined into the prelude data.
* toc: fixed some corner cases while parsing/generating the TOC.
- mh-cbon <[email protected]>
-- mh-cbon <[email protected]>; Fri, 14 Apr 2017 11:58:55 +0200
0.0.9-beta2
* fix some bugs in TOC title evaluation and generation
* fix apt repository!
- mh-cbon <[email protected]>
-- mh-cbon <[email protected]>; Thu, 13 Apr 2017 15:09:44 +0200
0.0.9-beta1
* deprecation: improve error messages
- mh-cbon <[email protected]>
-- mh-cbon <[email protected]>; Wed, 12 Apr 2017 17:15:39 +0200
0.0.9-beta
* close #10: added feature to read, decode and registers the prelude data
It is now possible to define a prelude block of `yaml` data in your __README__ file to
register new data.
* added __cat/exec/shell/color/gotest/toc__ func
- __cat__(file string): to display the file content.
- __exec__(bin string, args ...string): to exec a program.
- __shell__(s string): to exec a command line on the underlying shell (it is not cross compatible).
- __color__(color string, content string): to embed content in a block code with color.
- __gotest__(rpkg string, run string, args ...string): exec `go test <rpkg> -v -run <run> <args...>`.
- __toc__(maximportance string, title string): display a TOC.
* close #7: deprecated __file/cli__ func
Those two functions are deprecated in flavor of their new equivalents,
__cat/exec__.
The new functions does not returns a triple backquuotes block code.
They returns the response body only.
A new function helper __color__ is a added to create a block code.
* close #8: improved cli error output
Before the output error was not displaying
the command line entirely when it was too long.
Now the error is updated to always display the command line with full length.
* close #9: add new gotest helper func
* close #12: add toc func
* close #10: ensure unquoted strings are read properly
* close #11: add shell func helper.
- mh-cbon <[email protected]>
-- mh-cbon <[email protected]>; Wed, 12 Apr 2017 14:36:51 +0200
0.0.8
* fix goreport badge template
- mh-cbon <[email protected]>
-- mh-cbon <[email protected]>; Sun, 12 Mar 2017 01:28:04 +0100
0.0.7
* improve template documentation
* goreport: add template (fixes #4)
- mh-cbon <[email protected]>
-- mh-cbon <[email protected]>; Sun, 12 Mar 2017 01:23:58 +0100
0.0.6
* template functions (std): add a new render template function to define additional values (fixes #2)
* template function (std): file takes a new argument to define the colorizer (fixes #1)
* emd: add new methods to access template, out and data
* release: fix missing version to the emd build
* README: multiple improvements.
- mh-cbon <[email protected]>
-- mh-cbon <[email protected]>; Mon, 06 Mar 2017 19:18:04 +0100
0.0.5
* badges: add codeship
* Funcs cli/file: changed the MD template to add support for html anchors (before they was using bold tag, now they use a title tag)
* command gen: prints success message only if out is not stdout
* README: added a section to show HTML generation, and a recipe to bump the package.
* release: change bump script format
- mh-cbon <[email protected]>
-- mh-cbon <[email protected]>; Mon, 06 Mar 2017 15:20:40 +0100
0.0.4
* changelog: typos
* README: add template helpers documentation
- mh-cbon <[email protected]>
-- mh-cbon <[email protected]>; Wed, 22 Feb 2017 22:18:19 +0100
0.0.3
* travis(token): update ghtoken
- mh-cbon <[email protected]>
-- mh-cbon <[email protected]>; Wed, 22 Feb 2017 22:05:07 +0100
0.0.2
* README: fix appveyor badge
* badge(update): fix url
* README: fix appveyor badge
* badge(fix): fix appveyor badge
* README: add appveyor badge
* badge(update): update text displayed in ci badges
* README(fix): use correct bin path
* bump(fix): emd gen command was wrong
- mh-cbon <[email protected]>
-- mh-cbon <[email protected]>; Wed, 22 Feb 2017 21:26:29 +0100
0.0.1
* project initialization
- mh-cbon <[email protected]>
-- mh-cbon <[email protected]>; Wed, 22 Feb 2017 21:07:17 +0100