Skip to content

Commit 697a782

Browse files
committed
chore: bump scala from 3.7.0 to 3.7.1 and sbt from 1.10.11 to 1.11.3
1 parent 7fd7348 commit 697a782

6 files changed

Lines changed: 10 additions & 10 deletions

File tree

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
matrix:
1919
os: [ubuntu-22.04]
2020
java: [21]
21-
scala: [3.7.0]
21+
scala: [3.7.1]
2222
fail-fast: false
2323
steps:
2424
- name: Checkout
@@ -61,7 +61,7 @@ jobs:
6161
matrix:
6262
os: [ubuntu-22.04]
6363
java: [21]
64-
scala: [3.7.0]
64+
scala: [3.7.1]
6565
fail-fast: false
6666
steps:
6767
- name: Checkout

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,8 +30,8 @@ An example architecture.
3030

3131
## Requirements
3232

33-
* sbt 1.10.x
34-
* Scala 3.6.x
33+
* sbt 1.11.x
34+
* Scala 3.7.x
3535
* Java 21.x, 17.x (Perhaps works with 11.x)
3636
* MariaDB 11.4.x
3737
* docker & docker-compose 3.x (for test)

build.sbt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import LocalProcesses.*
55
organization := "net.yoshinorin"
66
name := "qualtet"
77
version := "v2.17.0"
8-
scalaVersion := "3.7.0"
8+
scalaVersion := "3.7.1"
99
val repository = "https://github.com/yoshinorin/qualtet"
1010

1111
scalacOptions ++= Seq(

docker/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Builder image
2-
FROM ghcr.io/yoshinorin/docker-sbt:v1.10.11-scala3.7.0-jdk21 as builder
2+
FROM ghcr.io/yoshinorin/docker-sbt:v1.11.3-scala3.7.1-jdk21 as builder
33

44
LABEL maintainer="yoshinorin"
55
ENV QUALTET_VERSION="v2.17.0"
@@ -16,7 +16,7 @@ COPY commit-hash.sh commit-hash.sh
1616

1717
RUN sh commit-hash.sh \
1818
&& sbt assembly exit \
19-
&& cp ./target/scala-3.7.0/qualtet-assembly-${QUALTET_VERSION}.jar qualtet-assembly.jar
19+
&& cp ./target/scala-3.7.1/qualtet-assembly-${QUALTET_VERSION}.jar qualtet-assembly.jar
2020

2121

2222
# Runtime image

docs/rest-api/components/schemas/response/applicationInfo.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,10 +36,10 @@ properties:
3636
example: "https://github.com/yoshinorin/qualtet/commit/237856f"
3737
scalaVersion:
3838
type: string
39-
example: "3.7.0"
39+
example: "3.7.1"
4040
sbtVersion:
4141
type: string
42-
example: "1.10.11"
42+
example: "1.11.3"
4343
required:
4444
- commit
4545
- url

project/build.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
sbt.version=1.10.11
1+
sbt.version=1.11.3

0 commit comments

Comments
 (0)