Skip to content

Commit

Permalink
Merge pull request #19 from NthPortal/release
Browse files Browse the repository at this point in the history
Release 1.0.0
  • Loading branch information
NthPortal committed Jan 18, 2017
2 parents 6ab9093 + 045c615 commit 185426c
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 1 deletion.
16 changes: 16 additions & 0 deletions README.md
Expand Up @@ -3,3 +3,19 @@ A framework for creating shells/CLIs for an application

[![Build Status](https://travis-ci.org/NthPortal/app-shell.svg?branch=master)](https://travis-ci.org/NthPortal/app-shell)
[![Coverage Status](https://coveralls.io/repos/github/NthPortal/app-shell/badge.svg?branch=master)](https://coveralls.io/github/NthPortal/app-shell?branch=master)

## Add as a Dependency

### SBT
```
"com.nthportal" %% "app-shell" % "1.0.0"
```

### Maven
```
<dependency>
<groupId>com.nthportal</groupId>
<artifactId>app-shell_2.12</artifactId>
<version>1.0.0</version>
</dependency>
```
2 changes: 1 addition & 1 deletion build.sbt
Expand Up @@ -3,7 +3,7 @@ name := "app-shell"
description := "A framework for creating shells/CLIs for an application."

val rawVersion = "1.0.0"
isSnapshot := true
isSnapshot := false
version := rawVersion + {if (isSnapshot.value) "-SNAPSHOT" else ""}

scalaVersion := "2.12.1"
Expand Down

0 comments on commit 185426c

Please sign in to comment.