From ad33862c98358afbb7b91331680dc6fceda8b817 Mon Sep 17 00:00:00 2001 From: Matt Hicks Date: Fri, 23 Aug 2024 14:00:49 -0500 Subject: [PATCH] Release 0.5.12 --- build.sbt | 2 +- .../undertow/src/test/scala/spec/UndertowServerSpec.scala | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/build.sbt b/build.sbt index 270ce36..28391f2 100644 --- a/build.sbt +++ b/build.sbt @@ -1,6 +1,6 @@ name := "spice" ThisBuild / organization := "com.outr" -ThisBuild / version := "0.5.12-SNAPSHOT1" +ThisBuild / version := "0.5.12" val scala213: String = "2.13.14" diff --git a/server/implementation/undertow/src/test/scala/spec/UndertowServerSpec.scala b/server/implementation/undertow/src/test/scala/spec/UndertowServerSpec.scala index e490a08..fdbc060 100644 --- a/server/implementation/undertow/src/test/scala/spec/UndertowServerSpec.scala +++ b/server/implementation/undertow/src/test/scala/spec/UndertowServerSpec.scala @@ -118,11 +118,11 @@ class UndertowServerSpec extends AsyncWordSpec with AsyncIOSpec with Matchers { testServer.config .clearListeners() .addListeners(HttpServerListener(port = None)) - .addListeners(HttpServerListener(port = Some(8181))) + .addListeners(HttpServerListener(port = Some(8282))) testServer.start().flatMap { _ => testServer.config.listeners().head.port should not be None - testServer.config.listeners().head.port should not be Some(8181) - testServer.config.listeners().last.port should be(Some(8181)) + testServer.config.listeners().head.port should not be Some(8282) + testServer.config.listeners().last.port should be(Some(8282)) testServer.stop() } }