diff --git a/CHANGELOG.md b/CHANGELOG.md index 8667a97..3055772 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,13 @@ # Change Log +## 1.2.0 - [2023-07-06] + +Added: + +- Support for Scala 3. + + ## 1.1.1 - [2020-02-10] Added: diff --git a/RELEASING.md b/RELEASING.md index 9363f82..001aa8d 100644 --- a/RELEASING.md +++ b/RELEASING.md @@ -11,7 +11,7 @@ "your-password" ) ``` -- List GPG keys with `sbt gpg --list-keys` +- List GPG keys with `sbt pgp-cmd list-keys` - Check the presence of key for this library release (it's called `ride`). If not found: generate a new one with `sbt pgp-cmd gen-key` and then post it to GPG ubuntu keyserver with `sbt pgp-cmd send-key ride http://keyserver.ubuntu.com:11371` - Make sure tests are passing (locally and on CI) - Create a release at the Github diff --git a/build.sbt b/build.sbt index 001c749..a2af454 100644 --- a/build.sbt +++ b/build.sbt @@ -25,12 +25,13 @@ homepage := Some(url(s"https://github.com/$username/$repo")) publishMavenStyle := true Test / publishArtifact := false -publishTo := Some( +publishTo := { + val nexus = "https://oss.sonatype.org/" if (isSnapshot.value) - Opts.resolver.sonatypeSnapshots + Some("snapshots" at nexus + "content/repositories/snapshots") else - Opts.resolver.sonatypeStaging -) + Some("releases" at nexus + "service/local/staging/deploy/maven2") +} pomExtra :=