From 4c1c4a65a7c9b07922ad2c506855b1938e888100 Mon Sep 17 00:00:00 2001 From: Julian Mendez Date: Sat, 1 Jul 2023 23:02:16 +0200 Subject: [PATCH] Update version to 0.19.0 --- .github/workflows/ci.yml | 4 ++-- build.sbt | 6 +++--- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 74ab0e9a..9b14c3cc 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -18,8 +18,8 @@ jobs: - 17 scala: - 2.11.12 - - 2.12.17 - - 2.13.10 + - 2.12.18 + - 2.13.11 - 3.3.0 steps: - name: Check out diff --git a/build.sbt b/build.sbt index a16ab5b0..2b1ee2a3 100644 --- a/build.sbt +++ b/build.sbt @@ -2,16 +2,16 @@ import sbt.Keys.scalacOptions lazy val scala2_11 = "2.11.12" -lazy val scala2_12 = "2.12.17" +lazy val scala2_12 = "2.12.18" -lazy val scala2_13 = "2.13.10" +lazy val scala2_13 = "2.13.11" lazy val scala3_3 = "3.3.0" lazy val commonSettings = Seq( organization := "se.umu.cs.rai.soda", - version := "0.19.0-SNAPSHOT", + version := "0.19.0", description := "Object-oriented functional language to describe, analyze, and model human-centered problems", homepage := Some(url("https://julianmendez.github.io/soda/")), startYear := Some(2020),