Skip to content
This repository has been archived by the owner on May 3, 2019. It is now read-only.

Releases

Michael Pilquist edited this page Jan 10, 2015 · 1 revision

Versioning and Binary Compatibility

All scodec projects adhere to the Typelevel binary compatibility guidelines. In short, all releases that share the same x.y version number are binary compatible.

Releases

The following table lists all releases of scodec-scalaz, along with compatible version ranges for each of its dependencies.

Version Change Log ScalaDoc Scala scodec-bits scalaz
1.0.0-SNAPSHOT N/A N/A 2.10, 2.11 1.7.0-SNAPSHOT [7.1,7.2)

Binaries

scodec-scalaz is published to Maven Central under the org.scodec group id and scodec-scalaz artifact id. The artifact is cross published for various Scala versions.

For SBT users:

libraryDependencies += "org.typelevel" %% "scodec-scalaz" % "1.0.0"

For Maven users:

<dependencies>
  <dependency>
    <groupId>org.scodec</groupId>
    <artifactId>scodec-scalaz_2.11</artifactId>
    <version>1.0.0</version>
  </dependency>
</dependencies>

Snapshots

Snapshot builds of the master branch are available on Sonatype's OSS hosting at https://oss.sonatype.org/content/repositories/snapshots/.

For SBT users:

resolvers += Resolver.sonatypeRepo("snapshots")

libraryDependencies += "org.typelevel" %% "scodec-scalaz" % "1.0.0-SNAPSHOT"
Clone this wiki locally