Skip to content

Commit 8fe3117

Browse files
authored
Merge pull request #24 from regadas/master
Add scala 2.12.9 and openjdk12
2 parents c5975c0 + 7a3fe86 commit 8fe3117

File tree

4 files changed

+7
-11
lines changed

4 files changed

+7
-11
lines changed

.travis.yml

+2-7
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,12 @@
11
language: scala
22
scala:
33
- 2.11.12
4-
- 2.12.1
5-
- 2.12.2
6-
- 2.12.3
7-
- 2.12.4
8-
- 2.12.5
9-
- 2.12.6
10-
- 2.12.7
114
- 2.12.8
5+
- 2.12.9
126
- 2.13.0
137
jdk:
148
- openjdk8
9+
- openjdk12
1510
cache:
1611
directories:
1712
- $HOME/.sbt

README.md

+3-2
Original file line numberDiff line numberDiff line change
@@ -55,13 +55,13 @@ you'll get warnings that look something like this:
5555
In sbt:
5656

5757
```
58-
addCompilerPlugin("com.github.cb372" % "scala-typed-holes" % "0.0.9" cross CrossVersion.full)
58+
addCompilerPlugin("com.github.cb372" % "scala-typed-holes" % "0.0.10-SNAPSHOT" cross CrossVersion.full)
5959
```
6060

6161
The plugin is published for the following Scala versions:
6262

6363
* 2.11.12
64-
* 2.12.1 to 2.12.8
64+
* 2.12.{8, 9}
6565
* 2.13.0
6666

6767
## Changing the log level
@@ -81,3 +81,4 @@ If you are using sbt, you can pass the option like this:
8181
```
8282
scalacOptions += "-P:typed-holes:log-level:info"
8383
```
84+

build.sbt

+1-1
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ val `scala-typed-holes` = project.in(file("."))
3636
val docs = project
3737
.in(file("generated-docs")) // important: it must not be the actual directory name, i.e. docs/
3838
.settings(
39-
scalaVersion := "2.12.8",
39+
scalaVersion := "2.12.9",
4040
crossScalaVersions := Nil,
4141
publishArtifact := false,
4242
mdocVariables := Map("VERSION" -> version.value),

docs/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ addCompilerPlugin("com.github.cb372" % "scala-typed-holes" % "@VERSION@" cross C
6161
The plugin is published for the following Scala versions:
6262

6363
* 2.11.12
64-
* 2.12.1 to 2.12.8
64+
* 2.12.{8, 9}
6565
* 2.13.0
6666

6767
## Changing the log level

0 commit comments

Comments
 (0)