From c430d57df143cf5c4689087b13126533375438e6 Mon Sep 17 00:00:00 2001 From: Andrii Rublov Date: Mon, 24 Apr 2023 13:23:09 +0200 Subject: [PATCH] Prepare `231.1.2` release --- CHANGELOG.md | 8 +++++++- build.gradle.kts | 4 +++- gradle.properties | 5 ++++- 3 files changed, 14 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 824af45d..1105d853 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,11 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [231.1.2] - 2023-04-24 +### Fixed +- Connections: Exception when having `.json` files with single quotes (#159) +- Common: Solution Explorer view is not updating after action execution (#160) + ## [231.1.1] - 2023-04-10 ### Fixed - Connections: Exception when having `.json` files with comments (#158) @@ -174,7 +179,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Suggesting installing dotnet `ef command` line tools if not installed (when opening solution that contains EF Core related projects) - Deleting used database -[Unreleased]: https://github.com/seclerp/rider-efcore/compare/v231.1.1...HEAD +[Unreleased]: https://github.com/seclerp/rider-efcore/compare/v231.1.2...HEAD +[231.1.2]: https://github.com/seclerp/rider-efcore/compare/v231.1.1...v231.1.2 [231.1.1]: https://github.com/seclerp/rider-efcore/compare/v231.1.0...v231.1.1 [231.1.0]: https://github.com/seclerp/rider-efcore/compare/v231.0.2-eap04...v231.1.0 [231.0.2-eap04]: https://github.com/seclerp/rider-efcore/compare/v231.0.1-eap01...v231.0.2-eap04 diff --git a/build.gradle.kts b/build.gradle.kts index 4fccc665..3a3cc8dd 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -16,9 +16,11 @@ buildscript { plugins { id("me.filippov.gradle.jvm.wrapper") version "0.14.0" + // https://plugins.gradle.org/plugin/org.jetbrains.changelog id("org.jetbrains.changelog") version "2.0.0" + // https://plugins.gradle.org/plugin/org.jetbrains.intellij id("org.jetbrains.intellij") version "1.13.3" - id("org.jetbrains.kotlin.jvm") version "1.7.20" + id("org.jetbrains.kotlin.jvm") version "1.8.20" } apply { diff --git a/gradle.properties b/gradle.properties index dd6cbdff..824cdcff 100644 --- a/gradle.properties +++ b/gradle.properties @@ -4,7 +4,7 @@ javaVersion=17 dotnetPluginId=Rider.Plugins.EfCore riderPluginId=me.seclerp.rider.plugins.efcore -pluginVersion=231.1.1 +pluginVersion=231.1.2 buildConfiguration=Debug @@ -20,3 +20,6 @@ productVersion=2023.1 # Kotlin 1.4 will bundle the stdlib dependency by default, causing problems with the version bundled with the IDE # https://blog.jetbrains.com/kotlin/2020/07/kotlin-1-4-rc-released/#stdlib-default kotlin.stdlib.default.dependency=false + +# Fix for OOM on :compileKotlin +org.gradle.jvmargs=-Xmx4g -Xms1g \ No newline at end of file