Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/main' into 4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
rechsteiner committed May 24, 2024
2 parents 9990798 + 6e955f1 commit a08f60c
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .swift-version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
5.9
5.10
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@

`Parchment` adheres to [Semantic Versioning](http://semver.org/).

## [3.4.0](https://github.com/rechsteiner/Parchment/compare/v3.3.0...v3.4.0) - 2024-04-14

- Update Swift version to 5.10 #705

## [3.3.0](https://github.com/rechsteiner/Parchment/compare/v3.2.1...v3.3.0) - 2024-02-17

- Set minimum deployment target to iOS 12 #699
Expand Down
2 changes: 1 addition & 1 deletion Package.swift
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// swift-tools-version:5.9
// swift-tools-version:5.10
import PackageDescription

let package = Package(
Expand Down
6 changes: 3 additions & 3 deletions Parchment.podspec.json
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
{
"name": "Parchment",
"version": "3.3.0",
"version": "3.4.0",
"license": "MIT",
"summary": "A flexible paging menu controller with support for infinite data sources.",
"description": "Parchment allows you to page between view controllers while showing menu items that scrolls along with the content. It’s build to be very customizable, it’s well-tested and written fully in Swift.",
"homepage": "https://github.com/rechsteiner/Parchment",
"authors": "Martin Rechsteiner",
"source": {
"git": "https://github.com/rechsteiner/Parchment.git",
"tag": "v3.3.0"
"tag": "v3.4.0"
},
"swift_version": "5.9",
"swift_version": "5.10",
"platforms": {
"ios": "12.0"
},
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -620,23 +620,23 @@ Parchment will be compatible with the lastest public release of Swift.
Parchment is available through [CocoaPods](https://cocoapods.org). To install it, add the following to your `Podfile`:

```
pod 'Parchment', '~> 3.2'
pod 'Parchment', '~> 3.4'
```

### Swift Package Manager

Parchment is available through [Swift Package Manager](https://swift.org/package-manager/). Add Parchment as a dependency to your `Package.swift`:

```Swift
.package(url: "https://github.com/rechsteiner/Parchment", from: "3.2.0")
.package(url: "https://github.com/rechsteiner/Parchment", from: "3.4.0")
```

### Carthage

Parchment also supports [Carthage](https://github.com/Carthage/Carthage). To install it, add the following to your `Cartfile`:

```
github "rechsteiner/Parchment" ~> 3.2
github "rechsteiner/Parchment" ~> 3.4
```

See [this guide](https://github.com/Carthage/Carthage#adding-frameworks-to-an-application) for more details on using Carthage.
Expand Down

0 comments on commit a08f60c

Please sign in to comment.