From 2479605aa25426cd2e7a3ebf68e8b8e2d940117c Mon Sep 17 00:00:00 2001 From: Dan Markham Date: Sat, 30 Jan 2021 23:37:57 -0800 Subject: [PATCH 1/2] Readme update --- README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/README.md b/README.md index f558f22..24e4376 100644 --- a/README.md +++ b/README.md @@ -20,6 +20,8 @@ Flags: transform each item name by adding a prefix. Default: "" -comment value comments to include in generated code, can repeat. Default: "" + -gqlgen + if true, GraphQL marshaling methods for gqlgen will be generated. Default: false -json if true, json marshaling methods will be generated. Default: false -linecomment From be4c11f837cfbbeec1170ecce4d8cb24654f1683 Mon Sep 17 00:00:00 2001 From: Dan Markham Date: Sat, 30 Jan 2021 23:39:52 -0800 Subject: [PATCH 2/2] Move to go1.15.x --- .travis.yml | 4 ++-- go.mod | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.travis.yml b/.travis.yml index 234b2c3..7bd3a05 100644 --- a/.travis.yml +++ b/.travis.yml @@ -4,8 +4,8 @@ matrix: allow_failures: - go: master include: - - go: 1.13.x - go: 1.14.x + - go: 1.15.x - go: master env: global: @@ -24,6 +24,6 @@ deploy: - cli/build/enumer.windows-amd64.exe.tar.gz - cli/build/sha256sum.txt on: - go: 1.14.x + go: 1.15.x repo: dmarkham/enumer tags: true diff --git a/go.mod b/go.mod index fbc95ae..b08e1fa 100644 --- a/go.mod +++ b/go.mod @@ -5,4 +5,4 @@ require ( golang.org/x/tools v0.0.0-20200221224223-e1da425f72fd ) -go 1.13 +go 1.14