Merge pull request #65 from metalmatze/release-0.2.0

Prepare a v0.2.0 release
This commit is contained in:
Matthias Loibl 2020-01-08 13:32:19 +01:00 committed by GitHub
commit 184841238b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 14 additions and 2 deletions

View file

@ -1,3 +1,13 @@
## 0.2.0 / 202-01-08
* [FEATURE] Rework installation process adding checksums (#44)
* [FEATURE] Add local dependencies as source dependency (#36)
* [ENHANCEMENT] Only write jsonnnet files if we made changes (#56)
* [ENHANCEMENT] Package install optimizations for git (#38)
* [ENHANCEMENT] Add integration tests (#35)
* [ENHANCEMENT] Suppress detached head advice (#34)
* [BUGFIX] Make sure to fetch git tags (#58)
## 0.1.0 / 2019-04-23 ## 0.1.0 / 2019-04-23
This is the first release for jsonnet-bundler. This is the first release for jsonnet-bundler.

View file

@ -1 +1 @@
v0.1.0 v0.2.0

View file

@ -1,8 +1,10 @@
#!/usr/bin/env bash #!/usr/bin/env bash
BINARY_NAME=jb BINARY_NAME=jb
GOOS=$(go env GOOS)
GOARCH=$(go env GOARCH)
HELP_FILE=$PWD/_output/help.txt HELP_FILE=$PWD/_output/help.txt
echo "$ $BINARY_NAME -h" > $HELP_FILE echo "$ $BINARY_NAME -h" > $HELP_FILE
PATH=$PATH:$PWD/_output/linux/amd64 $BINARY_NAME -h 2>> $HELP_FILE $PWD/_output/$GOOS/$GOARCH/$BINARY_NAME 2>> $HELP_FILE
exit 0 exit 0