Skip to content

Commit

Permalink
Release v0.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
RustedBones committed Jan 13, 2021
1 parent fd49fb5 commit 22fbaa8
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
2 changes: 1 addition & 1 deletion build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down
6 changes: 3 additions & 3 deletions src/main/scala/fr/davit/scout/Zeroconf.scala
Original file line number Diff line number Diff line change
Expand Up @@ -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](
Expand Down Expand Up @@ -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]]
*/
Expand Down Expand Up @@ -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](
Expand Down

0 comments on commit 22fbaa8

Please sign in to comment.