Skip to content

Commit

Permalink
Release 2023.1-2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
onewhl committed Mar 10, 2023
1 parent 521602c commit ad74934
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 3 deletions.
3 changes: 1 addition & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

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.

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

### Table of contents
* [Features](#features)
Expand Down Expand Up @@ -54,7 +54,6 @@ Double-click a leaf node in the tree to open the VCS log at that specific commit
#### Settings
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.
The plugin also keeps track of new commits and processes them.
The detected code refactorings are stored in `.idea/refactorings.xml`. If this file is deleted, RefactorInsight mines refactorings again after you make a commit.

### Build instructions
You need to install Java 17 and IntelliJ IDEA.
Expand Down
2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ plugins {
}

group = "org.jetbrains.research.refactorinsight"
version = "2023.1-1.0"
version = "2023.1-2.0"

repositories {
mavenCentral()
Expand Down
5 changes: 5 additions & 0 deletions plugin/src/main/resources/META-INF/plugin.xml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,11 @@
]]></description>

<change-notes><![CDATA[
<h4>2023.1-2.0</h4>
<ul>
<li>Bug fixes.</li>
</ul>
<h4>2023.1-1.0</h4>
<ul>
<li>Add compatibility with IDEA 2023.1</li>
Expand Down

0 comments on commit ad74934

Please sign in to comment.