Skip to content

Commit

Permalink
Update changelog for v1.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
barasher committed Sep 19, 2020
1 parent cd214fc commit 0b49334
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
4 changes: 3 additions & 1 deletion README.MD
Original file line number Diff line number Diff line change
Expand Up @@ -69,4 +69,6 @@ Output :
- [add Mac & Windows support](https://github.com/barasher/go-exiftool/pull/7) (thank to @PROger4ever)
- [increase errors readability](https://github.com/barasher/go-exiftool/pull/8) (thank to @PROger4ever)
- [v1.2.0](https://github.com/barasher/go-exiftool/milestone/4)
- [add stdout and stderr buffer configuration capabilities](https://github.com/barasher/go-exiftool/issues/6) (thank to @asannikov)
- [add stdout and stderr buffer configuration capabilities](https://github.com/barasher/go-exiftool/issues/6) (thank to @asannikov)
- [v1.3.0](https://github.com/barasher/go-exiftool/milestone/5)
- Add functionnal option to set [ExifTool](https://www.sno.phy.queensu.ca/~phil/exiftool/)'s `-charset` parameter (thank to @PROger4ever)
2 changes: 1 addition & 1 deletion exiftool_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -217,7 +217,7 @@ func TestCharset(t *testing.T) {
e, err := NewExiftool()
assert.Nil(t, err)
defer e.Close()
lengthBefore := len(e.extraInitArgs)
lengthBefore := len(e.extraInitArgs)

assert.Nil(t, Charset("charsetValue")(e))
assert.Equal(t, lengthBefore+2, len(e.extraInitArgs))
Expand Down

0 comments on commit 0b49334

Please sign in to comment.