diff --git a/CHANGELOG.md b/CHANGELOG.md index dee3fb61..f4c406a4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,12 @@ # Core +### Core v16.13.1 > v16.14.0 + +- Add support for SRTv4 clients +- Fix require positive persist interval (session) +- Fix race condition (process) +- Update dependencies + ### Core v16.13.0 > v16.13.1 - Fix transfer of reports to updated process diff --git a/app/version.go b/app/version.go index 286e8dfe..9e3b2da6 100644 --- a/app/version.go +++ b/app/version.go @@ -29,8 +29,8 @@ func (v versionInfo) MinorString() string { // Version of the app var Version = versionInfo{ Major: 16, - Minor: 13, - Patch: 1, + Minor: 14, + Patch: 0, } // Commit is the git commit the app is build from. It should be filled in during compilation