From 20b9476e4b0c3d4bd80095d3ec9193af2d728596 Mon Sep 17 00:00:00 2001 From: Kyle Fuller Date: Sat, 18 Feb 2017 12:43:22 +0000 Subject: [PATCH] chore: Release 0.8.0 --- Stencil.podspec.json | 4 ++-- docs/installation.rst | 6 +++--- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/Stencil.podspec.json b/Stencil.podspec.json index 059e7ba..c5f0222 100644 --- a/Stencil.podspec.json +++ b/Stencil.podspec.json @@ -1,6 +1,6 @@ { "name": "Stencil", - "version": "0.7.1", + "version": "0.8.0", "summary": "Stencil is a simple and powerful template language for Swift.", "homepage": "https://stencil.fuller.li", "license": { @@ -13,7 +13,7 @@ "social_media_url": "https://twitter.com/kylefuller", "source": { "git": "https://github.com/kylef/Stencil.git", - "tag": "0.7.1" + "tag": "0.8.0" }, "source_files": [ "Sources/*.swift" diff --git a/docs/installation.rst b/docs/installation.rst index 0735a77..bb3afde 100644 --- a/docs/installation.rst +++ b/docs/installation.rst @@ -14,7 +14,7 @@ dependencies inside ``Package.swift``. let package = Package( name: "MyApplication", dependencies: [ - .Package(url: "https://github.com/kylef/Stencil.git", majorVersion: 0, minor: 7), + .Package(url: "https://github.com/kylef/Stencil.git", majorVersion: 0, minor: 8), ] ) @@ -26,7 +26,7 @@ If you're using CocoaPods, you can add Stencil to your ``Podfile`` and then run .. code-block:: ruby - pod 'Stencil' + pod 'Stencil', '~> 0.8.0' Carthage -------- @@ -37,7 +37,7 @@ Carthage .. code-block:: text - github "kylef/Stencil" ~> 0.7.0 + github "kylef/Stencil" ~> 0.8.0 2) Checkout your dependencies, generate the Stencil Xcode project, and then use Carthage to build Stencil: