summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAnton Titov <[email protected]>2020-02-17 12:35:45 +0300
committerGitHub <[email protected]>2020-02-17 12:35:45 +0300
commiteb296f27868d4ac886b1b151377f15b35e3f0099 (patch)
treeefe36de6d7d6ae0cfe8d5e382b407d99706ee42a
parent691e937bcaf089e33e11e7f5528e7e736f500d0a (diff)
parente118ffeedc1de821280cffe22c5a459d262fe074 (diff)
Merge pull request #251 from spiral/update_release_changelog_and_version
Update CHANGELOG and version in build.sh
-rw-r--r--CHANGELOG.md15
-rwxr-xr-xbuild.sh2
2 files changed, 13 insertions, 4 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 5c8d9804..b91b8ac4 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,9 +1,18 @@
CHANGELOG
=========
-UNRELEASED
-----------
-- added `Dockerfile` for building RR binary file by [@tarampampam](https://github.com/tarampampam) (closes [issue #218](https://github.com/spiral/roadrunner/issues/218))
+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/)
+- Added LDFLAGS "-s" to build.sh --> https://spiralscout.com/blog/golang-software-testing-tips
+
+v1.6.0 (11.02.2020)
+-------------------
+- Moved to GitHub Actions, thanks to @tarampampam
+- New GZIP handler, thanks to @wppd
+- Tests stabilization and fix REQUEST_URI for requests through FastCGI, thanks to @marliotto
+- Golang modules update and new RPC method to register metrics from the application, thanks to @48d90782
+- Deadlock on timer update in error buffer [bugfix], thanks to @camohob
v1.5.3 (23.12.2019)
-------------------
diff --git a/build.sh b/build.sh
index 8015a481..6a185091 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.0
+RR_VERSION=1.6.1
# Hardcode some values to the core package
LDFLAGS="$LDFLAGS -X github.com/spiral/roadrunner/cmd/rr/cmd.Version=${RR_VERSION}"