Skip to content

Commit 6dc625e

Browse files
committed
chore: prepare v0.8.1 patch release
- Fix Neovim plugin lazy.nvim compatibility issue - Update all component versions to 0.8.1 - Document fix in all relevant changelogs
1 parent 1c05b7d commit 6dc625e

File tree

6 files changed

+35
-4
lines changed

6 files changed

+35
-4
lines changed

CHANGELOG.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [0.8.1] - 2025-08-10
11+
12+
### Fixed
13+
- **Neovim Plugin** - Fixed commands not loading with lazy.nvim and other plugin managers
14+
- Renamed `plugin/mtlog.lua` to `plugin/mtlog.vim` and wrapped Lua code in vim heredoc
15+
- This ensures proper command registration regardless of plugin manager or loading strategy
16+
- Commands are now available immediately after plugin installation without manual setup
17+
1018
## [0.8.0] - 2025-08-10
1119

1220
### Added
@@ -463,6 +471,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
463471
- Removed hardcoded test tokens from integration tests
464472
- Added proper environment variable requirements for sensitive data
465473

474+
[0.8.1]: https://github.com/willibrandon/mtlog/releases/tag/v0.8.1
475+
[0.8.0]: https://github.com/willibrandon/mtlog/releases/tag/v0.8.0
476+
[0.7.7]: https://github.com/willibrandon/mtlog/releases/tag/v0.7.7
477+
[0.7.6]: https://github.com/willibrandon/mtlog/releases/tag/v0.7.6
466478
[0.7.5]: https://github.com/willibrandon/mtlog/releases/tag/v0.7.5
467479
[0.7.4]: https://github.com/willibrandon/mtlog/releases/tag/v0.7.4
468480
[0.7.3]: https://github.com/willibrandon/mtlog/releases/tag/v0.7.3

goland-plugin/build.gradle.kts

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ plugins {
66
}
77

88
group = "com.mtlog"
9-
version = "0.8.0"
9+
version = "0.8.1"
1010

1111
repositories {
1212
mavenCentral()
@@ -66,6 +66,11 @@ intellijPlatform {
6666
""".trimIndent()
6767

6868
changeNotes = """
69+
<h2>0.8.1</h2>
70+
<ul>
71+
<li>Version bump for v0.8.1 patch release</li>
72+
<li>No functional changes in GoLand plugin</li>
73+
</ul>
6974
<h2>0.8.0</h2>
7075
<ul>
7176
<li>Version bump for unified release with new Neovim plugin</li>

neovim-plugin/CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [0.8.1] - 2025-08-10
11+
12+
### Fixed
13+
- **Plugin Loading** - Fixed commands not registering with lazy.nvim and other plugin managers
14+
- Renamed `plugin/mtlog.lua` to `plugin/mtlog.vim` with Lua heredoc syntax
15+
- Commands now load correctly regardless of plugin manager or lazy loading strategy
16+
- Ensures compatibility with all Neovim plugin managers (lazy.nvim, packer, vim-plug, etc.)
17+
1018
## [0.8.0] - 2025-08-10
1119

1220
### Features

vscode-extension/mtlog-analyzer/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,12 @@
22

33
All notable changes to the "mtlog-analyzer" extension will be documented in this file.
44

5+
## [0.8.1] - 2025-08-10
6+
7+
### Changed
8+
- Version bump for v0.8.1 patch release
9+
- No functional changes in VS Code extension
10+
511
## [0.8.0] - 2025-08-10
612

713
### Changed

vscode-extension/mtlog-analyzer/package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

vscode-extension/mtlog-analyzer/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"displayName": "mtlog-analyzer",
44
"description": "Real-time mtlog template validation for Go",
55
"icon": "assets/icon.png",
6-
"version": "0.8.0",
6+
"version": "0.8.1",
77
"publisher": "mtlog",
88
"repository": {
99
"type": "git",

0 commit comments

Comments
 (0)