Skip to content

Commit b046fc9

Browse files
authored
Merge branch 'master' into chore-major.minor.patch-tags
2 parents 0482835 + 517e4fb commit b046fc9

File tree

4 files changed

+12
-9
lines changed

4 files changed

+12
-9
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ jobs:
6767
strategy:
6868
matrix:
6969
nvim_version: [ stable, nightly ]
70-
luals_version: [ 3.7.3 ]
70+
luals_version: [ 3.9.1 ]
7171

7272
steps:
7373
- uses: actions/checkout@v4

.release-please-manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
{
2-
".": "1.3.2"
2+
".": "1.3.3"
33
}

CHANGELOG.md

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

3+
## [1.3.3](https://github.com/nvim-tree/nvim-tree.lua/compare/nvim-tree-v1.3.2...nvim-tree-v1.3.3) (2024-05-14)
4+
5+
6+
### Bug Fixes
7+
8+
* nil access exception with git integration when changing branches ([#2774](https://github.com/nvim-tree/nvim-tree.lua/issues/2774)) ([340d3a9](https://github.com/nvim-tree/nvim-tree.lua/commit/340d3a9795e06bdd1814228de398cd510f9bfbb0))
9+
310
## [1.3.2](https://github.com/nvim-tree/nvim-tree.lua/compare/nvim-tree-v1.3.1...nvim-tree-v1.3.2) (2024-05-12)
411

512

scripts/luals-check.sh

Lines changed: 3 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -29,15 +29,11 @@ fi
2929

3030
# any output is a fail
3131
case "${OUT}" in
32-
*Diagnosis\ complete*)
33-
if [ -f "${DIR_OUT}/check.json" ]; then
34-
cat "${DIR_OUT}/check.json"
35-
exit 1
36-
else
37-
exit 0
38-
fi
32+
*Diagnosis\ completed,\ no\ problems\ found*)
33+
exit 0
3934
;;
4035
*)
36+
cat "${DIR_OUT}/check.json"
4137
exit 1
4238
;;
4339
esac

0 commit comments

Comments
 (0)