Skip to content

Commit e527466

Browse files
committed
v1.0.12 - Update dependencies + IntellIJ build settings
1 parent f4cfeaf commit e527466

File tree

4 files changed

+9
-9
lines changed

4 files changed

+9
-9
lines changed

code4me-jetbrains-plugin/CHANGELOG.md

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,13 @@
33
# Code4Me Changelog
44

55
## [Unreleased]
6+
### Changed
7+
- Update build configurations
68

79
## [1.0.11]
8-
### Changed
9-
- Allowing storing of context
10-
- Increase max context length
10+
### Changed
11+
- Allowing storing of context
12+
- Increase max context length
1113
- Fixed redundant bracket when completing
1214

1315
## [1.0.10]

code4me-jetbrains-plugin/build.gradle.kts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ plugins {
66
// Java support
77
id("java")
88
// Gradle IntelliJ Plugin
9-
id("org.jetbrains.intellij") version "1.6.0"
9+
id("org.jetbrains.intellij") version "1.9.0"
1010
// Gradle Changelog Plugin
1111
id("org.jetbrains.changelog") version "1.3.1"
1212
}
@@ -51,7 +51,6 @@ tasks {
5151
patchPluginXml {
5252
version.set(properties("pluginVersion"))
5353
sinceBuild.set(properties("pluginSinceBuild"))
54-
untilBuild.set(properties("pluginUntilBuild"))
5554

5655
// Extract the <!-- Plugin description --> section from README.md and provide for the plugin's manifest
5756
pluginDescription.set(

code4me-jetbrains-plugin/gradle.properties

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,11 @@
44
pluginGroup = me.code4me.plugin
55
pluginName = Code4Me
66
# SemVer format -> https://semver.org
7-
pluginVersion = 1.0.11
7+
pluginVersion = 1.0.12
88

99
# See https://plugins.jetbrains.com/docs/intellij/build-number-ranges.html
1010
# for insight into build numbers and IntelliJ Platform versions.
1111
pluginSinceBuild = 212
12-
pluginUntilBuild = 221.*
1312

1413
# IntelliJ Platform Properties -> https://github.com/JetBrains/gradle-intellij-plugin#intellij-platform-properties
1514
platformType = PY
@@ -23,7 +22,7 @@ platformPlugins =
2322
javaVersion = 11
2423

2524
# Gradle Releases -> https://github.com/gradle/gradle/releases
26-
gradleVersion = 7.4.2
25+
gradleVersion = 7.5.1
2726

2827
# Opt-out flag for bundling Kotlin standard library.
2928
# See https://plugins.jetbrains.com/docs/intellij/kotlin.html#kotlin-standard-library for details.
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
distributionBase=GRADLE_USER_HOME
22
distributionPath=wrapper/dists
3-
distributionUrl=https\://services.gradle.org/distributions/gradle-7.4.2-bin.zip
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-7.5.1-bin.zip
44
zipStoreBase=GRADLE_USER_HOME
55
zipStorePath=wrapper/dists

0 commit comments

Comments
 (0)