Skip to content

Commit

Permalink
Remove Scala 2.11 (closes #157)
Browse files Browse the repository at this point in the history
  • Loading branch information
BenFradet authored and dilyand committed Nov 8, 2019
1 parent 0ac0708 commit a9f8895
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 5 deletions.
1 change: 0 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
language: scala
scala:
- 2.11.12
- 2.12.8
jdk:
- oraclejdk8
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ There are three types of accounts supported by OER API, Unlimited, Enterprise an

### 2.2 Installation

The latest version of Scala Forex is 0.6.0, which is cross-built against 2.11.x and 2.12.x.
The latest version of Scala Forex is 0.6.0, which is built against 2.12.x.

If you're using SBT, add the following lines to your build file:

Expand Down
1 change: 0 additions & 1 deletion project/BuildSettings.scala
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,6 @@ object BuildSettings {
lazy val buildSettings = Seq[Setting[_]](
organization := "com.snowplowanalytics",
scalaVersion := "2.12.8",
crossScalaVersions := Seq("2.11.12", "2.12.8")
)

// Publish settings
Expand Down
4 changes: 2 additions & 2 deletions src/main/scala/com.snowplowanalytics/forex/OerClient.scala
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,8 @@ import responses._
*/
case class OerClient[F[_]: Sync](
config: ForexConfig,
val nowishCache: Option[NowishCache[F]] = None,
val eodCache: Option[EodCache[F]] = None,
nowishCache: Option[NowishCache[F]] = None,
eodCache: Option[EodCache[F]] = None,
transport: Transport[F]
) {

Expand Down

0 comments on commit a9f8895

Please sign in to comment.