From b57c687710efcf4482cb94376945e35c05195d89 Mon Sep 17 00:00:00 2001 From: Fumito Ito Date: Mon, 28 Oct 2024 12:27:27 +0900 Subject: [PATCH 1/3] bump to v 6.0.0 --- GRMustache.swift.podspec | 2 +- README.md | 7 ++++--- 2 files changed, 5 insertions(+), 4 deletions(-) diff --git a/GRMustache.swift.podspec b/GRMustache.swift.podspec index 0a37c2f..6af53fc 100644 --- a/GRMustache.swift.podspec +++ b/GRMustache.swift.podspec @@ -1,6 +1,6 @@ Pod::Spec.new do |s| s.name = 'GRMustache.swift' - s.version = '5.0.1' + s.version = '6.0.0' s.license = { :type => 'MIT', :file => 'LICENSE' } s.summary = 'Flexible Mustache templates for Swift.' s.homepage = 'https://github.com/groue/GRMustache.swift' diff --git a/README.md b/README.md index 7d312b5..e1d72f5 100644 --- a/README.md +++ b/README.md @@ -11,7 +11,8 @@ GRMustache.swift [![Swift](https://img.shields.io/badge/swift-6-orange.svg?style - Swift 2.3: use the [version 1.1.0](https://github.com/groue/GRMustache.swift/tree/1.1.0) - Swift 4.0: use the [version 3.0.0](https://github.com/groue/GRMustache.swift/tree/3.0.0) - Swift 4.2: use the [version 3.1.0](https://github.com/groue/GRMustache.swift/tree/3.1.0) -- Swift 5.0: use the [version 4.0.0](https://github.com/groue/GRMustache.swift/tree/4.0.0) or later +- Swift 5.0: use the [version 4.0.0](https://github.com/groue/GRMustache.swift/tree/4.0.0) +- Swift 5.0: use the [version 6.0.0](https://github.com/groue/GRMustache.swift/tree/6.0.0) or later Follow [@groue](http://twitter.com/groue) on Twitter for release announcements and usage tips. @@ -118,7 +119,7 @@ To use GRMustache.swift with the Swift Package Manager, add https://github.com/g ```swift dependencies: [ - .package(url: "https://github.com/groue/GRMustache.swift", from: "5.0.1") + .package(url: "https://github.com/groue/GRMustache.swift", from: "6.0.0") ] ``` @@ -140,7 +141,7 @@ targets: [ ```sh cd [GRMustache.swift directory] - git checkout 2.0.0 + git checkout 6.0.0 ```` 3. Embed the `Mustache.xcodeproj` project in your own project. From 9335be8b0ac5734bd1f4703bc482df910f92f649 Mon Sep 17 00:00:00 2001 From: Fumito Ito Date: Mon, 28 Oct 2024 12:29:16 +0900 Subject: [PATCH 2/3] lint for cocoapods --- .github/workflows/check-pr.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/check-pr.yml b/.github/workflows/check-pr.yml index 4af0e32..96c72ae 100644 --- a/.github/workflows/check-pr.yml +++ b/.github/workflows/check-pr.yml @@ -15,4 +15,7 @@ jobs: run: swift build - name: Test - run: swift test \ No newline at end of file + run: swift test + + - name: Lint with cocoapods + run: pod lib lint \ No newline at end of file From 79a5918838dcb345e3742d59106de3ba8694a6eb Mon Sep 17 00:00:00 2001 From: Fumito Ito Date: Mon, 28 Oct 2024 12:30:38 +0900 Subject: [PATCH 3/3] allow warnings --- .github/workflows/check-pr.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/check-pr.yml b/.github/workflows/check-pr.yml index 96c72ae..0ce5e97 100644 --- a/.github/workflows/check-pr.yml +++ b/.github/workflows/check-pr.yml @@ -18,4 +18,4 @@ jobs: run: swift test - name: Lint with cocoapods - run: pod lib lint \ No newline at end of file + run: pod lib lint --allow-warnings \ No newline at end of file