Skip to content

Releases: tabdulradi/mazboot

0.5.0

04 Nov 00:36
Compare
Choose a tag to compare

What's Changed

Full Changelog: v0.4.0...v0.5.0

0.4.0

04 Jul 13:27
Compare
Choose a tag to compare

Rebranding from Validated to Mazboot. Also cleanup of the imports

Migration:

In build.sbt replace:

  • "com.abdulradi" %% "validated-core" with "com.abdulradi" %% "mazboot-types"
  • "com.abdulradi" %% "validated-ciris" with "com.abdulradi" %% "mazboot-ciris"
  • "com.abdulradi" %% "validated-cats-parse" with "com.abdulradi" %% "mazboot-cats-parse"

In your Scala code replace:

  • Replace com.abdulradi.validated.types with mazboot
  • Replace com.abdulradi.validated.ciris with mazboot.integrations.ciris
  • Replace com.abdulradi.validated.cats.parse with mazboot.integrations.cats.parse
  • Replace com.abdulradi.validated with mazboot (make sure you completed all previous steps first)

Note: The built-in types are now in module "mazboot-types" while "mazboot-core" has been stripped down to only machanism to define new validations and types. You might want to use "mazboot-core" if all you do with Mazboot is defining your own validations.

0.3.0

11 Jun 03:04
Compare
Choose a tag to compare

Ciris Integration

0.2.0

11 Jun 01:41
Compare
Choose a tag to compare

Cats-Parse Integration

0.1.0

01 Jun 00:31
Compare
Choose a tag to compare

First Release. Including the improved "And" and "Or" encoding.