diff options
author | Anton Titov <[email protected]> | 2020-02-17 12:35:45 +0300 |
---|---|---|
committer | GitHub <[email protected]> | 2020-02-17 12:35:45 +0300 |
commit | eb296f27868d4ac886b1b151377f15b35e3f0099 (patch) | |
tree | efe36de6d7d6ae0cfe8d5e382b407d99706ee42a | |
parent | 691e937bcaf089e33e11e7f5528e7e736f500d0a (diff) | |
parent | e118ffeedc1de821280cffe22c5a459d262fe074 (diff) |
Merge pull request #251 from spiral/update_release_changelog_and_version
Update CHANGELOG and version in build.sh
-rw-r--r-- | CHANGELOG.md | 15 | ||||
-rwxr-xr-x | build.sh | 2 |
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) ------------------- @@ -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}" |