diff options
author | Valery Piashchynski <[email protected]> | 2020-02-17 15:05:49 +0300 |
---|---|---|
committer | Valery Piashchynski <[email protected]> | 2020-02-17 15:05:49 +0300 |
commit | 25ef7646e2149b6e35945eb4ce50c19db2ef8e27 (patch) | |
tree | 0ba04fcfbfc669d8b4f31b1489c00399ae76fdff | |
parent | eb296f27868d4ac886b1b151377f15b35e3f0099 (diff) |
Update CHANGELOG and build.sh to version 1.6.2
-rw-r--r-- | CHANGELOG.md | 3 | ||||
-rwxr-xr-x | build.sh | 8 |
2 files changed, 7 insertions, 4 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index b91b8ac4..2c112c27 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,9 @@ CHANGELOG ========= +v1.6.2 (24.02.2020) +------------------- + v1.6.1 (17.02.2020) ------------------- - When you run ./rr server -d (debug mode), also pprof server will be launched on :6061 port (this is default golang port for pprof) with the default endpoints (see: https://golang.org/pkg/net/http/pprof/) @@ -3,7 +3,7 @@ cd $(dirname "${BASH_SOURCE[0]}") OD="$(pwd)" # Pushes application version into the build information. -RR_VERSION=1.6.1 +RR_VERSION=1.6.2 # Hardcode some values to the core package LDFLAGS="$LDFLAGS -X github.com/spiral/roadrunner/cmd/rr/cmd.Version=${RR_VERSION}" @@ -29,12 +29,12 @@ build(){ cd builds if [ "$2" == "linux" ]; then - tar -zcf $bdir.tar.gz $bdir + tar -zcf "$bdir".tar.gz "$bdir" else - zip -r -q $bdir.zip $bdir + zip -r -q "$bdir".zip "$bdir" fi - rm -rf $bdir + rm -rf "$bdir" cd .. } |