Skip to content

Commit

Permalink
bump version to 0.1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
edadma committed Apr 24, 2018
1 parent 5f7f724 commit 18a9637
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ liquescent
[![Build Status](https://www.travis-ci.org/edadma/liquescent.svg?branch=master)](https://www.travis-ci.org/edadma/liquescent)
[![Coverage Status](https://coveralls.io/repos/github/edadma/liquescent/badge.svg?branch=master)](https://coveralls.io/github/edadma/liquescent?branch=master)
[![License](https://img.shields.io/badge/license-ISC-blue.svg)](https://opensource.org/licenses/ISC)
[![Version](https://img.shields.io/badge/latest_release-v0.1-orange.svg)](https://github.com/edadma/liquescent/releases/tag/v0.1)
[![Version](https://img.shields.io/badge/latest_release-v0.1.1-orange.svg)](https://github.com/edadma/liquescent/releases/tag/v0.1.1)

*liquescent* is an implementation of the [Liquid](https://shopify.github.io/liquid/) templating language for the [Scala](http://scala-lang.org) programming language.

Expand Down Expand Up @@ -45,11 +45,11 @@ This program prints
<ol><li>stupid</li><li>stupider</li><li>stupidest</li></ol>


### Command Line
### Executable

This next example shows how to use *liquescent* as an executable on the command line.

echo "{{ v | join: \", \" }}" | java -jar liquescent-0.1.jar -j "{v: [\"one\", \"two\", \"three\"]}" --
echo "{{ v | join: \", \" }}" | java -jar liquescent-0.1.1.jar -j "{v: [\"one\", \"two\", \"three\"]}" --

The above command prints

Expand All @@ -69,14 +69,14 @@ Use the following definition to use *liquescent* in your Maven project:
<dependency>
<groupId>xyz.hyperreal</groupId>
<artifactId>liquescent</artifactId>
<version>0.1</version>
<version>0.1.1</version>
</dependency>

Add the following to your `build.sbt` file to use *liquescent* in your SBT project:

resolvers += "Hyperreal Repository" at "https://dl.bintray.com/edadma/maven"

libraryDependencies += "xyz.hyperreal" %% "liquescent" % "0.1"
libraryDependencies += "xyz.hyperreal" %% "liquescent" % "0.1.1"


Building
Expand Down
2 changes: 1 addition & 1 deletion build.sbt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name := "liquescent"

version := "0.1"
version := "0.1.1"

scalaVersion := "2.12.5"

Expand Down
4 changes: 2 additions & 2 deletions src/main/scala/Main.scala
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,9 @@ object Main extends App {

def usage {
"""
|liquescent v0.1
|liquescent v0.1.1
|
|Usage: java -jar liquescent-0.1.jar <options> <liquid template>
|Usage: java -jar liquescent-0.1.1.jar <options> <liquid template>
|
|Options: --help display this help and exit
| -s <name> <string> assign <string> to variable <name>
Expand Down

0 comments on commit 18a9637

Please sign in to comment.