From 5afefa74364f2f61597c49160c4220ae00f4a6c3 Mon Sep 17 00:00:00 2001 From: Scala Steward <43047562+scala-steward@users.noreply.github.com> Date: Tue, 15 Feb 2022 15:16:46 +0100 Subject: [PATCH 01/21] Update shapeless to 2.3.8 (#18) --- build.sbt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.sbt b/build.sbt index af6073e..4018646 100644 --- a/build.sbt +++ b/build.sbt @@ -49,7 +49,7 @@ lazy val pureCSV = project.in(file(".")). name := "purecsv", scalacOptions ++= Seq("-feature", "-deprecation"), libraryDependencies ++= Seq( - "com.chuusai" %% "shapeless" % "2.3.7", + "com.chuusai" %% "shapeless" % "2.3.8", "com.github.tototoshi" %% "scala-csv" % "1.3.10", "org.scalatest" %% "scalatest" % "3.2.11" % Test ) From 41a8dd57db4c0bbf51878d4631d1cacdf52f1d27 Mon Sep 17 00:00:00 2001 From: Scala Steward <43047562+scala-steward@users.noreply.github.com> Date: Wed, 30 Mar 2022 16:31:11 +0200 Subject: [PATCH 02/21] Update shapeless to 2.3.9 (#19) --- build.sbt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.sbt b/build.sbt index 4018646..c53a0fd 100644 --- a/build.sbt +++ b/build.sbt @@ -49,7 +49,7 @@ lazy val pureCSV = project.in(file(".")). name := "purecsv", scalacOptions ++= Seq("-feature", "-deprecation"), libraryDependencies ++= Seq( - "com.chuusai" %% "shapeless" % "2.3.8", + "com.chuusai" %% "shapeless" % "2.3.9", "com.github.tototoshi" %% "scala-csv" % "1.3.10", "org.scalatest" %% "scalatest" % "3.2.11" % Test ) From 1adc9fb6e2b650b3c6f5eed393f11bfc96a55a2c Mon Sep 17 00:00:00 2001 From: Scala Steward <43047562+scala-steward@users.noreply.github.com> Date: Fri, 29 Apr 2022 10:29:33 +0200 Subject: [PATCH 03/21] Update scalatest to 3.2.12 (#20) --- build.sbt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.sbt b/build.sbt index c53a0fd..3da19bb 100644 --- a/build.sbt +++ b/build.sbt @@ -51,6 +51,6 @@ lazy val pureCSV = project.in(file(".")). libraryDependencies ++= Seq( "com.chuusai" %% "shapeless" % "2.3.9", "com.github.tototoshi" %% "scala-csv" % "1.3.10", - "org.scalatest" %% "scalatest" % "3.2.11" % Test + "org.scalatest" %% "scalatest" % "3.2.12" % Test ) ) From 5a7ebcf1f5e44d0974d34a9fafd61c14f022b091 Mon Sep 17 00:00:00 2001 From: Scala Steward <43047562+scala-steward@users.noreply.github.com> Date: Thu, 11 Aug 2022 10:46:39 +0200 Subject: [PATCH 04/21] Update sbt-updates to 0.6.3 (#21) --- project/plugins.sbt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project/plugins.sbt b/project/plugins.sbt index 03cb2d0..df1ee87 100644 --- a/project/plugins.sbt +++ b/project/plugins.sbt @@ -4,7 +4,7 @@ * for easier dependency updates monitoring * @see https://github.com/rtimush/sbt-updates */ -addSbtPlugin("com.timushev.sbt" % "sbt-updates" % "0.6.2") +addSbtPlugin("com.timushev.sbt" % "sbt-updates" % "0.6.3") addSbtPlugin("com.github.sbt" % "sbt-release" % "1.1.0") From 278f4c4d68775da3ee169caa598012247bc30f3c Mon Sep 17 00:00:00 2001 From: Scala Steward <43047562+scala-steward@users.noreply.github.com> Date: Thu, 11 Aug 2022 10:47:00 +0200 Subject: [PATCH 05/21] Update scalatest to 3.2.13 (#25) --- build.sbt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.sbt b/build.sbt index 3da19bb..6fd3b65 100644 --- a/build.sbt +++ b/build.sbt @@ -51,6 +51,6 @@ lazy val pureCSV = project.in(file(".")). libraryDependencies ++= Seq( "com.chuusai" %% "shapeless" % "2.3.9", "com.github.tototoshi" %% "scala-csv" % "1.3.10", - "org.scalatest" %% "scalatest" % "3.2.12" % Test + "org.scalatest" %% "scalatest" % "3.2.13" % Test ) ) From 4f40b068193ca4a0c3afe02b9377e6d6b07d6e44 Mon Sep 17 00:00:00 2001 From: Scala Steward <43047562+scala-steward@users.noreply.github.com> Date: Thu, 11 Aug 2022 10:51:18 +0200 Subject: [PATCH 06/21] Update scala-library to 2.12.16 (#22) --- build.sbt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.sbt b/build.sbt index 6fd3b65..b671859 100644 --- a/build.sbt +++ b/build.sbt @@ -3,7 +3,7 @@ import sbt.Keys._ lazy val buildSettings = Seq( organization := "io.kontainers", scalaVersion := "2.13.8", - crossScalaVersions := Seq("2.12.15", scalaVersion.value) + crossScalaVersions := Seq("2.12.16", scalaVersion.value) ) lazy val publishSettings = Seq( From 2795af114790da7346f19bfd067a009ec3a48371 Mon Sep 17 00:00:00 2001 From: Scala Steward <43047562+scala-steward@users.noreply.github.com> Date: Thu, 11 Aug 2022 10:54:40 +0200 Subject: [PATCH 07/21] Update sbt to 1.7.1 (#24) --- project/build.properties | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project/build.properties b/project/build.properties index c8fcab5..22af262 100644 --- a/project/build.properties +++ b/project/build.properties @@ -1 +1 @@ -sbt.version=1.6.2 +sbt.version=1.7.1 From 80cb8dfa361ee0ea2251f7e84a9c7b2baed8dc31 Mon Sep 17 00:00:00 2001 From: Scala Steward Date: Tue, 13 Sep 2022 15:21:37 +0000 Subject: [PATCH 08/21] Update shapeless to 2.3.10 --- build.sbt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.sbt b/build.sbt index b671859..be37312 100644 --- a/build.sbt +++ b/build.sbt @@ -49,7 +49,7 @@ lazy val pureCSV = project.in(file(".")). name := "purecsv", scalacOptions ++= Seq("-feature", "-deprecation"), libraryDependencies ++= Seq( - "com.chuusai" %% "shapeless" % "2.3.9", + "com.chuusai" %% "shapeless" % "2.3.10", "com.github.tototoshi" %% "scala-csv" % "1.3.10", "org.scalatest" %% "scalatest" % "3.2.13" % Test ) From 55efa1a88d4f0089f960301b83b322ed66aa67f6 Mon Sep 17 00:00:00 2001 From: Scala Steward Date: Mon, 19 Sep 2022 18:21:11 +0000 Subject: [PATCH 09/21] Update scala-library to 2.12.17 --- build.sbt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.sbt b/build.sbt index b671859..86e6c39 100644 --- a/build.sbt +++ b/build.sbt @@ -3,7 +3,7 @@ import sbt.Keys._ lazy val buildSettings = Seq( organization := "io.kontainers", scalaVersion := "2.13.8", - crossScalaVersions := Seq("2.12.16", scalaVersion.value) + crossScalaVersions := Seq("2.12.17", scalaVersion.value) ) lazy val publishSettings = Seq( From cc7642d0cc5203ba5c649826132806855a40d2a0 Mon Sep 17 00:00:00 2001 From: Scala Steward Date: Mon, 17 Oct 2022 19:37:41 +0000 Subject: [PATCH 10/21] Update sbt-updates to 0.6.4 --- project/plugins.sbt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project/plugins.sbt b/project/plugins.sbt index df1ee87..99087dd 100644 --- a/project/plugins.sbt +++ b/project/plugins.sbt @@ -4,7 +4,7 @@ * for easier dependency updates monitoring * @see https://github.com/rtimush/sbt-updates */ -addSbtPlugin("com.timushev.sbt" % "sbt-updates" % "0.6.3") +addSbtPlugin("com.timushev.sbt" % "sbt-updates" % "0.6.4") addSbtPlugin("com.github.sbt" % "sbt-release" % "1.1.0") From 4a08c5a61e1c313b1cb9c921df9cbe2b45b2ebbd Mon Sep 17 00:00:00 2001 From: Grzegorz Taramina Date: Wed, 19 Oct 2022 13:28:01 +0200 Subject: [PATCH 11/21] upgrade scala --- build.sbt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build.sbt b/build.sbt index be37312..67cf841 100644 --- a/build.sbt +++ b/build.sbt @@ -2,8 +2,8 @@ import sbt.Keys._ lazy val buildSettings = Seq( organization := "io.kontainers", - scalaVersion := "2.13.8", - crossScalaVersions := Seq("2.12.16", scalaVersion.value) + scalaVersion := "2.13.10", + crossScalaVersions := Seq("2.12.17", scalaVersion.value) ) lazy val publishSettings = Seq( From 6d1e8dc47844fb82f8d79629684b5584eccff652 Mon Sep 17 00:00:00 2001 From: grzegorz-taramina Date: Wed, 19 Oct 2022 13:41:03 +0200 Subject: [PATCH 12/21] upgrading scala --- build.sbt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.sbt b/build.sbt index 86e6c39..82cd0c0 100644 --- a/build.sbt +++ b/build.sbt @@ -2,7 +2,7 @@ import sbt.Keys._ lazy val buildSettings = Seq( organization := "io.kontainers", - scalaVersion := "2.13.8", + scalaVersion := "2.13.10", crossScalaVersions := Seq("2.12.17", scalaVersion.value) ) From 6d3bf3349ffc15b5f1de8bc33f88005dee4830f6 Mon Sep 17 00:00:00 2001 From: Grzegorz Taramina Date: Wed, 19 Oct 2022 13:45:52 +0200 Subject: [PATCH 13/21] Setting version to 1.4.0 --- version.sbt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/version.sbt b/version.sbt index 8c07934..e808296 100644 --- a/version.sbt +++ b/version.sbt @@ -1 +1 @@ -ThisBuild / version := "1.3.11-SNAPSHOT" +ThisBuild / version := "1.4.0" From a2b45487ea1af70a62a9c9920a4cf8023e961c5f Mon Sep 17 00:00:00 2001 From: Scala Steward <43047562+scala-steward@users.noreply.github.com> Date: Wed, 29 Mar 2023 16:21:10 +0200 Subject: [PATCH 14/21] Update sbt to 1.7.3 (#30) --- project/build.properties | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project/build.properties b/project/build.properties index 22af262..6a9f038 100644 --- a/project/build.properties +++ b/project/build.properties @@ -1 +1 @@ -sbt.version=1.7.1 +sbt.version=1.7.3 From 402226c48d3e66dfb7ff4a16b702418d704afb2f Mon Sep 17 00:00:00 2001 From: Scala Steward <43047562+scala-steward@users.noreply.github.com> Date: Wed, 29 Mar 2023 16:22:11 +0200 Subject: [PATCH 15/21] Update sbt-pgp to 2.2.1 (#32) --- project/plugins.sbt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project/plugins.sbt b/project/plugins.sbt index 99087dd..1da7c3c 100644 --- a/project/plugins.sbt +++ b/project/plugins.sbt @@ -8,4 +8,4 @@ addSbtPlugin("com.timushev.sbt" % "sbt-updates" % "0.6.4") addSbtPlugin("com.github.sbt" % "sbt-release" % "1.1.0") -addSbtPlugin("com.github.sbt" % "sbt-pgp" % "2.1.2") +addSbtPlugin("com.github.sbt" % "sbt-pgp" % "2.2.1") From bf363b2de626817938051844d3b5616da5d6586e Mon Sep 17 00:00:00 2001 From: Scala Steward <43047562+scala-steward@users.noreply.github.com> Date: Wed, 29 Mar 2023 16:22:27 +0200 Subject: [PATCH 16/21] Update scalatest to 3.2.15 (#33) --- build.sbt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.sbt b/build.sbt index 67cf841..adca359 100644 --- a/build.sbt +++ b/build.sbt @@ -51,6 +51,6 @@ lazy val pureCSV = project.in(file(".")). libraryDependencies ++= Seq( "com.chuusai" %% "shapeless" % "2.3.10", "com.github.tototoshi" %% "scala-csv" % "1.3.10", - "org.scalatest" %% "scalatest" % "3.2.13" % Test + "org.scalatest" %% "scalatest" % "3.2.15" % Test ) ) From 38e6a2c6b7a76cecc84857bda816d73b90d4c9c0 Mon Sep 17 00:00:00 2001 From: Scala Steward <43047562+scala-steward@users.noreply.github.com> Date: Fri, 29 Sep 2023 15:42:34 +0200 Subject: [PATCH 17/21] Update scalatest to 3.2.17 (#46) --- build.sbt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.sbt b/build.sbt index adca359..f02d74d 100644 --- a/build.sbt +++ b/build.sbt @@ -51,6 +51,6 @@ lazy val pureCSV = project.in(file(".")). libraryDependencies ++= Seq( "com.chuusai" %% "shapeless" % "2.3.10", "com.github.tototoshi" %% "scala-csv" % "1.3.10", - "org.scalatest" %% "scalatest" % "3.2.15" % Test + "org.scalatest" %% "scalatest" % "3.2.17" % Test ) ) From 0f650e87a69b78abe1ca7d9b434801b46d21599e Mon Sep 17 00:00:00 2001 From: Scala Steward <43047562+scala-steward@users.noreply.github.com> Date: Fri, 29 Sep 2023 15:42:59 +0200 Subject: [PATCH 18/21] Update sbt to 1.9.6 (#45) --- project/build.properties | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project/build.properties b/project/build.properties index 6a9f038..2743082 100644 --- a/project/build.properties +++ b/project/build.properties @@ -1 +1 @@ -sbt.version=1.7.3 +sbt.version=1.9.6 From b92b7286f60d2b8eb8e8764664b03d604b493a64 Mon Sep 17 00:00:00 2001 From: Scala Steward <43047562+scala-steward@users.noreply.github.com> Date: Fri, 29 Sep 2023 15:43:12 +0200 Subject: [PATCH 19/21] Update scala-library to 2.13.12 (#44) --- build.sbt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.sbt b/build.sbt index f02d74d..14b9fd7 100644 --- a/build.sbt +++ b/build.sbt @@ -2,7 +2,7 @@ import sbt.Keys._ lazy val buildSettings = Seq( organization := "io.kontainers", - scalaVersion := "2.13.10", + scalaVersion := "2.13.12", crossScalaVersions := Seq("2.12.17", scalaVersion.value) ) From 236af2ade5057dc8ab8c5be72c9ad079407f4c1b Mon Sep 17 00:00:00 2001 From: Scala Steward <43047562+scala-steward@users.noreply.github.com> Date: Thu, 14 Dec 2023 12:22:09 +0100 Subject: [PATCH 20/21] Update sbt to 1.9.7 (#47) --- project/build.properties | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project/build.properties b/project/build.properties index 2743082..e8a1e24 100644 --- a/project/build.properties +++ b/project/build.properties @@ -1 +1 @@ -sbt.version=1.9.6 +sbt.version=1.9.7 From 3944ff21f1ee1c0842804f16a5ebf5c3fbc29f43 Mon Sep 17 00:00:00 2001 From: Grzegorz Taramina Date: Mon, 16 Dec 2024 15:36:38 +0100 Subject: [PATCH 21/21] upgrading dependencies --- build.sbt | 8 ++++---- project/build.properties | 2 +- project/plugins.sbt | 4 ++-- 3 files changed, 7 insertions(+), 7 deletions(-) diff --git a/build.sbt b/build.sbt index 14b9fd7..2d7a779 100644 --- a/build.sbt +++ b/build.sbt @@ -2,7 +2,7 @@ import sbt.Keys._ lazy val buildSettings = Seq( organization := "io.kontainers", - scalaVersion := "2.13.12", + scalaVersion := "2.13.15", crossScalaVersions := Seq("2.12.17", scalaVersion.value) ) @@ -49,8 +49,8 @@ lazy val pureCSV = project.in(file(".")). name := "purecsv", scalacOptions ++= Seq("-feature", "-deprecation"), libraryDependencies ++= Seq( - "com.chuusai" %% "shapeless" % "2.3.10", - "com.github.tototoshi" %% "scala-csv" % "1.3.10", - "org.scalatest" %% "scalatest" % "3.2.17" % Test + "com.chuusai" %% "shapeless" % "2.3.12", + "com.github.tototoshi" %% "scala-csv" % "2.0.0", + "org.scalatest" %% "scalatest" % "3.2.19" % Test ) ) diff --git a/project/build.properties b/project/build.properties index e8a1e24..04267b1 100644 --- a/project/build.properties +++ b/project/build.properties @@ -1 +1 @@ -sbt.version=1.9.7 +sbt.version=1.9.9 diff --git a/project/plugins.sbt b/project/plugins.sbt index 1da7c3c..5ad1b36 100644 --- a/project/plugins.sbt +++ b/project/plugins.sbt @@ -6,6 +6,6 @@ */ addSbtPlugin("com.timushev.sbt" % "sbt-updates" % "0.6.4") -addSbtPlugin("com.github.sbt" % "sbt-release" % "1.1.0") +addSbtPlugin("com.github.sbt" % "sbt-release" % "1.4.0") -addSbtPlugin("com.github.sbt" % "sbt-pgp" % "2.2.1") +addSbtPlugin("com.github.sbt" % "sbt-pgp" % "2.3.1")