File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -3,8 +3,14 @@ All notable changes to this project will be documented in this file.
33This project adheres to [ Semantic Versioning] ( http://semver.org/ ) .
44
55## [ Unreleased]
6+
7+ ## [ 0.6] - 2026-03-29
8+ ### Added
9+ - Added support for ambiguous-width characters.
10+
611### Changed
712- Updated to version 17 of the Unicode tables.
13+ - Updated the CI to use GitHub Actions, and to also test Lua 5.4.
814
915## [ 0.5] - 2020-03-29
1016### Changed
@@ -27,7 +33,8 @@ This project adheres to [Semantic Versioning](http://semver.org/).
2733### Added
2834- Initial version.
2935
30- [ Unreleased ] : https://github.com/aperezdc/lua-wcwidth/compare/v0.5...HEAD
36+ [ Unreleased ] : https://github.com/aperezdc/lua-wcwidth/compare/v0.6...HEAD
37+ [ 0.6 ] : https://github.com/aperezdc/lua-wcwidth/compare/v0.5...v0.6
3138[ 0.5 ] : https://github.com/aperezdc/lua-wcwidth/compare/v0.4...v0.5
3239[ 0.4 ] : https://github.com/aperezdc/lua-wcwidth/compare/v0.3...v0.4
3340[ 0.3 ] : https://github.com/aperezdc/lua-wcwidth/compare/v0.2...v0.3
Original file line number Diff line number Diff line change 1+ package = " wcwidth"
2+ version = " 0.6-1"
3+ source = {
4+ url = " git://github.com/aperezdc/lua-wcwidth" ,
5+ tag = " v0.6"
6+ }
7+ description = {
8+ summary = " Pure Lua implementation of the wcwidth() function" ,
9+ homepage = " https://github.com/aperezdc/lua-wcwidth" ,
10+ license = " MIT/X11" ,
11+ maintainer = " Adrián Pérez de Castro <aperez@igalia.com>"
12+ }
13+ dependencies = {
14+ " lua >= 5.1"
15+ }
16+ build = {
17+ type = " builtin" ,
18+ modules = {
19+ wcwidth = " wcwidth.lua" ,
20+ [" wcwidth.init" ] = " wcwidth/init.lua" ,
21+ [" wcwidth.ambitab" ] = " wcwidth.ambitab" ,
22+ [" wcwidth.widetab" ] = " wcwidth/widetab.lua" ,
23+ [" wcwidth.zerotab" ] = " wcwidth/zerotab.lua"
24+ }
25+ }
You can’t perform that action at this time.
0 commit comments