File tree Expand file tree Collapse file tree 2 files changed +36
-1
lines changed
Expand file tree Collapse file tree 2 files changed +36
-1
lines changed Original file line number Diff line number Diff line change 1+ # v3.3.0 (2017-11-07)
2+
3+ This release is contain major internal refactoring on scanning the file system.
4+
5+ ## Enhancements
6+
7+ * Check error and return it
8+
9+ There are many place where error from file create, write, and close was not
10+ checked. With the help of tools, all error was checked and returned to the
11+ caller.
12+
13+ * Move generated content (template) to its own file
14+
15+ Since we generate go code, the template become noise because its inlined
16+ with the generator itself, which make the code unreadable. This commit
17+ split and move the content of generated to its own file `template.go`.
18+
19+ * Refactoring the file scanner
20+
21+ There are several problems in old file system scanner,
22+
23+ * It's unreadable. It's hard to read what the code do from the start
24+ until the end, which make it even harder to write new function/feature.
25+
26+ * Each input file is converted to absolute path to handle symlink
27+ files and/or directory which cause additional process. The new scanner
28+ work with relative path only.
29+
30+ ## Bug Fixes
31+
32+ * @joerocklin: Add the proper 'DO NOT EDIT' tag on file assets
33+ * @komuw: update installation with the right location
34+
35+
136# v3.2.0 (2017-11-07)
237
338## New Features
Original file line number Diff line number Diff line change @@ -20,7 +20,7 @@ import (
2020const (
2121 appName = "go-bindata"
2222 appVersionMajor = 3
23- appVersionMinor = 2
23+ appVersionMinor = 3
2424)
2525
2626var (
You can’t perform that action at this time.
0 commit comments