Skip to content

Commit

Permalink
Version 1.3.1
Browse files Browse the repository at this point in the history
  • Loading branch information
tevelee committed Apr 3, 2018
1 parent 6260997 commit f184635
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.3.0
1.3.1
2 changes: 1 addition & 1 deletion Eval.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = "Eval"
s.version = "1.3.0"
s.version = "1.3.1"
s.summary = "Eval is a lightweight interpreter framework written in Swift, evaluating expressions at runtime"
s.description = <<-DESC
Eval is a lightweight interpreter framework written in Swift, for 📱iOS, 🖥 macOS, and 🐧Linux platforms.
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.3.0-yellow.svg)]()
[![Framework version](https://img.shields.io/badge/Version-1.3.1-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.3.0"),
.package(url: "https://github.com/tevelee/Eval.git", from: "1.3.1"),
```

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.3.0'
pod 'Eval', '~> 1.3.1'
```
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.3.0
github "tevelee/Eval" >= 1.3.1
```
And install the new dependency:

Expand Down

0 comments on commit f184635

Please sign in to comment.