Skip to content

Commit

Permalink
Merge pull request #16 from kolotaev/prepare-1.2-release
Browse files Browse the repository at this point in the history
Document changes to 1.2.0
  • Loading branch information
kolotaev authored Jul 6, 2023
2 parents 710c3bb + cc118ee commit 39f19f2
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 5 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,13 @@
# Change Log


## 1.2.0 - [2023-07-06]

Added:

- Support for Scala 3.


## 1.1.1 - [2020-02-10]

Added:
Expand Down
2 changes: 1 addition & 1 deletion RELEASING.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
9 changes: 5 additions & 4 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -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 :=
<scm>
Expand Down

0 comments on commit 39f19f2

Please sign in to comment.