=pro update aeron to 1.0.1

Changes are https://github.com/real-logic/Aeron/releases/tag/1.0.1 :

> * Adjust incremental cleaning to avoid overwrite of cleaned log in loss scenarios to address Issue #271.
> * Correctly initialise cleaning position for late joining a stream. Issue #268.
> * Make clientLivenessTimeout configurable from Context.
> * Shadow samples into aeron-all JAR.
> * Support creating Agent threads via ThreadFactory to enable pinning.
> * Update to Agrona 0.5.4.
> * Update to ByteBuddy 1.4.20.
This commit is contained in:
Konrad Malawski 2016-08-31 10:09:07 +01:00 committed by GitHub
parent 3c4508d9b5
commit ed05a77f9c

View file

@ -76,8 +76,8 @@ object Dependencies {
// For Java 8 Conversions
val java8Compat = Def.setting {"org.scala-lang.modules" %% "scala-java8-compat" % java8CompatVersion.value} // Scala License
val aeronDriver = "io.aeron" % "aeron-driver" % "1.0" // ApacheV2
val aeronClient = "io.aeron" % "aeron-client" % "1.0" // ApacheV2
val aeronDriver = "io.aeron" % "aeron-driver" % "1.0.1" // ApacheV2
val aeronClient = "io.aeron" % "aeron-client" % "1.0.1" // ApacheV2
object Docs {
val sprayJson = "io.spray" %% "spray-json" % "1.3.2" % "test"