Skip to content

Commit 73d86c4

Browse files
committed
Release v3.3.0
1 parent d500b60 commit 73d86c4

File tree

2 files changed

+36
-1
lines changed

2 files changed

+36
-1
lines changed

CHANGELOG

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,38 @@
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

go-bindata/main.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ import (
2020
const (
2121
appName = "go-bindata"
2222
appVersionMajor = 3
23-
appVersionMinor = 2
23+
appVersionMinor = 3
2424
)
2525

2626
var (

0 commit comments

Comments
 (0)