Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Delete direct modules in favor of consumer-side module management #225

Merged
merged 1 commit into from
Oct 10, 2023

Conversation

blast-hardcheese
Copy link
Member

With direct module dependencies, scala-steward can bump individual modules using a semver strategy instead of a monolithic version number obscuring actual changes under the hood.

Instead of

addSbtPlugin("dev.guardrail" % "sbt-guardrail" % "0.75.2")

add the explicit modules you need:

addSbtPlugin("dev.guardrail" % "sbt-guardrail" % "1.0.0")
libraryDependencies += "dev.guardrail" %% "guardrail-scala-support" % "1.0.0"
libraryDependencies += "dev.guardrail" %% "guardrail-scala-http4s" % "1.0.0"

This should save CI cycles since you'll only get version bumps for code you actually use.

@blast-hardcheese blast-hardcheese merged commit 192c0fa into master Oct 10, 2023
3 checks passed
@blast-hardcheese blast-hardcheese deleted the delete-direct-modules branch October 10, 2023 18:29
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

1 participant