Version 0.13.0

This commit is contained in:
David Jennes
2018-09-25 03:18:14 +02:00
parent 2760843236
commit 42e415a9bf
4 changed files with 8 additions and 8 deletions

View File

@@ -1,6 +1,6 @@
# Stencil Changelog # Stencil Changelog
## Master ## 0.13.0
### Breaking ### Breaking

View File

@@ -1,6 +1,6 @@
{ {
"name": "Stencil", "name": "Stencil",
"version": "0.12.1", "version": "0.13.0",
"summary": "Stencil is a simple and powerful template language for Swift.", "summary": "Stencil is a simple and powerful template language for Swift.",
"homepage": "https://stencil.fuller.li", "homepage": "https://stencil.fuller.li",
"license": { "license": {
@@ -13,7 +13,7 @@
"social_media_url": "https://twitter.com/kylefuller", "social_media_url": "https://twitter.com/kylefuller",
"source": { "source": {
"git": "https://github.com/stencilproject/Stencil.git", "git": "https://github.com/stencilproject/Stencil.git",
"tag": "0.12.1" "tag": "0.13.0"
}, },
"source_files": [ "source_files": [
"Sources/*.swift" "Sources/*.swift"

View File

@@ -58,9 +58,9 @@ author = 'Kyle Fuller'
# built documents. # built documents.
# #
# The short X.Y version. # The short X.Y version.
version = '0.12.1' version = '0.13.0'
# The full version, including alpha/beta/rc tags. # 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 # The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages. # for a list of supported languages.

View File

@@ -14,7 +14,7 @@ dependencies inside ``Package.swift``.
let package = Package( let package = Package(
name: "MyApplication", name: "MyApplication",
dependencies: [ 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 .. code-block:: ruby
pod 'Stencil', '~> 0.8.0' pod 'Stencil', '~> 0.13.0'
Carthage Carthage
-------- --------
@@ -37,7 +37,7 @@ Carthage
.. code-block:: text .. 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: 2) Checkout your dependencies, generate the Stencil Xcode project, and then use Carthage to build Stencil: