Bump version to 16.12.0

This commit is contained in:
Ingo Oppermann 2023-02-20 17:31:29 +01:00
parent 05a176370a
commit d77e4d7160
No known key found for this signature in database
GPG Key ID: 2AB32426E9DD229E
2 changed files with 14 additions and 1 deletions

View File

@ -1,5 +1,18 @@
# Core
### Core v16.11.0 > v16.12.0
- Add S3 storage support
- Add support for variables in placeholde parameter
- Add support for RTMP token as stream key as last element in path
- Add support for soft memory limit with debug.memory_limit_mbytes in config
- Add support for partial process config updates
- Add support for alternative syntax for auth0 tenants as environment variable
- Fix config timestamps created_at and loaded_at
- Fix /config/reload return type
- Fix modifying DTS in RTMP packets ([restreamer/#487](https://github.com/datarhei/restreamer/issues/487), [restreamer/#367](https://github.com/datarhei/restreamer/issues/367))
- Fix default internal SRT latency to 20ms
### Core v16.10.1 > v16.11.0
- Add FFmpeg 4.4 to FFmpeg 5.1 migration tool

View File

@ -29,7 +29,7 @@ func (v versionInfo) MinorString() string {
// Version of the app
var Version = versionInfo{
Major: 16,
Minor: 11,
Minor: 12,
Patch: 0,
}