From b7c33c234b19c4c945d883db0c556e58371213ab Mon Sep 17 00:00:00 2001 From: David Jennes Date: Thu, 30 Aug 2018 12:56:34 +0200 Subject: [PATCH 1/2] Increase podspec version --- Podfile.lock | 4 ++-- Pods/Local Podspecs/StencilSwiftKit.podspec.json | 4 ++-- Pods/Manifest.lock | 4 ++-- Pods/Target Support Files/StencilSwiftKit/Info.plist | 2 +- StencilSwiftKit.podspec | 2 +- 5 files changed, 8 insertions(+), 8 deletions(-) diff --git a/Podfile.lock b/Podfile.lock index 8a97295c..af71a73d 100644 --- a/Podfile.lock +++ b/Podfile.lock @@ -2,7 +2,7 @@ PODS: - PathKit (0.9.1) - Stencil (0.12.1): - PathKit (~> 0.9.0) - - StencilSwiftKit (2.5.0): + - StencilSwiftKit (2.6.0): - Stencil (~> 0.12.1) - SwiftLint (0.27.0) @@ -23,7 +23,7 @@ EXTERNAL SOURCES: SPEC CHECKSUMS: PathKit: 7dcba9f0150afb67e0a520c49707a2cbc8e95937 Stencil: 8a08577b341a059420c444b8aa5733378a6a4384 - StencilSwiftKit: 83982c319fb7efd731dfd52a8a4b595604844e11 + StencilSwiftKit: e509ccb9680e00eb877d3d944c8c408ef233bf2f SwiftLint: 3207c1faa2240bf8973b191820a116113cd11073 PODFILE CHECKSUM: 0bd9ec310bace9d5b62e785ea1fb74547c15074d diff --git a/Pods/Local Podspecs/StencilSwiftKit.podspec.json b/Pods/Local Podspecs/StencilSwiftKit.podspec.json index 3a7dab19..482d74ed 100644 --- a/Pods/Local Podspecs/StencilSwiftKit.podspec.json +++ b/Pods/Local Podspecs/StencilSwiftKit.podspec.json @@ -1,6 +1,6 @@ { "name": "StencilSwiftKit", - "version": "2.5.0", + "version": "2.6.0", "summary": "Stencil additions dedicated for Swift code generation", "description": "This pod contains some additional nodes and filters for\n[Stencil](https://github.com/stencilproject/Stencil).\nThese additional nodes & filters are mainly dedicated\nfor writing Stencil templates generating *Swift* code.", "homepage": "https://github.com/SwiftGen/StencilSwiftKit", @@ -16,7 +16,7 @@ "cocoapods_version": ">= 1.4.0", "source": { "git": "https://github.com/SwiftGen/StencilSwiftKit.git", - "tag": "2.5.0" + "tag": "2.6.0" }, "source_files": "Sources/**/*.swift", "dependencies": { diff --git a/Pods/Manifest.lock b/Pods/Manifest.lock index 8a97295c..af71a73d 100644 --- a/Pods/Manifest.lock +++ b/Pods/Manifest.lock @@ -2,7 +2,7 @@ PODS: - PathKit (0.9.1) - Stencil (0.12.1): - PathKit (~> 0.9.0) - - StencilSwiftKit (2.5.0): + - StencilSwiftKit (2.6.0): - Stencil (~> 0.12.1) - SwiftLint (0.27.0) @@ -23,7 +23,7 @@ EXTERNAL SOURCES: SPEC CHECKSUMS: PathKit: 7dcba9f0150afb67e0a520c49707a2cbc8e95937 Stencil: 8a08577b341a059420c444b8aa5733378a6a4384 - StencilSwiftKit: 83982c319fb7efd731dfd52a8a4b595604844e11 + StencilSwiftKit: e509ccb9680e00eb877d3d944c8c408ef233bf2f SwiftLint: 3207c1faa2240bf8973b191820a116113cd11073 PODFILE CHECKSUM: 0bd9ec310bace9d5b62e785ea1fb74547c15074d diff --git a/Pods/Target Support Files/StencilSwiftKit/Info.plist b/Pods/Target Support Files/StencilSwiftKit/Info.plist index 3e850498..d4fb73c7 100644 --- a/Pods/Target Support Files/StencilSwiftKit/Info.plist +++ b/Pods/Target Support Files/StencilSwiftKit/Info.plist @@ -15,7 +15,7 @@ CFBundlePackageType FMWK CFBundleShortVersionString - 2.5.0 + 2.6.0 CFBundleSignature ???? CFBundleVersion diff --git a/StencilSwiftKit.podspec b/StencilSwiftKit.podspec index 833ea9cf..b0e66870 100644 --- a/StencilSwiftKit.podspec +++ b/StencilSwiftKit.podspec @@ -1,6 +1,6 @@ Pod::Spec.new do |s| s.name = 'StencilSwiftKit' - s.version = '2.5.0' + s.version = '2.6.0' s.summary = 'Stencil additions dedicated for Swift code generation' s.description = <<-DESC From d10dc3757a2e4b4bb7630a233c58cc7afdf26181 Mon Sep 17 00:00:00 2001 From: David Jennes Date: Thu, 30 Aug 2018 12:57:00 +0200 Subject: [PATCH 2/2] Tag changelog (and move non-breaking change to bug fix) --- CHANGELOG.md | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 0add3a39..30698272 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,7 +2,7 @@ --- -## Master +## 2.6.0 ### Bug fixes @@ -12,9 +12,6 @@ * Fixed compilation issue with Xcode 10 & Swift 4.2 by adding hints to help the compiler. [Olivier Halligon](https://github.com/AliSoftware) [#93](https://github.com/SwiftGen/StencilSwiftKit/pull/93) - -### Breaking Changes - * Migrated to PathKit for url filters. The dirname will return '.' for a filename without base directory. [Rahul Katariya](https://github.com/RahulKatariya) [Philip Jander](https://github.com/janderit)