From 22fbaa857c35cad3e64bc47f793b9098b37ee79f Mon Sep 17 00:00:00 2001 From: Michel Davit Date: Wed, 13 Jan 2021 22:15:14 +0100 Subject: [PATCH] Release v0.1.0 --- README.md | 2 +- build.sbt | 2 +- src/main/scala/fr/davit/scout/Zeroconf.scala | 6 +++--- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index bf3059e..7b99f6f 100644 --- a/README.md +++ b/README.md @@ -10,7 +10,7 @@ Zeroconf for scala (multicast DNS service discovery) | Version | Release date | cats version | Scala versions | | ------- | ------------ | ----------- | ------------------- | -| `0.1.0` | ??? | `2.2.0` | `2.13.4`, `2.12.12` | +| `0.1.0` | 2021-01-13 | `2.2.0` | `2.13.4`, `2.12.12` | ## Getting scout diff --git a/build.sbt b/build.sbt index ddbab78..cf06cb7 100644 --- a/build.sbt +++ b/build.sbt @@ -23,7 +23,7 @@ lazy val commonSettings = Defaults.itSettings ++ Seq( organization := "fr.davit", organizationName := "Michel Davit", - version := "0.1.0-SNAPSHOT", + version := "0.1.0", crossScalaVersions := (ThisBuild / crossScalaVersions).value, scalaVersion := crossScalaVersions.value.head, scalacOptions ~= filterScalacOptions, diff --git a/src/main/scala/fr/davit/scout/Zeroconf.scala b/src/main/scala/fr/davit/scout/Zeroconf.scala index 42101f9..d14e757 100644 --- a/src/main/scala/fr/davit/scout/Zeroconf.scala +++ b/src/main/scala/fr/davit/scout/Zeroconf.scala @@ -93,7 +93,7 @@ object Zeroconf { /** * Creates the [[java.net.Socket]] resource bound on 224.0.0.251:5353 * listening for multicast messages - * @param interface Network interface. Will use the [[defaultNetworkInterface]] if not provided + * @param interface Network interface. Will use the default NetworkInterface if not provided * @return Multicast socket */ private[scout] def localMulticastSocket[F[_]: Concurrent: ContextShift]( @@ -122,7 +122,7 @@ object Zeroconf { /** * Periodically scans for [[Instance]] of the desired [[Service]]. * @param service [[Service]] definition - * @param interface Network interface. Will use the [[defaultNetworkInterface]] if not provided + * @param interface Network interface. Will use the default NetworkInterface if not provided * @param nextDelay Applied to the previous delay to compute the next, e.g. to implement exponential backoff * @return Stream of [[Instance]] */ @@ -186,7 +186,7 @@ object Zeroconf { /** * Register a [[Service]] [[Instance]] to be discovered with DNS-SD * @param instance [[Instance]] to be discovered - * @param interface Network interface. Will use the [[defaultNetworkInterface]] if not provided + * @param interface Network interface. Will use the default NetworkInterface if not provided * @param ttl Time to live of the DNS records */ def register[F[_]: Concurrent: ContextShift: Timer](