Skip to content

Commit 89ac7b0

Browse files
committed
Release v1.28.0
1 parent 71e3d5f commit 89ac7b0

2 files changed

Lines changed: 4 additions & 5 deletions

File tree

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,10 +51,10 @@ The focus of this project is minimalism and flexibility. To that end, the featur
5151
### Setup
5252

5353
For SBT simply include:
54-
`libraryDependencies += "org.typelevel" %%% "fabric-core" % "1.27.0"`
54+
`libraryDependencies += "org.typelevel" %%% "fabric-core" % "1.28.0"`
5555

5656
For parsing support include:
57-
`libraryDependencies += "org.typelevel" %%% "fabric-io" % "1.27.0"`
57+
`libraryDependencies += "org.typelevel" %%% "fabric-io" % "1.28.0"`
5858

5959
### Create
6060

core/shared/src/main/scala-2/fabric/rw/RWMacros.scala

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -211,9 +211,8 @@ object RWMacros {
211211
.filter(_.annotations.exists(_.tree.tpe =:= typeOf[notSerialized]))
212212
.map(_.asTerm.name.decodedName.toString)
213213
.toSet
214-
val fieldDefs = fields
215-
.filterNot(field => transientNames.contains(field.asTerm.name.decodedName.toString))
216-
.map { field =>
214+
val fieldDefs =
215+
fields.filterNot(field => transientNames.contains(field.asTerm.name.decodedName.toString)).map { field =>
217216
val name = field.asTerm.name
218217
val key = name.decodedName.toString
219218
val returnType = tpe.decl(name).typeSignature.asSeenFrom(tpe, tpe.typeSymbol.asClass)

0 commit comments

Comments
 (0)