Skip to content

Commit

Permalink
Prepare 231.1.2 release
Browse files Browse the repository at this point in the history
  • Loading branch information
seclerp committed Apr 24, 2023
1 parent 1459973 commit c430d57
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 3 deletions.
8 changes: 7 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down Expand Up @@ -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
Expand Down
4 changes: 3 additions & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down
5 changes: 4 additions & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand All @@ -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

0 comments on commit c430d57

Please sign in to comment.