Skip to content

Commit

Permalink
Version 1.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
tevelee committed Apr 3, 2018
1 parent 731056b commit 6aaa9a5
Show file tree
Hide file tree
Showing 6 changed files with 14 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.0.0
1.0.1
2 changes: 1 addition & 1 deletion Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ let package = Package(
targets: ["Tuxedo"])
],
dependencies: [
.package(url: "https://github.com/tevelee/Eval", from: "1.3.0")
.package(url: "https://github.com/tevelee/Eval", from: "1.3.1")
],
targets: [
.target(
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Tuxedo

[![Travis CI status](https://travis-ci.org/tevelee/Tuxedo.svg?branch=master)](https://travis-ci.org/tevelee/Tuxedo)
[![Framework version](https://img.shields.io/badge/Version-1.0.0-yellow.svg)]()
[![Framework version](https://img.shields.io/badge/Version-1.0.1-yellow.svg)]()
[![Swift version](https://img.shields.io/badge/Swift-4.0-orange.svg)]()
[![Code Test Coverage](https://codecov.io/gh/tevelee/Tuxedo/branch/master/graph/badge.svg)](https://codecov.io/gh/tevelee/Tuxedo)
[![Platforms](https://img.shields.io/badge/Platforms-iOS%20|%20macOS%20|%20Linux-blue.svg)]()
Expand Down
2 changes: 1 addition & 1 deletion Sources/Tuxedo/StandardLibrary_Functions.swift
Original file line number Diff line number Diff line change
Expand Up @@ -376,7 +376,7 @@ public extension StandardLibrary {
return value
}, Keyword("("), Variable<Any>("fallback"), Keyword(")")], options: .backwardMatch) { variables, _, _ in
guard let value = variables["lhs"], variables["rhs"] != nil else { return nil }
return isNilOrWrappedNil(value: value) ? variables["fallback"] : value
return isNilOrWrappedNil(value: value) ? variables["fallback"] as Any : value
}
}

Expand Down
4 changes: 2 additions & 2 deletions Tuxedo.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = "Tuxedo"
s.version = "1.0.0"
s.version = "1.0.1"
s.summary = "Tuxedo is a template language for Swift"
s.description = <<-DESC
Tuxedo is a template language for Swift.
Expand All @@ -19,5 +19,5 @@ DESC
s.watchos.deployment_target = "2.0"
s.tvos.deployment_target = "9.0"

s.dependency "Eval", "~> 1.3.0"
s.dependency "Eval", "~> 1.3.1"
end
8 changes: 8 additions & 0 deletions Tuxedo.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>IDEDidComputeMac32BitWarning</key>
<true/>
</dict>
</plist>

0 comments on commit 6aaa9a5

Please sign in to comment.