Bump version to 0.15.0

This commit is contained in:
David Jennes
2022-07-29 18:21:41 +02:00
parent 2ddc039129
commit c690f3e613
4 changed files with 8 additions and 8 deletions

View File

@@ -1,4 +1,4 @@
## Master
## 0.15.0
### Breaking

View File

@@ -1,6 +1,6 @@
{
"name": "Stencil",
"version": "0.14.2",
"version": "0.15.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.14.2"
"tag": "0.15.0"
},
"source_files": [
"Sources/Stencil/*.swift"

View File

@@ -58,9 +58,9 @@ author = 'Kyle Fuller'
# built documents.
#
# The short X.Y version.
version = '0.14.2'
version = '0.15.0'
# The full version, including alpha/beta/rc tags.
release = '0.14.2'
release = '0.15.0'
# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.

View File

@@ -14,7 +14,7 @@ dependencies inside ``Package.swift``.
let package = Package(
name: "MyApplication",
dependencies: [
.package(url: "https://github.com/stencilproject/Stencil.git", from: "0.14.2"),
.package(url: "https://github.com/stencilproject/Stencil.git", from: "0.15.0"),
]
)
@@ -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.14.2'
pod 'Stencil', '~> 0.15.0'
Carthage
--------
@@ -37,7 +37,7 @@ Carthage
.. code-block:: text
github "stencilproject/Stencil" ~> 0.14.2
github "stencilproject/Stencil" ~> 0.15.0
2) Checkout your dependencies, generate the Stencil Xcode project, and then use Carthage to build Stencil: