summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorValery Piashchynski <[email protected]>2020-02-17 15:05:49 +0300
committerValery Piashchynski <[email protected]>2020-02-17 15:05:49 +0300
commit25ef7646e2149b6e35945eb4ce50c19db2ef8e27 (patch)
tree0ba04fcfbfc669d8b4f31b1489c00399ae76fdff
parenteb296f27868d4ac886b1b151377f15b35e3f0099 (diff)
Update CHANGELOG and build.sh to version 1.6.2
-rw-r--r--CHANGELOG.md3
-rwxr-xr-xbuild.sh8
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/)
diff --git a/build.sh b/build.sh
index 6a185091..ba0a1716 100755
--- a/build.sh
+++ b/build.sh
@@ -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 ..
}