Skip to content

Commit c5d3fba

Browse files
committed
Version 1.1.0.
1 parent 54c39e9 commit c5d3fba

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,26 +1,26 @@
11
# portable-scala-reflect: platform-agnostic reflection for Scala
22

33
[![Build Status](https://travis-ci.org/portable-scala/portable-scala-reflect.svg?branch=master)](https://travis-ci.org/portable-scala/portable-scala-reflect)
4-
[![Scala.js](https://www.scala-js.org/assets/badges/scalajs-0.6.33.svg)](https://www.scala-js.org/)
4+
[![Scala.js](https://www.scala-js.org/assets/badges/scalajs-0.6.29.svg)](https://www.scala-js.org/)
55
[![Scala.js](https://www.scala-js.org/assets/badges/scalajs-1.0.0.svg)](https://www.scala-js.org)
66
[![Scaladoc](https://javadoc-badge.appspot.com/org.portable-scala/portable-scala-reflect_2.12.svg?label=scaladoc)](https://javadoc.io/doc/org.portable-scala/portable-scala-reflect_2.12/latest/org/portablescala/reflect/index.html)
77

88
The various platforms supported by Scala (JVM, JavaScript and Native) have varying support for run-time reflection.
99
Even the subset of functionality that is supported across the platforms is exposed through different APIs.
1010

1111
This library exposes a unified, portable API for run-time reflection in Scala.
12-
It currently supports Scala/JVM and Scala.js, but will eventually support Scala Native as well (currently blocked on [scala-native#1279](https://github.com/scala-native/scala-native/issues/1279)).
12+
It supports Scala/JVM, Scala.js and Scala Native.
1313
To be portable, only the subset of reflection capabilities that is implementable across all platforms is exposed.
1414

1515
## Setup
1616

1717
Add the following line to your (cross-)project's settings in `build.sbt`:
1818

1919
```scala
20-
libraryDependencies += "org.portable-scala" %%% "portable-scala-reflect" % "1.0.0"
20+
libraryDependencies += "org.portable-scala" %%% "portable-scala-reflect" % "1.1.0"
2121
```
2222

23-
`portable-scala-reflect` 1.0.0 supports:
23+
`portable-scala-reflect` 1.1.0 supports:
2424

2525
* Scala 2.11.x, 2.12.x and 2.13.x
2626
* Scala/JVM

build.sbt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ val previousVersion = "1.0.0"
66
inThisBuild(Def.settings(
77
crossScalaVersions := Seq("2.12.13", "2.11.12", "2.13.4"),
88
scalaVersion := crossScalaVersions.value.head,
9-
version := "1.1.0-SNAPSHOT",
9+
version := "1.1.0",
1010
organization := "org.portable-scala",
1111

1212
scalacOptions ++= Seq(

0 commit comments

Comments
 (0)