Skip to content

Commit

Permalink
Merge pull request #275 from Kevin-Lee/prepare-to-release
Browse files Browse the repository at this point in the history
extras v0.25.0
  • Loading branch information
kevin-lee authored Nov 20, 2022
2 parents d7d68ee + 1a24f42 commit a925345
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions changelogs/0.25.0.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
## [0.25.0](https://github.com/Kevin-Lee/extras/issues?utf8=%E2%9C%93&q=is%3Aissue+is%3Aclosed+-label%3Ainvalid+milestone%3Amilestone26) - 2022-11-20

## New Feature
### extras-type-info
* [`extras-type-info`] Release `extras-type-info` (#273)
```scala
sealed trait Aaa
object Aaa {
final case class Bbb(n: Int) extends Aaa
case object Ccc extends Aaa

def bbb(n: Int): Aaa = Bbb(n)
def ccc: Aaa = Ccc
}

final case class Something[A](a: A)

Aaa.bbb(123).nestedClassName
// Aaa.Bbb

Aaa.ccc.nestedTypeName
// Aaa.Ccc
```
It was supposed to be released in `0.24.0` but wasn't included by mistake.

0 comments on commit a925345

Please sign in to comment.