From aa41403e2e9793627462d55b48a2494abb91e446 Mon Sep 17 00:00:00 2001 From: Jarek Sacha Date: Fri, 9 Aug 2024 09:13:42 -0400 Subject: [PATCH 1/2] Bump sbt-sonatype plugin to 3.11.1 --- project/sbt-sonatype.sbt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project/sbt-sonatype.sbt b/project/sbt-sonatype.sbt index c8195ff..72a1d61 100644 --- a/project/sbt-sonatype.sbt +++ b/project/sbt-sonatype.sbt @@ -1,3 +1,3 @@ // [https://github.com/xerial/sbt-sonatype] -addSbtPlugin("org.xerial.sbt" % "sbt-sonatype" % "3.10.0") +addSbtPlugin("org.xerial.sbt" % "sbt-sonatype" % "3.11.1") addSbtPlugin("com.github.sbt" % "sbt-pgp" % "2.2.1") From b16b9269d1d58ad38c883bedfd3a0db7b60c6968 Mon Sep 17 00:00:00 2001 From: Jarek Sacha Date: Fri, 9 Aug 2024 09:14:16 -0400 Subject: [PATCH 2/2] Mark release version 0.10.0 --- build.sbt | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/build.sbt b/build.sbt index cff21c4..61e68ed 100644 --- a/build.sbt +++ b/build.sbt @@ -5,11 +5,11 @@ import scala.xml.{Node => XmlNode, NodeSeq => XmlNodeSeq, _} // // Environment variables used by the build: -// GRAPHVIZ_DOT_PATH - Full path to Graphviz dot utility. If not defined Scaladocs will be build without diagrams. +// GRAPHVIZ_DOT_PATH - Full path to Graphviz dot utility. If not defined, Scaladocs will be built without diagrams. // JAR_BUILT_BY - Name to be added to Jar metadata field "Built-By" (defaults to System.getProperty("user.name") // -val projectVersion = "0.9.0.6-SNAPSHOT" +val projectVersion = "0.10.0" val versionTagDir = if (projectVersion.endsWith("SNAPSHOT")) "master" else "v." + projectVersion val _scalaVersions = Seq("3.3.3", "2.13.14", "2.12.19") val _scalaVersion = _scalaVersions.head @@ -91,7 +91,7 @@ lazy val scalaFXExtrasDemos = (project in file("scalafx-extras-demos")).settings ).dependsOn(scalaFXExtras % "compile;test->test") // Resolvers -// Add snapshots to root project to enable compilation with Scala SNAPSHOT compiler, +// Add snapshots to the root project to enable compilation with Scala SNAPSHOT compiler, // e.g., 2.11.0-SNAPSHOT resolvers ++= Resolver.sonatypeOssRepos("snapshots")