Skip to content

Commit

Permalink
reapply some lib updates
Browse files Browse the repository at this point in the history
  • Loading branch information
carueda committed Oct 9, 2022
1 parent f0ac232 commit 9b946e3
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 11 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Expand Up @@ -9,12 +9,12 @@ jobs:
fail-fast: false
matrix:
jdk: [17]
scala: ['2.13', '3.1']
scala: ['2.13', '3.2']
include:
- scala: '2.13'
scala-version: 2.13.8
- scala: '3.1'
scala-version: 3.1.3
- scala: '3.2'
scala-version: 3.2.0
steps:
- name: Checkout
uses: actions/checkout@v2
Expand Down
2 changes: 1 addition & 1 deletion .scalafmt.conf
@@ -1,4 +1,4 @@
version = "3.5.8"
version = "3.5.9"
runner.dialect = scala3
trailingCommas = preserve
align.preset = more
Expand Down
1 change: 1 addition & 0 deletions ChangeLog.md
@@ -1,6 +1,7 @@
2022-10 - 1.0.1

- fix #180 "Wrapped Data Types"
- reapply some lib updates

2022-07

Expand Down
12 changes: 6 additions & 6 deletions build.sbt
Expand Up @@ -3,18 +3,18 @@ enablePlugins(BuildInfoPlugin)
organization := "com.github.carueda"
name := "tscfg"
version := "1.0.1"
scalaVersion := "3.1.3"
crossScalaVersions := Seq("2.13.8", "3.1.3")
scalaVersion := "3.2.0"
crossScalaVersions := Seq("2.13.8", "3.2.0")

buildInfoKeys := Seq[BuildInfoKey](version)
buildInfoPackage := "tscfg"

libraryDependencies ++= Seq(
"com.outr" %% "scribe" % "3.10.1",
"com.outr" %% "scribe" % "3.10.3",
"com.typesafe" % "config" % "1.4.2",
"com.lihaoyi" %% "pprint" % "0.7.3",
"org.scalatest" %% "scalatest" % "3.2.13" % Test,
"com.google.code.gson" % "gson" % "2.9.0"
"com.lihaoyi" %% "pprint" % "0.8.0",
"org.scalatest" %% "scalatest" % "3.2.14" % Test,
"com.google.code.gson" % "gson" % "2.9.1"
)

scalafmtOnCompile := true
Expand Down
2 changes: 1 addition & 1 deletion project/plugins.sbt
@@ -1,7 +1,7 @@
addSbtPlugin("com.eed3si9n" % "sbt-assembly" % "1.1.1")
addSbtPlugin("org.xerial.sbt" % "sbt-sonatype" % "3.9.13")
addSbtPlugin("com.github.sbt" % "sbt-pgp" % "2.1.2")
addSbtPlugin("org.scoverage" % "sbt-scoverage" % "2.0.1")
addSbtPlugin("org.scoverage" % "sbt-scoverage" % "2.0.3")
addSbtPlugin("org.scoverage" % "sbt-coveralls" % "1.3.2")
addSbtPlugin("org.scalameta" % "sbt-scalafmt" % "2.4.6")
addSbtPlugin("com.eed3si9n" % "sbt-buildinfo" % "0.11.0")

0 comments on commit 9b946e3

Please sign in to comment.