From f1f1723381de498133449f3e20425efa57542ec2 Mon Sep 17 00:00:00 2001 From: Matthias Loibl Date: Wed, 8 Jan 2020 11:20:36 +0100 Subject: [PATCH 1/2] Prepare a v0.2.0 release --- CHANGELOG.md | 10 ++++++++++ README.md | 6 ++---- VERSION | 2 +- 3 files changed, 13 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 0bff6af..3ea3cd5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 This is the first release for jsonnet-bundler. diff --git a/README.md b/README.md index 57f5462..791985f 100644 --- a/README.md +++ b/README.md @@ -87,11 +87,9 @@ usage: jb [] [ ...] A jsonnet package manager Flags: - -h, --help Show context-sensitive help (also try --help-long and - --help-man). - --version Show application version. + -h, --help Show context-sensitive help (also try --help-long and --help-man). --jsonnetpkg-home="vendor" - The directory used to cache packages in. + The directory used to cache packages in. Commands: help [...] diff --git a/VERSION b/VERSION index b82608c..1474d00 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -v0.1.0 +v0.2.0 From 20988370ccec57065c90f830a93d75917539ebe7 Mon Sep 17 00:00:00 2001 From: Matthias Loibl Date: Wed, 8 Jan 2020 11:39:44 +0100 Subject: [PATCH 2/2] Fix generate README script --- README.md | 6 ++++-- scripts/generate-help-txt.sh | 4 +++- 2 files changed, 7 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 791985f..57f5462 100644 --- a/README.md +++ b/README.md @@ -87,9 +87,11 @@ usage: jb [] [ ...] A jsonnet package manager Flags: - -h, --help Show context-sensitive help (also try --help-long and --help-man). + -h, --help Show context-sensitive help (also try --help-long and + --help-man). + --version Show application version. --jsonnetpkg-home="vendor" - The directory used to cache packages in. + The directory used to cache packages in. Commands: help [...] diff --git a/scripts/generate-help-txt.sh b/scripts/generate-help-txt.sh index ddb934d..6f21926 100755 --- a/scripts/generate-help-txt.sh +++ b/scripts/generate-help-txt.sh @@ -1,8 +1,10 @@ #!/usr/bin/env bash BINARY_NAME=jb +GOOS=$(go env GOOS) +GOARCH=$(go env GOARCH) HELP_FILE=$PWD/_output/help.txt 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