Skip to content

Commit

Permalink
Merge pull request #11 from fsanaulla/issue-8
Browse files Browse the repository at this point in the history
[ALL][ISSUE-8]: support for 2.13
  • Loading branch information
fsanaulla authored Jul 24, 2019
2 parents cf89d79 + 39ff219 commit 1e55707
Show file tree
Hide file tree
Showing 7 changed files with 18 additions and 6 deletions.
7 changes: 7 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ sudo: required
scala:
- 2.11.8
- 2.12.8
- 2.13.0
jdk:
- oraclejdk8
script: "./scripts/test.sh"
Expand All @@ -28,6 +29,10 @@ jobs:
script: "./scripts/publish.sh $TRAVIS_SCALA_VERSION"
name: Deploying scala 2.12.8 artifacts
scala: 2.12.8
- stage: deploy_2.13
script: "./scripts/publish.sh $TRAVIS_SCALA_VERSION"
name: Deploying scala 2.13.0 artifacts
scala: 2.12.8
- stage: release
script: chmod 777 scripts/release.sh && ./scripts/release.sh
scala: 2.12.8
Expand All @@ -37,5 +42,7 @@ stages:
if: branch = master AND type != pull_request
- name: deploy_2.12
if: branch = master AND type != pull_request
- name: deploy_2.13
if: branch = master AND type != pull_request
- name: release
if: branch = master AND type != pull_request
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Scala Embedded InfluxDB
# scala-embedinflux
[![Build Status](https://travis-ci.org/fsanaulla/scala-embedinflux.svg?branch=master)](https://travis-ci.org/fsanaulla/scala-embedinflux)
[![Codacy Badge](https://api.codacy.com/project/badge/Grade/e9932125a5d2487f901e3170a70f4904)](https://www.codacy.com/app/fsanaulla/scala-embedinflux?utm_source=github.com&utm_medium=referral&utm_content=fsanaulla/scala-embedinflux&utm_campaign=Badge_Grade)
[![Maven Central](https://maven-badges.herokuapp.com/maven-central/com.github.fsanaulla/core-testing_2.11/badge.svg)](https://maven-badges.herokuapp.com/maven-central/com.github.fsanaulla/core-testing_2.11)
Expand Down
5 changes: 5 additions & 0 deletions changelog/0.2.1.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
Including issues:
- fsanaulla/scala-embedinflux#8 support for 2.13 scala

Contributors:
- @fsanaulla
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,6 @@ trait EmbeddedInfluxDB extends BeforeAfterAll { self: SpecificationLike with Inf
influx.cleanup()

// https://github.com/APISENSE/embed-influxDB/issues/19
Thread.sleep(10000)
Thread.sleep(1000)
}
}
4 changes: 2 additions & 2 deletions project/Settings.scala
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@ object Settings extends LibraryManagementSyntax {
}

lazy val common = List(
scalaVersion := "2.12.8",
crossScalaVersions := Seq("2.11.8", scalaVersion.value),
scalaVersion := "2.13.0",
crossScalaVersions := Seq("2.11.8", "2.12.8", scalaVersion.value),
organization := Owner.organisation,
homepage := Some(url("https://github.com/fsanaulla/scala-embedinflux")),
licenses += "Apache-2.0" -> url("https://opensource.org/licenses/Apache-2.0"),
Expand Down
2 changes: 1 addition & 1 deletion project/build.properties
Original file line number Diff line number Diff line change
@@ -1 +1 @@
sbt.version = 1.1.4
sbt.version = 1.2.8
2 changes: 1 addition & 1 deletion version.sbt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
version in ThisBuild := "0.2.0"
version in ThisBuild := "0.2.1"

0 comments on commit 1e55707

Please sign in to comment.