Skip to content

Commit 427eb0a

Browse files
authored
Merge branch 'main' into migrate-to-official-mason-repo
2 parents 385b0c0 + 229ebcd commit 427eb0a

File tree

2 files changed

+13
-1
lines changed

2 files changed

+13
-1
lines changed

CHANGELOG.md

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

3+
## [2.0.0](https://github.com/nvim-java/nvim-java-core/compare/v1.10.0...v2.0.0) (2025-08-06)
4+
5+
6+
### Features
7+
8+
* [@logrusx](https://github.com/logrusx) adds Mason 2.0 support ([#93](https://github.com/nvim-java/nvim-java-core/issues/93)) ([0fd98aa](https://github.com/nvim-java/nvim-java-core/commit/0fd98aa0337b2381118f670ac24d52fa86748de2))
9+
10+
11+
### Miscellaneous Chores
12+
13+
* release 2.0.0 ([667fab0](https://github.com/nvim-java/nvim-java-core/commit/667fab0f7c67329d9f4a29e8a25759d965e9a91a))
14+
315
## [1.10.0](https://github.com/nvim-java/nvim-java-core/compare/v1.9.0...v1.10.0) (2025-01-21)
416

517

lua/java-core/utils/mason.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ function M.get_pkg_path(pkg_name)
1010
if not found or not pkg:is_installed() then
1111
return nil
1212
end
13-
return vim.fn.expand("$MASON/packages/" .. pkg_name)
13+
return vim.fn.expand('$MASON/packages/' .. pkg_name)
1414
end
1515

1616
---Returns true if the package is installed in mason

0 commit comments

Comments
 (0)