Just staged on Sonatype:
"org.scalaz" %% "scalaz-core" % "7.0.1"
for Scala binary versions 2.9.2, 2.9.3 and 2.10.
This is a maintenance release for the 7.0.x series. It's a drop-in
replacement for 7.0.0 which is fully binary backwards compatible (tested
with MiMa)!
That means: Libraries compiled against 7.0.0 will continue to work
(without recompilation) with version 7.0.1. However, the inverse
direction is not supported.
Please give this release a spin, since this is the first time we (the
scalaz team) are doing that sort of thing. It's as easy as changing the
versions of all the scalaz artifacts in your build from "7.0.0" to "7.0.1".
This release contains numerous bugfixes, but also some new features.
Please refer to the release notes at the end of this mail for a full list.
***
The full list of published submodules is available with this Nexus search:
<
https://oss.sonatype.org/index.html#nexus-search;gav~org.scalaz~~7.0.1~~>
***
RELEASE NOTES
New features
* Show instance for java.lang.Throwable, needs to be imported explicitly
* runM method on Free for running it in another monad
* mapM method on StreamT, threads a per-element monadic effect through
the stream
* fix utility function as a proper replacement for Endo#fix
Changed features
* override foldMap1 in NonEmptyList to avoid StackOverflowError
* fix Equal[Map[K, V]] instance
* fix Index[IndexedSeq] and Index[List]
* prevent evaluating second parameter in Option's Semigroup twice
* fix composition of ApplicativePlus which violated the laws, new
implementation identical to Haskell implementation
* change name of ToIdOps to ToEffectIdOps to avoid naming collisions
* fix Comonad[Function1] instance
* performance optimization: toList method on Foldable[List] is now
identity, and similarly for IndexedSeq, Set and Stream
* actors: clearing of last processed message from tail node to avoid
memory leaks
* fix infinite loop in EphemeralStream#traverse
* performance: less object allocations
* fix += method on NumericPLens
* put Cofree instances into implicit scope
<
https://github.com/scalaz/scalaz/wiki/7.0.1>