Skip to content

Commit 275e099

Browse files
committed
0.3.10
1 parent 5bf50d0 commit 275e099

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.10](https://github.com/TheAcharya/MarkersExtractor/releases/tag/0.3.10) (2024-09-20)
4+
5+
### Improvements
6+
7+
- Codebase updates for better compatibility with Xcode 16/Swift 6
8+
- Added `Identifiable` conformance to all relevant exported types
9+
310
## [0.3.9](https://github.com/TheAcharya/MarkersExtractor/releases/tag/0.3.9) (2024-05-28)
411

512
### Bug Fixes

README.md

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

9898
```shell
99-
VERSION=0.3.9 # replace this with the git tag of the version you need
99+
VERSION=0.3.10 # replace this with the git tag of the version you need
100100
git clone https://github.com/TheAcharya/MarkersExtractor.git
101101
cd MarkersExtractor
102102
git checkout "tags/$VERSION"
@@ -357,7 +357,7 @@ To use this package in a Swift Package Manager (SPM) package, add it as a depend
357357
let package = Package(
358358
name: "MyPackage",
359359
dependencies: [
360-
.package(url: "https://github.com/TheAcharya/MarkersExtractor.git", from: "0.3.9")
360+
.package(url: "https://github.com/TheAcharya/MarkersExtractor.git", from: "0.3.10")
361361
],
362362
targets: [
363363
.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.9"
9+
public let packageVersion = "0.3.10"

0 commit comments

Comments
 (0)