Skip to content

Commit f2849ff

Browse files
Update README and CHANGELOG
1 parent 17c10f8 commit f2849ff

File tree

2 files changed

+25
-2
lines changed

2 files changed

+25
-2
lines changed

CHANGELOG.md

Lines changed: 24 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,28 @@ All notable changes to this project will be documented in this file.
44
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
55
and this project adheres to [Early Semantic Versioning](https://docs.scala-lang.org/overviews/core/binary-compatibility-for-library-authors.html#recommended-versioning-scheme) in addition to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
66

7+
## [0.5.0]
8+
9+
### Changed
10+
11+
* The plugin artifact is now published under the `org.typelevel` group ID. An artifact migration has been added to Scala Steward, so Scala Steward users should not have to update the artifact group ID manually.
12+
13+
* The project now makes use of the [scalac-options](https://github.com/typelevel/scalac-options) library, so symbols relating to scalac options and their availability on differing Scala versions have been moved to the package `org.typelevel.scalacoptions`.
14+
15+
* All other symbols provided by this plugin have been moved to the `org.typelevel.sbt.tpolecat` package.
16+
17+
* A Scalafix migration is available, and can be applied using the `github:` scheme, e.g.
18+
19+
```bash
20+
$ scalafix github:typelevel/sbt-tpolecat/v0_5?sha=v0.5.0
21+
```
22+
23+
or via the `dependency:` scheme, e.g.
24+
25+
```bash
26+
$ scalafix dependency:[email protected]::sbt-tpolecat-scalafix:0.5.0
27+
```
28+
729
## [0.4.4]
830

931
### Added
@@ -146,7 +168,8 @@ Please do not use this release - GitHub accepted a tag push but not its correspo
146168

147169
* The `validFor` function that was previously exported via this plugin's `autoImport`.
148170

149-
[Unreleased]: https://github.com/typelevel/sbt-tpolecat/compare/v0.4.4...HEAD
171+
[Unreleased]: https://github.com/typelevel/sbt-tpolecat/compare/v0.5.0...HEAD
172+
[0.5.0]: https://github.com/typelevel/sbt-tpolecat/compare/v0.4.4...v0.5.0
150173
[0.4.4]: https://github.com/typelevel/sbt-tpolecat/compare/v0.4.3...v0.4.4
151174
[0.4.3]: https://github.com/typelevel/sbt-tpolecat/compare/v0.4.2...v0.4.3
152175
[0.4.2]: https://github.com/typelevel/sbt-tpolecat/compare/v0.4.1...v0.4.2

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ As of version 0.1.11, it also supports setting options for Scala 3.x.
1515
Add the following to your project's `project/plugins.sbt`:
1616

1717
```scala
18-
addSbtPlugin("io.github.davidgregory084" % "sbt-tpolecat" % "0.4.4")
18+
addSbtPlugin("org.typelevel" % "sbt-tpolecat" % "0.4.4")
1919
```
2020

2121
Once you are using this plugin we recommend that you don't manipulate the `scalacOptions` key directly.

0 commit comments

Comments
 (0)