Skip to content

Commit b5a3d34

Browse files
committed
Update readme for v0.1.6 and add script to test release.
1 parent 32c21e8 commit b5a3d34

File tree

2 files changed

+23
-2
lines changed

2 files changed

+23
-2
lines changed

README.md

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@ SourceCode [![Build Status](https://travis-ci.org/lihaoyi/sourcecode.svg?branch=
22
==========
33

44
```scala
5-
"com.lihaoyi" %% "sourcecode" % "0.1.5" // Scala-JVM
6-
"com.lihaoyi" %%% "sourcecode" % "0.1.5" // Scala.js / Scala Native
5+
"com.lihaoyi" %% "sourcecode" % "0.1.6" // Scala-JVM
6+
"com.lihaoyi" %%% "sourcecode" % "0.1.6" // Scala.js / Scala Native
77
```
88

99
`sourcecode` is a small Scala library for that provides common "source code"
@@ -599,6 +599,10 @@ in its `.toString` method.
599599

600600
Version History
601601
===============
602+
0.1.6
603+
-----
604+
- Add Automatic-Module-Name for Java 9 compatibility, [#49](https://github.com/lihaoyi/sourcecode/pull/49)
605+
- Add Scala 2.13.0-RC1 support
602606

603607
0.1.5
604608
-----

bin/testRelease.sh

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
#!/usr/bin/env bash
2+
set -eux
3+
4+
VERSION=$1
5+
coursier fetch \
6+
com.lihaoyi:sourcecode_2.10:$VERSION \
7+
com.lihaoyi:sourcecode_2.11:$VERSION \
8+
com.lihaoyi:sourcecode_2.12:$VERSION \
9+
com.lihaoyi:sourcecode_2.13.0-RC1:$VERSION \
10+
com.lihaoyi:sourcecode_2.13.0-RC1:$VERSION \
11+
com.lihaoyi:sourcecode_native0.3_2.11:$VERSION \
12+
com.lihaoyi:sourcecode_sjs0.6_2.10:$VERSION \
13+
com.lihaoyi:sourcecode_sjs0.6_2.11:$VERSION \
14+
com.lihaoyi:sourcecode_sjs0.6_2.12:$VERSION \
15+
com.lihaoyi:sourcecode_sjs0.6_2.13.0-RC1:$VERSION \
16+
com.lihaoyi:sourcecode_sjs0.6_2.13.0-RC1:$VERSION \
17+
-r sonatype:public

0 commit comments

Comments
 (0)