Skip to content

Commit

Permalink
Release v1.10.3
Browse files Browse the repository at this point in the history
  • Loading branch information
darkfrog26 committed Feb 28, 2023
1 parent 6f96395 commit 70790d7
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 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.10.2"`
`libraryDependencies += "org.typelevel" %%% "fabric-core" % "1.10.3"`

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

### Create

Expand Down
2 changes: 1 addition & 1 deletion core/shared/src/test/scala/spec/gen/Record.scala
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ package spec.gen

import fabric.rw._
import org.scalacheck.Arbitrary
import org.scalacheck.Arbitrary.{arbBool, arbByte, arbDouble, arbFloat, arbInt, arbLong, arbOption, arbShort, arbString, arbitrary}
import org.scalacheck.Arbitrary.{arbBool, arbByte, arbDouble, arbFloat, arbInt, arbitrary, arbLong, arbOption, arbShort, arbString}
import spec.gen.Structure.arbitraryStructure

final case class Record(
Expand Down
2 changes: 1 addition & 1 deletion io/shared/src/main/scala/fabric/io/JacksonParser.scala
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@

package fabric.io

import com.fasterxml.jackson.core.{JsonFactory, JsonToken, JsonParser => JParser}
import com.fasterxml.jackson.core.{JsonFactory, JsonParser => JParser, JsonToken}
import fabric.{Arr, Bool, Json, Null, NumDec, NumInt, Obj, Str}

import scala.annotation.tailrec
Expand Down

0 comments on commit 70790d7

Please sign in to comment.