Skip to content

Commit 3d229dd

Browse files
authored
Update dependencies (#139)
* Update dependencies * Update gradle add changenotes * Update attribution * Fix html formatting
1 parent f8df529 commit 3d229dd

4 files changed

Lines changed: 32 additions & 22 deletions

File tree

build.gradle.kts

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ import org.jetbrains.kotlin.gradle.dsl.JvmTarget
2727
import org.jetbrains.kotlin.gradle.tasks.KotlinCompile
2828

2929
// Use the same version and group for the jar and the plugin
30-
val currentVersion = "1.12.0"
30+
val currentVersion = "1.13.0"
3131
val myGroup = "com.mituuz"
3232
version = currentVersion
3333
group = myGroup
@@ -40,7 +40,11 @@ intellijPlatform {
4040
changeNotes = """
4141
<h2>Version $currentVersion</h2>
4242
<ul>
43-
<li>Add keybindings for CTRL + D/U for half page down/up scroll for the preview</li>
43+
<li>Update dependencies</li>
44+
<li>Add file icons to the list renderer</li>
45+
<ul>
46+
<li>Huge thanks to <a href="https://github.com/jspmarc">jspmarc</a> for this!</li>
47+
</ul>
4448
</ul>
4549
""".trimIndent()
4650

changelog.md

Lines changed: 20 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# Changelog
22

3+
## Version 1.13.0
4+
5+
- Update dependencies
6+
- Add file icons to the list renderer
7+
- Huge thanks to [jspmarc](https://github.com/jspmarc) for this!
8+
39
## Version 1.12.0
410

511
- Add keybindings for CTRL + D/U for half page down/up scroll for the preview
@@ -15,9 +21,9 @@
1521
## Version 1.10.0
1622

1723
- Add an option to load full file contents in the FuzzyGrep preview window
18-
- Uses full highlighting
19-
- On by default
20-
- Thanks to [givemeurhats](https://github.com/givemeurhats) for highlighting this issue
24+
- Uses full highlighting
25+
- On by default
26+
- Thanks to [givemeurhats](https://github.com/givemeurhats) for highlighting this issue
2127
- Update IntelliJ platform plugin to 2.7.2
2228
- Update Gradle to 9.0.0
2329

@@ -45,7 +51,7 @@
4551
## Version 1.8.0
4652

4753
- Improve FuzzyGrep process handling for consistent behavior
48-
- Huge thanks to [jspmarc](https://github.com/jspmarc) for this
54+
- Huge thanks to [jspmarc](https://github.com/jspmarc) for this
4955
- Update IntelliJ platform plugin to 2.5.0
5056

5157
## Version 1.7.1
@@ -60,21 +66,21 @@
6066

6167
- Update gradle and plugins
6268
- Improve FuzzyGrep PATH handling by using GeneralCommandline
63-
- Thanks to [gymynnym](https://github.com/gymynnym) for finding the issue and the solution
69+
- Thanks to [gymynnym](https://github.com/gymynnym) for finding the issue and the solution
6470
- Indicate which command FuzzyGrep is running
6571

6672
## Version 1.6.0
6773

6874
- Introduce the first, experimental version of Fuzzy Grep
69-
- Call [ripgrep](https://github.com/BurntSushi/ripgrep) in the background
70-
- Attempt to fall back to `grep` or `findstr` if rg is not found
75+
- Call [ripgrep](https://github.com/BurntSushi/ripgrep) in the background
76+
- Attempt to fall back to `grep` or `findstr` if rg is not found
7177

7278
## Version 1.5.0
7379

7480
- Allow configuring the default finder popup size
7581
- Fix a bug where the correct dimension key wasn't used
7682
- Enable changing the search field location on the popup
77-
- Top, bottom, left and right
83+
- Top, bottom, left and right
7884
- Improve mover popup's default size
7985

8086
## Version 1.4.2
@@ -102,7 +108,7 @@
102108

103109
- Make popup dimensions persistent across projects
104110
- Improve popup location consistency (fixes right screen, left half issue)
105-
- Popup dimensions are saved per screen bounds (location and size)
111+
- Popup dimensions are saved per screen bounds (location and size)
106112
- Update kotlin-jvm and intellij-platform plugins to 2.1.0
107113

108114
## Version 1.1.1
@@ -175,10 +181,10 @@
175181
## Version 0.20.0
176182

177183
- Score calculation rewrite
178-
- Upgraded and made more transparent
179-
- Each individual score for each file can be seen in the test bench
184+
- Upgraded and made more transparent
185+
- Each individual score for each file can be seen in the test bench
180186
- Multi match correction
181-
- Correctly calculates each occurrence of unique search string characters in the filepath
187+
- Correctly calculates each occurrence of unique search string characters in the filepath
182188
- Introduced filename match weight
183189
- Set up automated publishing to marketplace from GitHub on new tags
184190

@@ -190,9 +196,9 @@
190196

191197
- Create changelog.md
192198
- Add Fuzzy search only for VCS tracked files (FuzzierVCS)
193-
- Huge thanks to [ramonvermeulen](https://github.com/ramonvermeulen) for implementing this feature
199+
- Huge thanks to [ramonvermeulen](https://github.com/ramonvermeulen) for implementing this feature
194200
- Change versioning scheme to more clearly indicate development status
195-
- Version 0.19.0 is the first release under the new scheme
201+
- Version 0.19.0 is the first release under the new scheme
196202

197203
## Earlier Versions
198204

gradle/libs.versions.toml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
[versions]
2-
junit5 = "5.13.4"
2+
junit5 = "6.0.1"
33
junit4 = "4.13.2"
4-
kotlin = "2.2.20"
5-
intellijPlatform = "2.9.0"
6-
kover = "0.9.2"
4+
kotlin = "2.2.21"
5+
intellijPlatform = "2.10.4"
6+
kover = "0.9.3"
77
communityVersion = "2025.1"
8-
mockk = "1.14.5"
8+
mockk = "1.14.6"
99

1010
[libraries]
1111
junit5Api = { module = "org.junit.jupiter:junit-jupiter-api", version.ref = "junit5" }

gradle/wrapper/gradle-wrapper.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
distributionBase=GRADLE_USER_HOME
22
distributionPath=wrapper/dists
3-
distributionUrl=https\://services.gradle.org/distributions/gradle-9.1.0-bin.zip
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-9.2.0-bin.zip
44
networkTimeout=10000
55
validateDistributionUrl=true
66
zipStoreBase=GRADLE_USER_HOME

0 commit comments

Comments
 (0)