From 2063490ecd8dd9cac60b92feb74f14455c90755b Mon Sep 17 00:00:00 2001 From: kolotaev Date: Mon, 10 Feb 2020 21:07:17 +0300 Subject: [PATCH] Prepare for 1.1.1 release --- CHANGELOG.md | 13 +++++++++++++ build.sbt | 2 +- 2 files changed, 14 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 75de00a..20befd0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,19 @@ # Change Log +## 1.1.1 - [2020-02-10] + +Added: + +- Support for Scala 2.13. + +Changed: + +- `Id#equals` now uses `TraversableOnce#mkString` internally for comparison +instead of `ArrayLike#deep` which is removed from Scala 2.13. +This solves previous release (1.1.0) source-incompatibility with Scala 2.13. + + ## 1.1.0 - [2019-07-28] Added: diff --git a/build.sbt b/build.sbt index 82b5651..f9969bd 100644 --- a/build.sbt +++ b/build.sbt @@ -6,7 +6,7 @@ val SCALA_2_13 = "2.13.1" name := "ride" organization := s"com.github.$username" -version := "1.1.0" +version := "1.1.1" scalaVersion := SCALA_2_12 crossScalaVersions := Seq(SCALA_2_12, SCALA_2_13)