Skip to content
This repository has been archived by the owner on Oct 2, 2020. It is now read-only.

Commit

Permalink
Preparing for release v0.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Will Hughes committed May 24, 2017
1 parent 531089d commit fc15a00
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,26 @@
Releases
========

v0.3.0 (2017-05-24)
-------------------

- Implement `FieldHook`s natively in mapstructure
- **Breaking**: Changed function signature of `FieldHook` to remove unecessary
`from` parameter.

Before:

```go
func(from reflect.Type, to reflect.StructField, data reflect.Value) (reflect.Value, error)
```

After:

```go
func(dest reflect.StructField, srcData reflect.Value) (reflect.Value, error)
```


v0.2.0 (2017-05-03)
-------------------

Expand Down

0 comments on commit fc15a00

Please sign in to comment.