Skip to content

Commit

Permalink
Checking in changes prior to tagging of version v0.7.0
Browse files Browse the repository at this point in the history
  • Loading branch information
takanakahiko committed Oct 30, 2020
1 parent f6201a1 commit d213d6e
Show file tree
Hide file tree
Showing 5 changed files with 132 additions and 24 deletions.
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,16 @@
# Changelog

## [v0.7.0](https://github.com/aktsk/atgen/compare/v0.6.0...v0.7.0) (2020-10-30)

* Access nested data with register [#27](https://github.com/aktsk/atgen/pull/27) ([takanakahiko](https://github.com/takanakahiko))
* Test on GitHub Actions [#26](https://github.com/aktsk/atgen/pull/26) ([takanakahiko](https://github.com/takanakahiko))
* Support form and raw type request body [#22](https://github.com/aktsk/atgen/pull/22) ([p1ass](https://github.com/p1ass))
* Fix variable name from vars to atgenVars [#24](https://github.com/aktsk/atgen/pull/24) ([p1ass](https://github.com/p1ass))
* Change to use format.Node when writing generated code [#23](https://github.com/aktsk/atgen/pull/23) ([p1ass](https://github.com/p1ass))
* Generate http request body in Atgen [#21](https://github.com/aktsk/atgen/pull/21) ([p1ass](https://github.com/p1ass))
* Fix to replace status to atgenStatus for placeholder [#19](https://github.com/aktsk/atgen/pull/19) ([p1ass](https://github.com/p1ass))
* Add Atgen prefix before functions and variables replaced by atgen [#18](https://github.com/aktsk/atgen/pull/18) ([p1ass](https://github.com/p1ass))

## [v0.6.0](https://github.com/aktsk/atgen/compare/v0.5.0...v0.6.0) (2019-05-13)

* Cache results of packges.Load() to shorten execution time [#14](https://github.com/aktsk/atgen/pull/14) ([mizzy](https://github.com/mizzy))
Expand Down
3 changes: 2 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,8 @@ setup:
go get golang.org/x/tools/cmd/goimports
go get github.com/tcnksm/ghr
go get github.com/Songmu/goxz/cmd/goxz
go get github.com/motemen/gobump/cmd/gobump
go get github.com/x-motemen/gobump/cmd/gobump
go get github.com/Songmu/ghch/cmd/ghch

test:
go test ./lib
Expand Down
28 changes: 6 additions & 22 deletions go.mod
Original file line number Diff line number Diff line change
@@ -1,37 +1,21 @@
module github.com/aktsk/atgen

require (
github.com/Songmu/goxz v0.1.1 // indirect
github.com/Songmu/retry v0.1.0 // indirect
github.com/Songmu/ghch v0.10.2 // indirect
github.com/Songmu/goxz v0.6.0 // indirect
github.com/blang/semver v3.5.1+incompatible // indirect
github.com/dsnet/compress v0.0.0-20171208185109-cc9eb1d7ad76 // indirect
github.com/golang/lint v0.0.0-20181217174547-8f45f776aaf1 // indirect
github.com/golang/snappy v0.0.0-20180518054509-2e65f85255db // indirect
github.com/google/go-github v17.0.0+incompatible // indirect
github.com/google/go-querystring v1.0.0 // indirect
github.com/gorilla/context v1.1.1 // indirect
github.com/gorilla/mux v1.6.2
github.com/hashicorp/go-version v1.1.0 // indirect
github.com/lkesteloot/astutil v0.0.0-20130122170032-b6715328cfa5
github.com/mattn/go-colorable v0.0.9 // indirect
github.com/mattn/go-isatty v0.0.4 // indirect
github.com/mholt/archiver v3.1.1+incompatible // indirect
github.com/mitchellh/colorstring v0.0.0-20150917214807-8631ce90f286 // indirect
github.com/motemen/gobump v0.0.0-20170609005736-b5563e1d8b75 // indirect
github.com/nwaples/rardecode v1.0.0 // indirect
github.com/pierrec/lz4 v2.0.5+incompatible // indirect
github.com/pkg/errors v0.8.1
github.com/pkg/errors v0.9.1
github.com/spf13/afero v1.2.0
github.com/tcnksm/ghr v0.12.0 // indirect
github.com/tcnksm/go-gitconfig v0.1.2 // indirect
github.com/tcnksm/go-latest v0.0.0-20170313132115-e3007ae9052e // indirect
github.com/ulikunitz/xz v0.5.5 // indirect
github.com/tcnksm/ghr v0.13.0 // indirect
github.com/urfave/cli v1.20.0
github.com/xi2/xz v0.0.0-20171230120015-48954b6210f8 // indirect
github.com/x-motemen/gobump v0.2.0 // indirect
golang.org/x/crypto v0.0.0-20201016220609-9e8e0b390897 // indirect
golang.org/x/lint v0.0.0-20181217174547-8f45f776aaf1 // indirect
golang.org/x/oauth2 v0.0.0-20190115181402-5dab4167f31c // indirect
golang.org/x/text v0.3.3 // indirect
golang.org/x/tools v0.0.0-20190128232029-0a99049195af
golang.org/x/tools v0.0.0-20201030010431-2feb2bb1ff51
gopkg.in/yaml.v2 v2.2.2
)
Loading

0 comments on commit d213d6e

Please sign in to comment.