diff --git a/CHANGELOG.md b/CHANGELOG.md index e0772716..4161e3e4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,14 @@ # Core +### Core v16.14.0 > v16.15.0 + +- Add migrating to ffmpeg 6 +- Fix missing process data if process has been deleted meanwhile +- Fix maintaining the metadata on process config update (datarhei/restreamer#698) +- Fix placeholder parsing +- Fix concurrent memfs accesses +- Fix memfs concurrent read and write performance + ### Core v16.13.1 > v16.14.0 - Add support for SRTv4 clients diff --git a/Makefile b/Makefile index e98e20b6..628eba3b 100644 --- a/Makefile +++ b/Makefile @@ -85,9 +85,6 @@ commit: vet fmt lint test build release: CGO_ENABLED=0 GOOS=${GOOS} GOARCH=${GOARCH} GOARM=$(GOARM) go build -o core -trimpath -ldflags="-s -w -X github.com/datarhei/core/v16/app.Commit=$(COMMIT) -X github.com/datarhei/core/v16/app.Branch=$(BRANCH) -X github.com/datarhei/core/v16/app.Build=$(BUILD)" -release2: - @echo "Hallo" - ## docker: Build standard Docker image docker: docker build -t core:$(SHORTCOMMIT) . diff --git a/app/version.go b/app/version.go index 9e3b2da6..179d84c4 100644 --- a/app/version.go +++ b/app/version.go @@ -29,7 +29,7 @@ func (v versionInfo) MinorString() string { // Version of the app var Version = versionInfo{ Major: 16, - Minor: 14, + Minor: 15, Patch: 0, }