Skip to content

Commit

Permalink
Release v1.12.1
Browse files Browse the repository at this point in the history
  • Loading branch information
darkfrog26 committed Jun 27, 2023
1 parent 4e9f892 commit 4b84dc3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 8 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -46,10 +46,10 @@ The focus of this project is minimalism and flexibility. To that end, the featur
### Setup

For SBT simply include:
`libraryDependencies += "org.typelevel" %%% "fabric-core" % "1.12.0"`
`libraryDependencies += "org.typelevel" %%% "fabric-core" % "1.12.1"`

For parsing support include:
`libraryDependencies += "org.typelevel" %%% "fabric-io" % "1.12.0"`
`libraryDependencies += "org.typelevel" %%% "fabric-io" % "1.12.1"`

### Create

Expand Down
6 changes: 0 additions & 6 deletions core/shared/src/main/scala/fabric/rw/RWImplicits.scala
Original file line number Diff line number Diff line change
Expand Up @@ -127,12 +127,6 @@ trait RWImplicits {
DefType.Arr(implicitly[RW[V]].definition)
)

implicit def arrayRW[V: RW]: RW[Array[V]] = from[Array[V]](
v => Arr(v.map(_.json).toVector),
v => v.asVector.map(_.as[V]).toArray,
DefType.Arr(implicitly[RW[V]].definition)
)

implicit def setRW[V: RW]: RW[Set[V]] = from[Set[V]](
v => Arr(v.map(_.json).toVector),
{
Expand Down

0 comments on commit 4b84dc3

Please sign in to comment.