Skip to content

Commit

Permalink
Merge pull request #54 from Shopify/v120-take2
Browse files Browse the repository at this point in the history
finalize v1.2.0
  • Loading branch information
burke authored Aug 31, 2018
2 parents 977f8d7 + dd8fcc8 commit b5c1a89
Show file tree
Hide file tree
Showing 479 changed files with 5,508 additions and 91,053 deletions.
47 changes: 47 additions & 0 deletions Gopkg.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

34 changes: 34 additions & 0 deletions Gopkg.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
# Gopkg.toml example
#
# Refer to https://github.com/golang/dep/blob/master/docs/Gopkg.toml.md
# for detailed Gopkg.toml documentation.
#
# required = ["github.com/user/thing/cmd/thing"]
# ignored = ["github.com/user/project/pkgX", "bitbucket.org/user/project/pkgA/pkgY"]
#
# [[constraint]]
# name = "github.com/user/project"
# version = "1.0.0"
#
# [[constraint]]
# name = "github.com/user/project2"
# branch = "dev"
# source = "github.com/myfork/project2"
#
# [[override]]
# name = "github.com/x/y"
# version = "2.4.0"
#
# [prune]
# non-go = false
# go-tests = true
# unused-packages = true


[[constraint]]
name = "github.com/urfave/cli"
version = "1.20.0"

[prune]
go-tests = true
unused-packages = true
8 changes: 4 additions & 4 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -23,12 +23,12 @@ man: $(MANFILES)

build/man/%.gz: man/%.ronn
mkdir -p "$(@D)"
$(BUNDLE_EXEC) ronn -r --pipe "$<" | gzip > "$@"
set -euo pipefail ; $(BUNDLE_EXEC) ronn -r --pipe "$<" | gzip > "$@" || (rm -f "$<" ; false)

build/bin/linux-amd64: $(GOFILES) cmd/$(NAME)/version.go
GOPATH=$(GODEP_PATH):$$GOPATH GOOS=linux GOARCH=amd64 go build -o "$@" "$(PACKAGE)/cmd/$(NAME)"
GOOS=linux GOARCH=amd64 go build -o "$@" "$(PACKAGE)/cmd/$(NAME)"
build/bin/darwin-amd64: $(GOFILES) cmd/$(NAME)/version.go
GOPATH=$(GODEP_PATH):$$GOPATH GOOS=darwin GOARCH=amd64 go build -o "$@" "$(PACKAGE)/cmd/$(NAME)"
GOOS=darwin GOARCH=amd64 go build -o "$@" "$(PACKAGE)/cmd/$(NAME)"

$(GEM): rubygem/$(NAME)-$(VERSION).gem
mkdir -p $(@D)
Expand Down Expand Up @@ -77,7 +77,7 @@ $(DEB): build/bin/linux-amd64 man
--no-depends \
--no-auto-depends \
--architecture=amd64 \
--maintainer="Burke Libbey <burke.libbey@shopify.com>" \
--maintainer="Shopify <admins@shopify.com>" \
--description="utility for managing a collection of secrets in source control. Secrets are encrypted using public key, elliptic curve cryptography." \
--url="https://github.com/Shopify/ejson" \
./build/man/=/usr/share/man/ \
Expand Down
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,9 @@ The main benefits provided by `ejson` are:

See [the manpages](https://shopify.github.io/ejson) for more technical documentation.

See [ejson2env](https://github.com/Shopify/ejson2env) for a useful tool to help with exporting
a portion of secrets as environment variables for environments/tools that require this pattern.

## Installation

You can download the `.deb` package from [Github Releases](https://github.com/Shopify/ejson/releases).
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.1.0
1.2.0
2 changes: 1 addition & 1 deletion cmd/ejson/version.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
package main

const VERSION string = "1.1.0"
const VERSION string = "1.2.0"
98 changes: 0 additions & 98 deletions cmd/ejson2env/ejson2env.1.ronn

This file was deleted.

46 changes: 0 additions & 46 deletions cmd/ejson2env/env.go

This file was deleted.

68 changes: 0 additions & 68 deletions cmd/ejson2env/env_test.go

This file was deleted.

18 changes: 0 additions & 18 deletions cmd/ejson2env/key.go

This file was deleted.

Loading

0 comments on commit b5c1a89

Please sign in to comment.