Skip to content

Commit

Permalink
Add support for IntelliJ 2023.3. Remove upper bound on supported IJ v…
Browse files Browse the repository at this point in the history
…ersions for now.
  • Loading branch information
albertoventurini committed Dec 13, 2023
1 parent f9fe9e5 commit d081b13
Show file tree
Hide file tree
Showing 6 changed files with 13 additions and 7 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,11 @@ All notable changes to this project will be documented in this file.
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).

## [0.8.0]

### Added
- Support for IntelliJ 2023.3

## [0.6.2]

### Added
Expand Down
4 changes: 2 additions & 2 deletions gradle.properties
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
version=0.7.0
version=0.8.0

# Intellij SDK
intellijSdkVersion=2023.2
intellijSdkVersion=2023.3

# Versions
versionGradleIntelliJ=1.15.0
Expand Down
3 changes: 2 additions & 1 deletion graph-database-plugin/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,8 @@ intellij {
// See https://plugins.jetbrains.com/docs/intellij/configuring-plugin-project.html#patching-the-plugin-configuration-file
patchPluginXml {
sinceBuild = "223.0"
untilBuild = "232.*"
//untilBuild = "233.*"
untilBuild = "999.0"

def allChanges = {
changelog.getAll().values()
Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
updater.title=Graph Database plugin updated to v{0}
updater.notification=\
Support IntelliJ 2023.2
Support IntelliJ 2023.3
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,8 @@
import java.awt.*;
import java.util.Map;

import static org.apache.commons.lang.exception.ExceptionUtils.getCause;
import static org.apache.commons.lang.exception.ExceptionUtils.getStackTrace;
import static org.codehaus.plexus.util.ExceptionUtils.getCause;
import static org.codehaus.plexus.util.ExceptionUtils.getStackTrace;

public class LogPanel implements Disposable {
private static final String SHOW_DETAILS = "Details...";
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
import java.awt.*;
import java.util.Optional;

import static org.apache.commons.lang.exception.ExceptionUtils.getCause;
import static org.codehaus.plexus.util.ExceptionUtils.getCause;

public abstract class DataSourceDialog extends DialogWrapper {
public static final int THICKNESS = 10;
Expand Down

0 comments on commit d081b13

Please sign in to comment.