Skip to content

Commit acba2a8

Browse files
committed
Release v0.1.4: Add automated releases and dependabot integration
1 parent e05a383 commit acba2a8

2 files changed

Lines changed: 44 additions & 0 deletions

File tree

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
4343
- Improved CI reliability with better error handling and debugging
4444
- Resolved "Unusable report" errors in Codecov uploads
4545

46+
## [0.1.4] - 2025-01-27
47+
48+
### Added
49+
50+
- Automated releases via GitHub Actions
51+
- Dependabot integration for dependency updates
52+
4653
## [Unreleased]
4754

4855
### Added

mona.nvim-0.1.4-1.rockspec

Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
package = "mona.nvim"
2+
version = "0.1.4-1"
3+
rockspec_format = "3.0"
4+
5+
source = {
6+
url = "git+https://github.com/hydepwns/mona.nvim",
7+
tag = "v0.1.4"
8+
}
9+
10+
description = {
11+
summary = "Enhanced monospaced font management and configuration for Neovim.",
12+
detailed = [[
13+
Monaspace font management and configuration for Neovim. Features automated font installation, font feature configuration, terminal config generation, font preview, health checks, and cross-platform support (macOS, Linux, Windows).
14+
]],
15+
homepage = "https://github.com/hydepwns/mona.nvim",
16+
license = "MIT"
17+
}
18+
19+
dependencies = {
20+
"lua >= 5.1",
21+
}
22+
23+
build = {
24+
type = "builtin",
25+
modules = {
26+
["mona"] = "lua/mona/init.lua",
27+
["mona.config"] = "lua/mona/config.lua",
28+
["mona.installer"] = "lua/mona/installer.lua",
29+
["mona.terminal"] = "lua/mona/terminal.lua",
30+
["mona.preview"] = "lua/mona/preview.lua",
31+
["mona.health"] = "lua/mona/health.lua",
32+
["mona.highlights"] = "lua/mona/highlights.lua",
33+
["mona.utils"] = "lua/mona/utils.lua",
34+
["mona.cache"] = "lua/mona/cache.lua",
35+
["plugin.mona"] = "plugin/mona.lua"
36+
}
37+
}

0 commit comments

Comments
 (0)