github.com/aminjam/goflat@v0.4.1-0.20160331105230-ec639fc0d5b3/CHANGELOG.md (about)

     1  ## 0.4.0 (03.20.2016)
     2  - Adding `--output` option for writing to a file.
     3  - Adding `go get` support for missing imports. For example if `gopkg.in/yaml.v2` is used within an input and not in `GOPATH`, goflat should `go get` the missing dependencies temporarily.
     4  
     5  ## 0.3.1 (03.02.2016)
     6  
     7  ### Bugfix
     8  - This is a bug-fix that was introduced as of `v0.2.0`. Compiled binary was trying to read off of the fs for the templates and default pipes. By using `go generate` we can still test the behavior of the extensions while embedding the text into the compiled binary.
     9  
    10  ## 0.3.0 (03.01.2016)
    11  
    12  ### Features
    13  - Enable user defined pipes e.g. `--pipes FILE.go`
    14  - A user should be able to override or extend default helper functions
    15  
    16  ## 0.2.0 (02.25.2016)
    17  
    18  ### Features
    19  - Add support for pipes and helper functions e.g. `{{.List | toUpper}}`
    20  - Support toUpper, toLower, split, join, replace, map
    21  
    22  ### Breaking Changes
    23  - [Changed implementaion](https://github.com/aminjam/goflat/commit/89a00c8abb54e341f935ff4547da382ff4efa51f)
    24   for `{{join .List ","}}` to `{{.List | join ","}}`