sd-util
Changelog
we use Semantic Versioning
1.2.0
- support scala 2.13
- update libs:
- com.typesafe:config 1.3.2 -> 1.4.0 - same as in akka 2.6.1 & play 2.8.0
- common-codec 1.11 -> 1.13
- specs2 % Test 3.9.5 -> 4.8.1
- update sbt & sbt plugins
- make
sd.util.RandomIterHashSet
an alias toscala.collection.mutable.rnd.HashSet
- mv
rnd.HashSet.doSome
to a deprecated extension method for Iterable. Note:- break compatibility! now you need
import sd.util.DoSomeOps
before useaHashSet.doSome[U](count: Int, f: A => U)
- note
doSome
is now deprecated. Pls use.view.take(count).foreach(f)
- break compatibility! now you need
- add test specs for
rnd.HashSet
- a benchmark for
.doSome(count, f)
vs.take(count).foreach(f)
vs.view.take(count).foreach(f)
1.1.0
TODO
1.0.3
TODO
1.0.2
- update scala 2.12.4, 2.11.12
- update com.typesafe:config 1.3.2, commons-codec 1.11
- update sbt 1.0.1, sbt-coursier 1.0.0-RC13
1.0.1
- update scala 2.12.3, 2.11.11
- update sbt 1.0.1, sbt-sonatype 2.0, sbt-pgp 1.1.0, scalastyle-sbt-plugin 1.0.0
- use sbt-coursier 1.0.0-RC11
- move source code to github.com/ohze/sd-util
- update typesafe config 1.3.1
Licence
This software is licensed under the Apache 2 license: http://www.apache.org/licenses/LICENSE-2.0
Copyright 2014-2017 Sân Đình (http://sandinh.com)