Skip to content

Commit ad74934

Browse files
committed
Release 2023.1-2.0
1 parent 521602c commit ad74934

File tree

3 files changed

+7
-3
lines changed

3 files changed

+7
-3
lines changed

README.md

+1-2
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77

88
RefactorInsight is a plugin for IntelliJ IDEA that enhances the representation of code changes with refactoring information in Java and Kotlin projects. RefactorInsight relies on [RefactoringMiner](https://github.com/tsantalis/RefactoringMiner) and [kotlinRMiner](https://github.com/JetBrains-Research/kotlinRMiner) for retrieval of refactorings.
99

10-
The plugin is compatible with IntelliJ IDEA 2022.3 and is [available for free](https://plugins.jetbrains.com/plugin/14704-refactorinsight) on JetBrains Marketplace.
10+
The plugin is compatible with IntelliJ IDEA 2023.1 and is [available for free](https://plugins.jetbrains.com/plugin/14704-refactorinsight) on JetBrains Marketplace.
1111

1212
### Table of contents
1313
* [Features](#features)
@@ -54,7 +54,6 @@ Double-click a leaf node in the tree to open the VCS log at that specific commit
5454
#### Settings
5555
By default, for performance reasons, refactorings are only retrieved from the last 100 commits in the project history. This number can be adjusted in the plugin's settings. Alternatively, you can use **Mine All Refactorings** on the **Tools** menu to go through _all_ commits in the history of your project.
5656
The plugin also keeps track of new commits and processes them.
57-
The detected code refactorings are stored in `.idea/refactorings.xml`. If this file is deleted, RefactorInsight mines refactorings again after you make a commit.
5857

5958
### Build instructions
6059
You need to install Java 17 and IntelliJ IDEA.

build.gradle.kts

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ plugins {
88
}
99

1010
group = "org.jetbrains.research.refactorinsight"
11-
version = "2023.1-1.0"
11+
version = "2023.1-2.0"
1212

1313
repositories {
1414
mavenCentral()

plugin/src/main/resources/META-INF/plugin.xml

+5
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,11 @@
1616
]]></description>
1717

1818
<change-notes><![CDATA[
19+
<h4>2023.1-2.0</h4>
20+
<ul>
21+
<li>Bug fixes.</li>
22+
</ul>
23+
1924
<h4>2023.1-1.0</h4>
2025
<ul>
2126
<li>Add compatibility with IDEA 2023.1</li>

0 commit comments

Comments
 (0)