File tree 3 files changed +13
-8
lines changed
3 files changed +13
-8
lines changed Original file line number Diff line number Diff line change @@ -9,6 +9,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
9
9
10
10
- Nothing yet
11
11
12
+ ## [ 0.2.1] - 2024-01-25
13
+
14
+ ### Fixed
15
+
16
+ - Updated Makefile to new project names
17
+
12
18
## [ 0.2.0] - 2024-01-23
13
19
14
20
### Added
@@ -33,6 +39,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
33
39
- initial version of the repo
34
40
- ts-info tool
35
41
36
- [ Unreleased ] : https://github.com/Eyevinn/mp2ts-tools/releases/tag/v0.2.0...HEAD
37
- [ v0.2.0 ] : https://github.com/Eyevinn/mp2ts-tools/releases/tag/v0.1.0...v0.2.0
42
+ [ Unreleased ] : https://github.com/Eyevinn/mp2ts-tools/releases/tag/v0.2.1...HEAD
43
+ [ 0.2.1 ] : https://github.com/Eyevinn/mp2ts-tools/releases/tag/v0.2.0...v0.2.1
44
+ [ 0.2.0 ] : https://github.com/Eyevinn/mp2ts-tools/releases/tag/v0.1.0...v0.2.0
38
45
[ 0.1.0 ] : https://github.com/Eyevinn/mp2ts-tools/releases/tag/v0.1.0
Original file line number Diff line number Diff line change 2
2
all : test check coverage build
3
3
4
4
.PHONY : build
5
- build : ts -info
5
+ build : mp2ts -info mp2ts-nallister mp2ts-pslister
6
6
7
7
.PHONY : prepare
8
8
prepare :
9
9
go mod tidy
10
10
11
- ts -info :
11
+ mp2ts -info mp2ts-nallister mp2ts-pslister :
12
12
go build -ldflags " -X github.com/Eyevinn/mp2ts-tools/internal.commitVersion=$$ (git describe --tags HEAD) -X github.com/Eyevinn/mp2ts-tools/internal.commitDate=$$ (git log -1 --format=%ct)" -o out/$@ ./cmd/$@ /main.go
13
13
14
14
.PHONY : test
@@ -18,9 +18,7 @@ test: prepare
18
18
.PHONY : coverage
19
19
coverage :
20
20
# Ignore (allow) packages without any tests
21
- set -o pipefail
22
21
go test ./... -coverprofile coverage.out
23
- set +o pipefail
24
22
go tool cover -html=coverage.out -o coverage.html
25
23
go tool cover -func coverage.out -o coverage.txt
26
24
tail -1 coverage.txt
Original file line number Diff line number Diff line change 7
7
)
8
8
9
9
var (
10
- commitVersion string = "v0.2.0 " // May be updated using build flags
11
- commitDate string = "1706026456 " // commitDate in Epoch seconds (may be overridden using build flags)
10
+ commitVersion string = "v0.2.1 " // May be updated using build flags
11
+ commitDate string = "1706176128 " // commitDate in Epoch seconds (may be overridden using build flags)
12
12
)
13
13
14
14
// GetVersion - get version and also commitHash and commitDate if inserted via Makefile
You can’t perform that action at this time.
0 commit comments