Skip to content

Commit

Permalink
Version 1.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
tevelee committed Jan 28, 2018
1 parent b67e4f0 commit 84a9dea
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.1.0
1.2.0
2 changes: 1 addition & 1 deletion Eval.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ Pod::Spec.new do |s|
#

s.name = "Eval"
s.version = "1.1.0"
s.version = "1.2.0"
s.summary = "Eval is a lightweight interpreter framework written in Swift, evaluating expressions at runtime"

# This description is used to generate tags and improve search results.
Expand Down
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# { Eval }

[![Travis CI status](https://travis-ci.org/tevelee/Eval.svg?branch=master)](https://travis-ci.org/tevelee/Eval)
[![Framework version](https://img.shields.io/badge/Version-1.1.0-yellow.svg)]()
[![Framework version](https://img.shields.io/badge/Version-1.2.0-yellow.svg)]()
[![Swift version](https://img.shields.io/badge/Swift-4.0-orange.svg)]()
[![Code Documentation Coverage](https://tevelee.github.io/Eval/badge.svg)](https://tevelee.github.io/Eval)
[![Code Test Coverage](https://codecov.io/gh/tevelee/Eval/branch/master/graph/badge.svg)](https://codecov.io/gh/tevelee/Eval)
Expand Down Expand Up @@ -198,7 +198,7 @@ You have a few options to include the library in your app.
Just add the following line to your dependencies:

```swift
.package(url: "https://github.com/tevelee/Eval.git", from: "1.1.0"),
.package(url: "https://github.com/tevelee/Eval.git", from: "1.2.0"),
```

And reference it by name in your targets:
Expand All @@ -220,7 +220,7 @@ swift package resolve
Just add the following line to your `Podfile`:

```ruby
pod 'Eval', '~> 1.1'
pod 'Eval', '~> 1.2'
```
And install the new dependency:

Expand All @@ -233,7 +233,7 @@ pod install
Just add the following line to your `Cartfile`:

```ruby
github "tevelee/Eval" >= 1.1.0
github "tevelee/Eval" >= 1.2.0
```
And install the new dependency:

Expand Down

0 comments on commit 84a9dea

Please sign in to comment.