From ee2b5ac404720057a90b1b4e5fe3c73fe628d2f1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Karl=20Sj=C3=B6strand?= Date: Wed, 9 May 2018 15:05:44 -0400 Subject: [PATCH] Prepare for relase 1.4.3 --- README.md | 4 ++-- build.sbt | 2 +- src/main/scala/se/nimsa/sbx/app/Slicebox.scala | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 694a7d12..f50a8aef 100644 --- a/README.md +++ b/README.md @@ -4,8 +4,8 @@ Service | Status | Description ------- | ------ | ----------- Bintray | [![Download](https://api.bintray.com/packages/slicebox/slicebox/installers/images/download.svg) ](https://bintray.com/slicebox/slicebox/installers/_latestVersion) | Latest Version on Bintray -Travis | [![Build Status](https://travis-ci.org/slicebox/slicebox.svg?branch=develop)](https://travis-ci.org/slicebox/slicebox.svg?branch=develop) | [Tests](https://travis-ci.org/slicebox/slicebox/) -Coveralls | [![Coverage Status](https://coveralls.io/repos/github/slicebox/slicebox/badge.svg?branch=develop)](https://coveralls.io/github/slicebox/slicebox?branch=develop) | Code coverage +Travis | [![Build Status](https://travis-ci.org/slicebox/slicebox.svg?branch=master)](https://travis-ci.org/slicebox/slicebox.svg?branch=master) | [Tests](https://travis-ci.org/slicebox/slicebox/) +Coveralls | [![Coverage Status](https://coveralls.io/repos/github/slicebox/slicebox/badge.svg?branch=master)](https://coveralls.io/github/slicebox/slicebox?branch=master) | Code coverage Gitter | [![Join the chat at https://gitter.im/slicebox/slicebox](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/slicebox/slicebox?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge) | Chatroom Documentation | - | [Wiki](https://github.com/slicebox/slicebox/wiki) API Documentation | - | [REST API](http://slicebox.github.io/slicebox-api) diff --git a/build.sbt b/build.sbt index d82efbb5..32e8f53d 100644 --- a/build.sbt +++ b/build.sbt @@ -1,5 +1,5 @@ name := "slicebox" -version := "1.5-SNAPSHOT" +version := "1.4.3" organization := "se.nimsa" scalaVersion := "2.12.5" scalacOptions := Seq("-encoding", "UTF-8", "-Xlint", "-deprecation", "-unchecked", "-feature", "-target:jvm-1.8") diff --git a/src/main/scala/se/nimsa/sbx/app/Slicebox.scala b/src/main/scala/se/nimsa/sbx/app/Slicebox.scala index 7704801b..4d03bf9c 100644 --- a/src/main/scala/se/nimsa/sbx/app/Slicebox.scala +++ b/src/main/scala/se/nimsa/sbx/app/Slicebox.scala @@ -52,7 +52,7 @@ import scala.util.{Failure, Success} trait SliceboxBase extends SliceboxRoutes with DicomStreamOps with JsonFormats with PlayJsonSupport { - val systemInformation: SystemInformation = SystemInformation("1.5-SNAPSHOT") + val systemInformation: SystemInformation = SystemInformation("1.4.3") val appConfig: Config = ConfigFactory.load() val sliceboxConfig = appConfig.getConfig("slicebox")