chore: release 0.15.2
Some checks failed
Danger / Danger Check (push) Has been cancelled
Lint Cocoapods / Pod Lint (push) Has been cancelled
SwiftLint / SwiftLint (push) Has been cancelled
Test SPM / Test SPM Linux (push) Has been cancelled
Test SPM / Test SPM macOS (push) Has been cancelled
Publish on Tag / GitHub Release (push) Has been cancelled
Some checks failed
Danger / Danger Check (push) Has been cancelled
Lint Cocoapods / Pod Lint (push) Has been cancelled
SwiftLint / SwiftLint (push) Has been cancelled
Test SPM / Test SPM Linux (push) Has been cancelled
Test SPM / Test SPM macOS (push) Has been cancelled
Publish on Tag / GitHub Release (push) Has been cancelled
This commit is contained in:
@@ -6,6 +6,8 @@
|
|||||||
[##342](https://github.com/stencilproject/Stencil/pull/342)
|
[##342](https://github.com/stencilproject/Stencil/pull/342)
|
||||||
[@art-divin](https://github.com/art-divin)
|
[@art-divin](https://github.com/art-divin)
|
||||||
|
|
||||||
|
- Allow tokens to be escaped by a backslash, i.e. `\{{ something }}` would render to `{{ something }}`.
|
||||||
|
|
||||||
## 0.15.1
|
## 0.15.1
|
||||||
|
|
||||||
### Bug Fixes
|
### Bug Fixes
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "Stencil",
|
"name": "Stencil",
|
||||||
"version": "0.15.1",
|
"version": "0.15.2",
|
||||||
"summary": "Stencil is a simple and powerful template language for Swift.",
|
"summary": "Stencil is a simple and powerful template language for Swift.",
|
||||||
"license": {
|
"license": {
|
||||||
"type": "BSD",
|
"type": "BSD",
|
||||||
@@ -12,7 +12,7 @@
|
|||||||
"social_media_url": "https://twitter.com/trbernstein",
|
"social_media_url": "https://twitter.com/trbernstein",
|
||||||
"source": {
|
"source": {
|
||||||
"git": "https://github.com/swiftstencil/swiftpm-stencil.git",
|
"git": "https://github.com/swiftstencil/swiftpm-stencil.git",
|
||||||
"tag": "0.15.1"
|
"tag": "0.15.2"
|
||||||
},
|
},
|
||||||
"source_files": [
|
"source_files": [
|
||||||
"Sources/Stencil/*.swift"
|
"Sources/Stencil/*.swift"
|
||||||
|
|||||||
@@ -58,9 +58,9 @@ author = 'Kyle Fuller'
|
|||||||
# built documents.
|
# built documents.
|
||||||
#
|
#
|
||||||
# The short X.Y version.
|
# The short X.Y version.
|
||||||
version = '0.15.1'
|
version = '0.15.2'
|
||||||
# The full version, including alpha/beta/rc tags.
|
# The full version, including alpha/beta/rc tags.
|
||||||
release = '0.15.1'
|
release = '0.15.2'
|
||||||
|
|
||||||
# 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.
|
||||||
|
|||||||
@@ -14,6 +14,6 @@ dependencies inside ``Package.swift``.
|
|||||||
let package = Package(
|
let package = Package(
|
||||||
name: "MyApplication",
|
name: "MyApplication",
|
||||||
dependencies: [
|
dependencies: [
|
||||||
.package(url: "https://github.com/swiftstencil/swiftpm-stencil.git", from: "0.15.1"),
|
.package(url: "https://github.com/swiftstencil/swiftpm-stencil.git", from: "0.15.2"),
|
||||||
]
|
]
|
||||||
)
|
)
|
||||||
|
|||||||
Reference in New Issue
Block a user