From 6d9e521ad6527aaa035c634b5b34ad266b88160d Mon Sep 17 00:00:00 2001 From: Steffan Andrews Date: Wed, 22 Nov 2023 20:02:47 -0800 Subject: [PATCH] 0.2.5 --- CHANGELOG.md | 2 +- Package.swift | 2 +- README.md | 6 +++--- Sources/markers-extractor-cli/Version.swift | 2 +- 4 files changed, 6 insertions(+), 6 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 8b1621b..7f1b085 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,6 @@ # MarkersExtractor Change Log -## 0.2.5 +## 0.2.5(https://github.com/TheAcharya/MarkersExtractor/releases/tag/0.2.5) (2023-11-22) ### Changes diff --git a/Package.swift b/Package.swift index f887e0e..105010c 100644 --- a/Package.swift +++ b/Package.swift @@ -25,7 +25,7 @@ let package = Package( .package(url: "https://github.com/apple/swift-collections.git", from: "1.0.0"), .package(url: "https://github.com/dehesa/CodableCSV.git", from: "0.6.7"), .package(url: "https://github.com/orchetect/TimecodeKit.git", from: "2.0.6"), - .package(url: "https://github.com/orchetect/DAWFileKit.git", from: "0.3.0") + .package(url: "https://github.com/orchetect/DAWFileKit.git", branch: "main") // from: "0.3.0") ], targets: [ .target( diff --git a/README.md b/README.md index 255f3c3..71ba9d7 100644 --- a/README.md +++ b/README.md @@ -55,12 +55,12 @@ ### Pre-compiled Binary (Recommended) -Download the latest release of the CLI universal binary [here](https://github.com/TheAcharya/MarkersExtractor/releases/download/0.2.4/markers-extractor-cli-0.2.4.zip). +Download the latest release of the CLI universal binary [here](https://github.com/TheAcharya/MarkersExtractor/releases/download/0.2.5/markers-extractor-cli-0.2.5.zip). ### From Source ```shell -VERSION=0.2.4 # replace this with the git tag of the version you need +VERSION=0.2.5 # replace this with the git tag of the version you need git clone https://github.com/TheAcharya/MarkersExtractor.git cd MarkersExtractor git checkout "tags/$VERSION" @@ -111,7 +111,7 @@ OPTIONS: --exclude-exclusive-roles Exclude markers that have specified role type but only if the opposite role type is absent. - --label + --label Label to overlay on thumb images. This argument can be supplied more than once to apply multiple labels. --label-copyright diff --git a/Sources/markers-extractor-cli/Version.swift b/Sources/markers-extractor-cli/Version.swift index cc6a06e..e72b4bc 100644 --- a/Sources/markers-extractor-cli/Version.swift +++ b/Sources/markers-extractor-cli/Version.swift @@ -6,4 +6,4 @@ /// Static CLI version number stored in its own file to allow for easier modification by automated /// build tools. -let cliVersion = "0.2.4" +let cliVersion = "0.2.5"