Skip to content

Commit 784385c

Browse files
committed
Update dependencies
1 parent 4f466e3 commit 784385c

File tree

3 files changed

+9
-7
lines changed

3 files changed

+9
-7
lines changed

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,3 +20,5 @@ extension/target/
2020
project/target/
2121

2222
target/
23+
24+
.bsp/

build.sbt

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
name := "ezXML"
22

33
ThisBuild / organization := "com.github.julienst"
4-
ThisBuild / version := "0.7"
5-
ThisBuild / scalaVersion := "2.13.3"
4+
ThisBuild / version := "0.8"
5+
ThisBuild / scalaVersion := "2.13.5"
66
ThisBuild / scalacOptions += "-Ymacro-annotations"
77

88
lazy val core = crossProject(JSPlatform, JVMPlatform)
@@ -11,9 +11,9 @@ lazy val core = crossProject(JSPlatform, JVMPlatform)
1111
.settings(
1212
name := "ezxml.core",
1313
libraryDependencies ++= Seq (
14-
"com.lihaoyi" %%% "fastparse" % "2.3.0",
14+
"com.lihaoyi" %%% "fastparse" % "2.3.1", // https://mvnrepository.com/artifact/com.lihaoyi/fastparse
1515
"org.scala-lang.modules" %%% "scala-xml" % "1.3.0", // https://mvnrepository.com/artifact/org.scala-lang.modules/scala-xml
16-
"org.scalatest" %%% "scalatest" % "3.1.2" % Test // https://mvnrepository.com/artifact/org.scalatest/scalatest
16+
"org.scalatest" %%% "scalatest" % "3.2.5" % Test // https://mvnrepository.com/artifact/org.scalatest/scalatest
1717
)
1818
)
1919

@@ -28,8 +28,8 @@ lazy val extension = crossProject(JSPlatform, JVMPlatform)
2828
name := "ezxml.extension",
2929
libraryDependencies ++= Seq (
3030
"org.scala-lang.modules" %%% "scala-xml" % "1.3.0", // https://mvnrepository.com/artifact/org.scala-lang.modules/scala-xml
31-
"org.scala-lang" % "scala-reflect" % "2.13.3", // https://mvnrepository.com/artifact/org.scala-lang/scala-reflect
32-
"org.scalatest" %%% "scalatest" % "3.1.2" % Test // https://mvnrepository.com/artifact/org.scalatest/scalatest
31+
"org.scala-lang" % "scala-reflect" % "2.13.5", // https://mvnrepository.com/artifact/org.scala-lang/scala-reflect
32+
"org.scalatest" %%% "scalatest" % "3.2.5" % Test // https://mvnrepository.com/artifact/org.scalatest/scalatest
3333
),
3434
scalacOptions += "-Ymacro-annotations"
3535
)

project/build.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
sbt.version = 1.3.12
1+
sbt.version = 1.4.3

0 commit comments

Comments
 (0)