Skip to content

Commit

Permalink
0.3.11
Browse files Browse the repository at this point in the history
  • Loading branch information
orchetect committed Sep 26, 2024
1 parent 167cea4 commit ac126bd
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 4 deletions.
8 changes: 7 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,16 @@
# MarkersExtractor Change Log

## [0.3.11](https://github.com/TheAcharya/MarkersExtractor/releases/tag/0.3.11) (2024-09-26)

### Maintenance Update

- Codebase updates for better compatibility with Xcode 16/Swift 6 and changes in dependency API (#110)

## [0.3.10](https://github.com/TheAcharya/MarkersExtractor/releases/tag/0.3.10) (2024-09-20)

### Improvements

- Codebase updates for better compatibility with Xcode 16/Swift 6
- Codebase updates for better compatibility with Xcode 16/Swift 6 (#110)
- Added `Identifiable` conformance to all relevant exported types

## [0.3.9](https://github.com/TheAcharya/MarkersExtractor/releases/tag/0.3.9) (2024-05-28)
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ sudo rm /usr/local/bin/markers-extractor
### Compiled From Source

```shell
VERSION=0.3.10 # replace this with the git tag of the version you need
VERSION=0.3.11 # 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"
Expand Down Expand Up @@ -357,7 +357,7 @@ To use this package in a Swift Package Manager (SPM) package, add it as a depend
let package = Package(
name: "MyPackage",
dependencies: [
.package(url: "https://github.com/TheAcharya/MarkersExtractor.git", from: "0.3.10")
.package(url: "https://github.com/TheAcharya/MarkersExtractor.git", from: "0.3.11")
],
targets: [
.target(
Expand Down
2 changes: 1 addition & 1 deletion Sources/MarkersExtractor/Version.swift
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,4 @@

/// Static CLI version number stored in its own file to allow for easier access by automated
/// build tools.
public let packageVersion = "0.3.10"
public let packageVersion = "0.3.11"

0 comments on commit ac126bd

Please sign in to comment.