Skip to content

Commit

Permalink
Update CHANGELOG and versions for 233 branch (#194)
Browse files Browse the repository at this point in the history
* Update CHANGELOG.md

* Update versions
  • Loading branch information
seclerp authored Sep 6, 2023
1 parent 583c809 commit 2550d57
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 5 deletions.
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,16 @@
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).

## [Unreleased]
### Added
- Terminal: "Execute in IDE" suggestion for known commands when executing `dotnet ef` from terminal (#188 by @alls-cpp)
- Common: Enable `Tools | Entity Framework Core` action group for solution's context menu

### Fixed
- Scaffold/Update: Inline connection strings definitions are not listed in autocompletion (#182)
- Scaffold/Update: Long connection strings from autocompleted items shrink dialog window (#183)
- Cosmetics: Old UI icons are used when New UI is enabled (#181 by @alls-cpp)

## [232.1.0] - 2023-08-03
### Added
- Enable support for Rider 2023.2
Expand Down
8 changes: 4 additions & 4 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ buildscript {
maven { setUrl("https://cache-redirector.jetbrains.com/maven-central") }
}
dependencies {
classpath("com.jetbrains.rd:rd-gen:2023.2.2")
classpath("com.jetbrains.rd:rd-gen:2023.3.0")
}
}

Expand All @@ -20,7 +20,7 @@ repositories {
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.1.2"
id("org.jetbrains.changelog") version "2.2.0"
// https://plugins.gradle.org/plugin/org.jetbrains.intellij
id("org.jetbrains.intellij") version "1.15.0"
id("org.jetbrains.kotlin.jvm") version "1.8.20"
Expand Down Expand Up @@ -226,8 +226,8 @@ tasks {
}

patchPluginXml {
sinceBuild.set("232.0")
untilBuild.set("232.*")
sinceBuild.set("233.0")
untilBuild.set("233.*")
val latestChangelog = try {
changelog.getUnreleased()
} catch (_: MissingVersionException) {
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ publishChannel=default
# Release: 2020.2
# Nightly: 2020.3-SNAPSHOT
# EAP: 2020.3-EAP2-SNAPSHOT
productVersion=2023.2
productVersion=2023.3-SNAPSHOT

# 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
Expand Down

0 comments on commit 2550d57

Please sign in to comment.