Skip to content

Commit 42db301

Browse files
committed
Bump version to 1.1.0
- build.sbt - improve UTF-8 doc note
1 parent 859c34e commit 42db301

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

build.sbt

+2-2
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ lazy val xml = crossProject.in(file("."))
2020
.jvmSettings(scalaModuleSettingsJVM)
2121
.settings(
2222
name := "scala-xml",
23-
version := "1.0.7-SNAPSHOT",
23+
version := "1.1.0-SNAPSHOT",
2424

2525
scalacOptions ++= "-deprecation:false -feature -Xlint:-stars-align,-nullary-unit,_".split("\\s+").to[Seq],
2626
scalacOptions in Test += "-Xxml:coalescing",
@@ -38,7 +38,7 @@ lazy val xml = crossProject.in(file("."))
3838
import com.typesafe.tools.mima.core.ProblemFilters._
3939
Seq(
4040
// Scala 2.12 deprecated mutable.Stack, so we broke
41-
// binary compatability for 1.0.7 in the following way:
41+
// binary compatability for 1.1.0 in the following way:
4242
exclude[IncompatibleMethTypeProblem]("scala.xml.parsing.FactoryAdapter.scopeStack_="),
4343
exclude[IncompatibleResultTypeProblem]("scala.xml.parsing.FactoryAdapter.hStack"),
4444
exclude[IncompatibleResultTypeProblem]("scala.xml.parsing.FactoryAdapter.scopeStack"),

shared/src/main/scala/scala/xml/XML.scala

+1-1
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ object XML extends XMLLoader[Elem] {
7373
* Saves a node to a file with given filename using given encoding
7474
* optionally with xmldecl and doctype declaration.
7575
*
76-
* Note: default encoding was ISO-8859-1 (latin1) in pre-1.0.7 scala-xml versions.
76+
* Note: Before scala-xml 1.1.0, the default encoding was ISO-8859-1 (latin1).
7777
* If your code depends on characters in non-ASCII latin1 range, specify
7878
* ISO-8859-1 encoding explicitly.
7979
*

0 commit comments

Comments
 (0)