Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 12 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,18 @@ All notable changes to this project will be documented in this file.

This project adheres to [Semantic Versioning](https://semver.org).

## πŸš€ [Version 0.2.1](https://github.com/fetch-rewards/swift-locking/releases/tag/0.2.1) - October 27, 2025 ([Full Changelog](https://github.com/fetch-rewards/swift-locking/compare/0.2.0...0.2.1))

### πŸ“ Documentation

- Update changelog headers ([#41](https://github.com/fetch-rewards/swift-locking/pull/41))

### πŸ“¦ Dependencies

- Upgrade `swift-syntax` to `602.0.0` ([#42](https://github.com/fetch-rewards/swift-locking/pull/42))
- Upgrade `SwiftSyntaxSugar` to `0.1.2` ([#42](https://github.com/fetch-rewards/swift-locking/pull/42))


## πŸš€ [Version 0.2.0](https://github.com/fetch-rewards/swift-locking/releases/tag/0.2.0) - June 25, 2025 ([Full Changelog](https://github.com/fetch-rewards/swift-locking/compare/0.1.0...0.2.0))

### 🚨 <a name="breaking-changes-0.2.0"></a>Breaking Changes
Expand Down
4 changes: 2 additions & 2 deletions Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -25,11 +25,11 @@ let package = Package(
dependencies: [
.package(
url: "https://github.com/swiftlang/swift-syntax.git",
exact: "600.0.0" // Must match SwiftSyntaxSugar's swift-syntax version
from: "602.0.0" // Keep aligned with SwiftSyntaxSugar's swift-syntax version
),
.package(
url: "https://github.com/fetch-rewards/SwiftSyntaxSugar.git",
exact: "0.1.1"
exact: "0.1.2"
),
],
targets: [
Expand Down
Loading