Skip to content

Commit 00ef133

Browse files
committed
0.3.18
1 parent e192831 commit 00ef133

File tree

3 files changed

+10
-3
lines changed

3 files changed

+10
-3
lines changed

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
# MarkersExtractor Change Log
22

3+
## [0.3.18](https://github.com/TheAcharya/MarkersExtractor/releases/tag/0.3.18) (2025-09-12)
4+
5+
### Maintenance Update
6+
7+
- `ExportProfile`: Protocol is now implicitly `Sendable` to satisfy Swift 6.2 compiler

 / Xcode 26.0
8+
- 







Fixed unit tests build on Xcode 26.0
9+
310
## [0.3.17](https://github.com/TheAcharya/MarkersExtractor/releases/tag/0.3.17) (2025-07-31)
411

512
### New Features

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ sudo rm /usr/local/bin/markers-extractor
100100
### Compiled From Source
101101

102102
```shell
103-
VERSION=0.3.17 # replace this with the git tag of the version you need
103+
VERSION=0.3.18 # replace this with the git tag of the version you need
104104
git clone https://github.com/TheAcharya/MarkersExtractor.git
105105
cd MarkersExtractor
106106
git checkout "tags/$VERSION"
@@ -375,7 +375,7 @@ To use this package in a Swift Package Manager (SPM) package, add it as a depend
375375
let package = Package(
376376
name: "MyPackage",
377377
dependencies: [
378-
.package(url: "https://github.com/TheAcharya/MarkersExtractor.git", from: "0.3.16")
378+
.package(url: "https://github.com/TheAcharya/MarkersExtractor.git", from: "0.3.18")
379379
],
380380
targets: [
381381
.target(

Sources/MarkersExtractor/Version.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,4 @@
66

77
/// Static CLI version number stored in its own file to allow for easier access by automated
88
/// build tools.
9-
public let packageVersion = "0.3.17"
9+
public let packageVersion = "0.3.18"

0 commit comments

Comments
 (0)