Skip to content

Commit

Permalink
Merge branch 'release/1.19.8'
Browse files Browse the repository at this point in the history
  • Loading branch information
nwtgck committed Mar 14, 2019
2 parents dce7083 + f576fa4 commit 74de5b3
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 7 deletions.
8 changes: 7 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,11 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)

## [Unreleased]

## [1.19.8] - 2019-03-14
### Changed
- Update h2 database to 1.4.199
- Update dependencies

## [1.19.7] - 2019-02-23
### Changed
- Update h2 database to 1.4.198
Expand Down Expand Up @@ -177,7 +182,8 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
- Adapt [`sbt-native-packager`](https://github.com/sbt/sbt-native-packager) for [Heroku](https://heroku.com/)


[Unreleased]: https://github.com/nwtgck/trans-server-akka/compare/v1.19.7...HEAD
[Unreleased]: https://github.com/nwtgck/trans-server-akka/compare/v1.19.8...HEAD
[1.19.8]: https://github.com/nwtgck/trans-server-akka/compare/v1.19.7...v1.19.8
[1.19.7]: https://github.com/nwtgck/trans-server-akka/compare/v1.19.6...v1.19.7
[1.19.6]: https://github.com/nwtgck/trans-server-akka/compare/v1.19.5...v1.19.6
[1.19.5]: https://github.com/nwtgck/trans-server-akka/compare/v1.19.4...v1.19.5
Expand Down
8 changes: 4 additions & 4 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import sbtassembly.AssemblyPlugin.autoImport.assemblyJarName

name := "trans-server-akka"

version := "1.19.7"
version := "1.19.8"

scalaVersion := "2.11.12"

Expand Down Expand Up @@ -34,13 +34,13 @@ lazy val root = (project in file(".")).

// Slick
"com.typesafe.slick" %% "slick" % "3.1.1",
"org.slf4j" % "slf4j-nop" % "1.7.25",
"com.h2database" % "h2" % "1.4.198",
"org.slf4j" % "slf4j-nop" % "1.7.26",
"com.h2database" % "h2" % "1.4.199",

// scopt
"com.github.scopt" %% "scopt" % "3.6.0",

// ScalaTest
"org.scalatest" %% "scalatest" % "3.0.5" % Test
"org.scalatest" %% "scalatest" % "3.0.6" % Test
)
)
4 changes: 2 additions & 2 deletions project/plugins.sbt
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
logLevel := Level.Warn

addSbtPlugin("com.typesafe.sbt" % "sbt-native-packager" % "1.3.15")
addSbtPlugin("com.typesafe.sbt" % "sbt-native-packager" % "1.3.18")

// To get version in build.sbt
addSbtPlugin("com.eed3si9n" % "sbt-buildinfo" % "0.7.0")
addSbtPlugin("com.eed3si9n" % "sbt-buildinfo" % "0.9.0")

// For coverage
addSbtPlugin("org.scoverage" % "sbt-scoverage" % "1.5.1")
Expand Down

0 comments on commit 74de5b3

Please sign in to comment.