Skip to content

Commit

Permalink
Release v0.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
RustedBones committed Dec 20, 2020
1 parent 9f53479 commit 4d44b72
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -55,4 +55,4 @@ jobs:
run: sbt ++${{ matrix.scala }} scalafmtCheckAll headerCheckAll

- name: Build project
run: 'sbt ++${{ matrix.scala }} test it:test'
run: sbt ++${{ matrix.scala }} test
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@

## Unreleased

## 0.2.0 (2020-12-20)

- Improve Dns listen API and move DnsPacket to model
- Fix issue with multiple name ptrs in same message

## 0.1.0 (2020-12-17)
Expand Down
8 changes: 7 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ and [fs2](https://github.com/typelevel/fs2)

| Version | Release date | cats version | Scala versions |
| ------- | ------------ | ----------- | ------------------- |
| `0.2.0` | 2020-12-20 | `2.2.0` | `2.13.4`, `2.12.12` |
| `0.1.0` | 2020-12-17 | `2.2.0` | `2.13.4`, `2.12.12` |


Expand All @@ -32,7 +33,7 @@ libraryDependencies += "fr.davit" %% "taxonomy-model" % "<version>"
libraryDependencies += "fr.davit" %% "taxonomy-scodec" % "<version>"
```

## DNS
## Dns

Here is a quick example of a DNS lookup to the `9.9.9.9` DNS server for the `davit.fr` domain name

Expand Down Expand Up @@ -64,3 +65,8 @@ val socketResource = for {

val response = socketResource.use(s => Dns.resolve(s, DnsPacket(quad9DnsServer, query))).unsafeRunSync()
```

## Based on taxonomy

- [`scout`](https://github.com/RustedBones/scout): zeroconf DNS-SD client and server
- [`shovel`](https://github.com/RustedBones/shovel): A JVM dig implementation
4 changes: 2 additions & 2 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ lazy val filterScalacOptions = { options: Seq[String] =>
ThisBuild / crossScalaVersions := Seq("2.13.4", "2.12.12")
ThisBuild / githubWorkflowBuild := Seq(
WorkflowStep.Sbt(name = Some("Check project"), commands = List("scalafmtCheckAll", "headerCheckAll")),
WorkflowStep.Sbt( name = Some("Build project"), commands = List("test", "it:test"))
WorkflowStep.Sbt(name = Some("Build project"), commands = List("test"))
)
ThisBuild / githubWorkflowTargetBranches := Seq("master")
ThisBuild / githubWorkflowPublishTargetBranches := Seq.empty
Expand All @@ -24,7 +24,7 @@ lazy val commonSettings = Defaults.itSettings ++
Seq(
organization := "fr.davit",
organizationName := "Michel Davit",
version := "0.1.1-SNAPSHOT",
version := "0.2.0",
crossScalaVersions := (ThisBuild / crossScalaVersions).value,
scalaVersion := crossScalaVersions.value.head,
scalacOptions ~= filterScalacOptions,
Expand Down

0 comments on commit 4d44b72

Please sign in to comment.