Bump version to 16.15.0, update changelog

This commit is contained in:
Ingo Oppermann
2024-04-03 14:27:58 +02:00
parent a057573dbf
commit cfff53bab4
3 changed files with 10 additions and 4 deletions

View File

@@ -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

View File

@@ -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) .

View File

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