Skip to content

Commit

Permalink
Release v1.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
RustedBones committed Dec 12, 2020
1 parent 6776143 commit ca3a0e0
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 7 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,13 @@

## Unreleased

## 1.4.0 (2020-12-12)

- Split HttpMetricsHandler API with separated callbacks
- Add requests failures counter for unserved requests
- Compute sizes and durations metrics on end of entity stream
- Remove deprecated API

## 1.3.0 (2020-11-09)

- Fix Metrics BidiFlow closing
Expand Down
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ The following implementations are supported:

| Version | Release date | Akka Http version | Scala versions |
| ------- | ------------ | ----------------- | ------------------- |
| `1.4.0` | 2020-12-12 | `10.2.2` | `2.13.4`, `2.12.12` |
| `1.3.0` | 2020-11-09 | `10.2.1` | `2.13.3`, `2.12.12` |
| `1.2.0` | 2020-08-29 | `10.2.0` | `2.13.3`, `2.12.12` |
| `1.1.1` | 2020-06-10 | `10.1.12` | `2.13.2`, `2.12.11` |
Expand Down
4 changes: 2 additions & 2 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ lazy val filterScalacOptions = { options: Seq[String] =>
}

// for sbt-github-actions
ThisBuild / crossScalaVersions := Seq("2.13.3", "2.12.12")
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"))
Expand All @@ -23,7 +23,7 @@ lazy val commonSettings = Defaults.itSettings ++
Seq(
organization := "fr.davit",
organizationName := "Michel Davit",
version := "1.4.0-SNAPSHOT",
version := "1.4.0",
crossScalaVersions := (ThisBuild / crossScalaVersions).value,
scalaVersion := crossScalaVersions.value.head,
scalacOptions ~= filterScalacOptions,
Expand Down
10 changes: 5 additions & 5 deletions project/Dependencies.scala
Original file line number Diff line number Diff line change
Expand Up @@ -4,15 +4,15 @@ object Dependencies {

object Versions {
val akka = "2.6.10"
val akkaHttp = "10.2.1"
val datadog = "2.10.3"
val akkaHttp = "10.2.2"
val datadog = "2.10.5"
val dropwizard = "5.0.0"
val enumeratum = "1.6.1"
val logback = "1.2.3"
val prometheus = "0.9.0"
val scalaCollectionCompat = "2.2.0"
val scalaMock = "5.0.0"
val scalaTest = "3.2.2"
val scalaCollectionCompat = "2.3.1"
val scalaMock = "5.1.0"
val scalaTest = "3.2.3"
}

val akkaHttp = "com.typesafe.akka" %% "akka-http" % Versions.akkaHttp
Expand Down

0 comments on commit ca3a0e0

Please sign in to comment.