diff --git a/CHANGELOG.md b/CHANGELOG.md index cb0e1cc..ff5407f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,6 @@ # Stencil Changelog -## Master +## 0.13.0 ### Breaking diff --git a/Stencil.podspec.json b/Stencil.podspec.json index d9d7c70..54ecd20 100644 --- a/Stencil.podspec.json +++ b/Stencil.podspec.json @@ -1,6 +1,6 @@ { "name": "Stencil", - "version": "0.12.1", + "version": "0.13.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/stencilproject/Stencil.git", - "tag": "0.12.1" + "tag": "0.13.0" }, "source_files": [ "Sources/*.swift" diff --git a/docs/conf.py b/docs/conf.py index 4d69c8d..bf3e798 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -58,9 +58,9 @@ author = 'Kyle Fuller' # built documents. # # The short X.Y version. -version = '0.12.1' +version = '0.13.0' # The full version, including alpha/beta/rc tags. -release = '0.12.1' +release = '0.13.0' # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. diff --git a/docs/installation.rst b/docs/installation.rst index f3a58a5..1457752 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/stencilproject/Stencil.git", majorVersion: 0, minor: 12), + .Package(url: "https://github.com/stencilproject/Stencil.git", majorVersion: 0, minor: 13), ] ) @@ -26,7 +26,7 @@ If you're using CocoaPods, you can add Stencil to your ``Podfile`` and then run .. code-block:: ruby - pod 'Stencil', '~> 0.8.0' + pod 'Stencil', '~> 0.13.0' Carthage -------- @@ -37,7 +37,7 @@ Carthage .. code-block:: text - github "stencilproject/Stencil" ~> 0.12.1 + github "stencilproject/Stencil" ~> 0.13.0 2) Checkout your dependencies, generate the Stencil Xcode project, and then use Carthage to build Stencil: