mirror of
https://github.com/datarhei/core.git
synced 2025-09-26 20:11:29 +08:00
Bump version to 16.15.0, update changelog
This commit is contained in:
@@ -1,5 +1,14 @@
|
|||||||
# Core
|
# 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
|
### Core v16.13.1 > v16.14.0
|
||||||
|
|
||||||
- Add support for SRTv4 clients
|
- Add support for SRTv4 clients
|
||||||
|
3
Makefile
3
Makefile
@@ -85,9 +85,6 @@ commit: vet fmt lint test build
|
|||||||
release:
|
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)"
|
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: Build standard Docker image
|
||||||
docker:
|
docker:
|
||||||
docker build -t core:$(SHORTCOMMIT) .
|
docker build -t core:$(SHORTCOMMIT) .
|
||||||
|
@@ -29,7 +29,7 @@ func (v versionInfo) MinorString() string {
|
|||||||
// Version of the app
|
// Version of the app
|
||||||
var Version = versionInfo{
|
var Version = versionInfo{
|
||||||
Major: 16,
|
Major: 16,
|
||||||
Minor: 14,
|
Minor: 15,
|
||||||
Patch: 0,
|
Patch: 0,
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user