From ed05a77f9cc336bd48045c399bfb31148523d11e Mon Sep 17 00:00:00 2001 From: Konrad Malawski Date: Wed, 31 Aug 2016 10:09:07 +0100 Subject: [PATCH] =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. --- project/Dependencies.scala | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/project/Dependencies.scala b/project/Dependencies.scala index 41eea28d4f..c5935a8b2f 100644 --- a/project/Dependencies.scala +++ b/project/Dependencies.scala @@ -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"