Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: xerial/sbt-sonatype
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v3.9.15
Choose a base ref
...
head repository: xerial/sbt-sonatype
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v3.9.16
Choose a head ref
  • 11 commits
  • 8 files changed
  • 3 contributors

Commits on Nov 24, 2022

  1. Verified

    This commit was signed with the committer’s verified signature.
    joyeecheung Joyee Cheung
    Copy the full SHA
    d450859 View commit details

Commits on Dec 2, 2022

  1. Verified

    This commit was signed with the committer’s verified signature.
    joyeecheung Joyee Cheung
    Copy the full SHA
    0152e8f View commit details
  2. Add release drafter

    xerial committed Dec 2, 2022
    Copy the full SHA
    830196e View commit details

Commits on Dec 6, 2022

  1. Verified

    This commit was signed with the committer’s verified signature.
    aduh95 Antoine du Hamel
    Copy the full SHA
    a14745b View commit details
  2. Verified

    This commit was signed with the committer’s verified signature.
    aduh95 Antoine du Hamel
    Copy the full SHA
    ecd5c44 View commit details

Commits on Dec 18, 2022

  1. Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature.
    Copy the full SHA
    9e0fe20 View commit details

Commits on Dec 31, 2022

  1. Verified

    This commit was signed with the committer’s verified signature.
    aduh95 Antoine du Hamel
    Copy the full SHA
    439ccf3 View commit details

Commits on Jan 18, 2023

  1. Verified

    This commit was signed with the committer’s verified signature.
    aduh95 Antoine du Hamel
    Copy the full SHA
    ca652e5 View commit details

Commits on Jan 19, 2023

  1. Update scalafmt-core to 3.7.0 (#355)

    * Update scalafmt-core to 3.7.0
    
    * Reformat with scalafmt 3.7.0
    
    Executed command: scalafmt --non-interactive
    
    * Add 'Reformat with scalafmt 3.7.0' to .git-blame-ignore-revs
    xerial-bot authored Jan 19, 2023

    Verified

    This commit was signed with the committer’s verified signature.
    aduh95 Antoine du Hamel
    Copy the full SHA
    3a6a15e View commit details

Commits on Jan 26, 2023

  1. Copy the full SHA
    d58d7bf View commit details
  2. Copy the full SHA
    ce11cfc View commit details
Showing with 90 additions and 5 deletions.
  1. +2 −0 .git-blame-ignore-revs
  2. +52 −0 .github/release-drafter.yml
  3. +31 −0 .github/workflows/release-drafter.yml
  4. +1 −1 .scalafmt.conf
  5. +1 −1 build.sbt
  6. +2 −2 project/plugins.sbt
  7. +0 −1 sonatype.sbt
  8. +1 −0 version.sbt
2 changes: 2 additions & 0 deletions .git-blame-ignore-revs
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
# Scala Steward: Reformat with scalafmt 3.7.0
c3efd683f835329e057719c1f2ededac55589933
52 changes: 52 additions & 0 deletions .github/release-drafter.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,52 @@
name-template: 'v$RESOLVED_VERSION'
tag-template: 'v$RESOLVED_VERSION'
categories:
- title: '🔥 Breaking Changes'
labels:
- 'breaking'
- title: '🚀 Features'
labels:
- 'feature'
- 'enhancement'
- title: '🐛 Bug Fixes'
labels:
- 'bug'
- title: '👋 Deprecated'
labels:
- 'deprecation'
- title: '🔗 Dependency Updates'
labels:
- 'library-update'
- 'dependencies'
- title: '🛠 Internal Updates'
labels:
- 'internal'
- 'kaizen'
- 'test-library-update'
- 'sbt-plugin-update'
- title: '📚 Docs'
labels:
- 'doc'
change-template: '- $TITLE @$AUTHOR (#$NUMBER)'

template: |
## What's Changed
$CHANGES
**Full Changelog**: https://github.com/$OWNER/$REPOSITORY/compare/$PREVIOUS_TAG...v$RESOLVED_VERSION
autolabeler:
- label: 'doc'
files:
- '*.md'
- label: 'bug'
title:
- '/fix/i'
- label: 'internal'
title:
- '/internal/i'
- label: 'deprecation'
title:
- '/deprecate/i'
31 changes: 31 additions & 0 deletions .github/workflows/release-drafter.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
name: Release Drafter

on:
push:
branches:
- master
# pull_request event is required only for autolabeler
pull_request:
# Only following types are handled by the action, but one can default to all as well
types: [opened, reopened, synchronize]
# pull_request_target event is required for autolabeler to support PRs from forks
pull_request_target:
types: [opened, reopened, synchronize]

permissions:
contents: read

jobs:
update_release_draft:
permissions:
# write permission is required to create a github release
contents: write
# write permission is required for autolabeler
# otherwise, read permission is required at least
pull-requests: write
runs-on: ubuntu-latest
steps:
# Drafts your next Release notes as Pull Requests are merged into "master"
- uses: release-drafter/release-drafter@v5
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
2 changes: 1 addition & 1 deletion .scalafmt.conf
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
version = 3.6.1
version = 3.7.1
project.layout = StandardConvention
runner.dialect = scala212
maxColumn = 120
2 changes: 1 addition & 1 deletion build.sbt
Original file line number Diff line number Diff line change
@@ -35,7 +35,7 @@ lazy val buildSettings: Seq[Setting[_]] = Seq(
}
)

val AIRFRAME_VERSION = "22.11.4"
val AIRFRAME_VERSION = "23.1.4"

// Project modules
lazy val sbtSonatype =
4 changes: 2 additions & 2 deletions project/plugins.sbt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
val SONATYPE_VERSION = sys.env.getOrElse("SONATYPE_VERSION", "3.9.14")
val SONATYPE_VERSION = sys.env.getOrElse("SONATYPE_VERSION", "3.9.15")
addSbtPlugin("org.xerial.sbt" % "sbt-sonatype" % SONATYPE_VERSION)
addSbtPlugin("com.github.sbt" % "sbt-pgp" % "2.2.0")
addSbtPlugin("com.github.sbt" % "sbt-pgp" % "2.2.1")
addSbtPlugin("org.scalameta" % "sbt-scalafmt" % "2.5.0")
addSbtPlugin("com.dwijnand" % "sbt-dynver" % "4.1.1")

1 change: 0 additions & 1 deletion sonatype.sbt
Original file line number Diff line number Diff line change
@@ -12,4 +12,3 @@ licenses := Seq("APL2" -> url("http://www.apache.org/licenses/LICENSE-2.0.txt"))
publishTo := sonatypePublishToBundle.value

//sonatypeLogLevel := "DEBUG"

1 change: 1 addition & 0 deletions version.sbt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@