From 875b0cbc649e91eaec0cd9b01ef53e4c96645662 Mon Sep 17 00:00:00 2001 From: Wojciech Langiewicz Date: Mon, 27 May 2024 15:12:52 +0200 Subject: [PATCH] update readme, update dependencies --- .github/workflows/scala.yml | 4 ++-- README.md | 3 ++- build.sbt | 2 +- 3 files changed, 5 insertions(+), 4 deletions(-) diff --git a/.github/workflows/scala.yml b/.github/workflows/scala.yml index 16cff8e..39b460b 100644 --- a/.github/workflows/scala.yml +++ b/.github/workflows/scala.yml @@ -12,8 +12,8 @@ jobs: - name: Set up Java uses: actions/setup-java@v4 with: - distribution: temurin - java-version: 17.0.8 + distribution: oracle + java-version: 21 cache: sbt - name: Check format run: sbt scalafmtCheckAll diff --git a/README.md b/README.md index 7d4b138..a00b897 100644 --- a/README.md +++ b/README.md @@ -2,7 +2,7 @@ Collection of utilities to allow exposing prometheus metrics from pekko-http endpoint using the prometheus java client - "com.varwise" %% "prometheus-pekko-http" % "1.0.1" + "com.varwise" %% "prometheus-pekko-http" % "2.0.0" ### Related projects @@ -17,6 +17,7 @@ Here's the quick migration guide: 2. Supply `ExecutionContext` instance to `MetricsEndpoint`. For more information about Prometheus Java client library please refer to https://prometheus.github.io/client_java/. + ### Publishing Artifacts are published to Maven central using the [sbt-sonatype](https://github.com/xerial/sbt-sonatype) plugin diff --git a/build.sbt b/build.sbt index fe27244..b5f7ee1 100644 --- a/build.sbt +++ b/build.sbt @@ -6,7 +6,7 @@ publishTo := sonatypePublishToBundle.value version := "2.0.0" -val scala2Version = "2.13.13" +val scala2Version = "2.13.14" val scala3Version = "3.3.3" scalaVersion := scala3Version