Skip to content

Commit 4da6dfb

Browse files
authored
Merge pull request #127 from SethTisue/little-tweaks
bump Scala version in build, + slight doc tweaks
2 parents 42163d4 + a437bcf commit 4da6dfb

File tree

4 files changed

+11
-9
lines changed

4 files changed

+11
-9
lines changed

.travis.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,4 +19,4 @@ jdk:
1919
- oraclejdk8
2020

2121
notifications:
22-
email: adriaan.moors@typesafe.com
22+
email: adriaan.moors@lightbend.com

LICENSE.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
Copyright (c) 2002-2013 EPFL
2-
Copyright (c) 2011-2013 Typesafe, Inc.
1+
Copyright (c) 2002-2016 EPFL
2+
Copyright (c) 2011-2016 Lightbend, Inc.
33

44
All rights reserved.
55

@@ -25,4 +25,4 @@ PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
2525
PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
2626
LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
2727
NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
28-
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
28+
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.

README.md

+6-4
Original file line numberDiff line numberDiff line change
@@ -3,15 +3,17 @@ scala-xml [<img src="https://img.shields.io/travis/scala/scala-xml.svg"/>](https
33

44
The standard Scala XML library. Please file issues here instead of over at issues.scala-lang.org.
55

6-
As of Scala 2.11, this library is a separate jar that can be omitted from Scala projects that do not use XML.
7-
If you are cross-building a project that uses scala-xml with Scala 2.10 and Scala 2.11, take a look [this example](https://github.com/scala/scala-module-dependency-sample).
6+
Since Scala 2.11, this library is a separate jar that can be omitted from Scala projects that do not use XML.
7+
If you are cross-building a project that uses scala-xml with both Scala 2.10 and later Scala versions, take a look [this example](https://github.com/scala/scala-module-dependency-sample).
88

9-
The compiler was decoupled from this particular implementation using the same approach as for comprehensions (xml syntax is desugared into a set of method calls, which unfortunately is only defined by the [implementation](https://github.com/scala/scala/blob/2.11.x/src/compiler/scala/tools/nsc/ast/parser/SymbolicXMLBuilder.scala)). Alternative implementations are welcome!
9+
The compiler was decoupled from this particular implementation using the same approach as for comprehensions (XML syntax is desugared into a set of method calls, which unfortunately is only defined by the [implementation](https://github.com/scala/scala/blob/2.11.x/src/compiler/scala/tools/nsc/ast/parser/SymbolicXMLBuilder.scala)). Alternative implementations are welcome!
1010

1111
API documentation is available [here](http://www.scala-lang.org/api/current/scala-xml/).
1212

1313
## Maintenance status
14+
1415
This library is community-maintained. The lead maintainer is [@biswanaths](https://github.com/biswanaths).
1516

1617
## Security best practices
17-
The XML spec has some features that are best turned off, to avoid unsavory things like file system access, DoS attacks,... Issue [#17](https://github.com/scala/scala-xml/issues/17) tracks the recommended way of configuring the xml parser used by scala-xml to avoid these. This is by no means an exhaustive list. We'll be happy to incorporate your suggestions -- just comment on the ticket!
18+
19+
The XML spec has some features that are best turned off, to avoid unsavory things like file system access, DoS attacks,... Issue [#17](https://github.com/scala/scala-xml/issues/17) tracks the recommended way of configuring the XML parser used by scala-xml to avoid these. This is by no means an exhaustive list. We'll be happy to incorporate your suggestions -- just comment on the ticket!

build.sbt

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ crossScalaVersions := {
1313
if (java.startsWith("1.6.") || java.startsWith("1.7."))
1414
Seq("2.11.8")
1515
else if (java.startsWith("1.8.") || java.startsWith("1.9."))
16-
Seq("2.12.0-RC1")
16+
Seq("2.12.1")
1717
else
1818
sys.error(s"don't know what Scala versions to build on $java")
1919
}

0 commit comments

Comments
 (0)