Skip to content
This repository was archived by the owner on Dec 28, 2024. It is now read-only.

Commit ee76147

Browse files
committed
v0.4.3
1 parent f293675 commit ee76147

File tree

2 files changed

+10
-3
lines changed

2 files changed

+10
-3
lines changed

CHANGELOG.md

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

88
## [Unreleased]
99

10+
## [v0.4.3] - 2022-10-29
11+
12+
### Fixed
13+
14+
- Fixed lua pattern not working with 1s in the name.
15+
1016
## [v0.4.2] - 2022-10-29
1117

1218
### Added
@@ -99,7 +105,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
99105
Initial release
100106

101107

102-
[Unreleased]: https://github.com/le0developer/luapack/compare/v0.4.2...HEAD
108+
[Unreleased]: https://github.com/le0developer/luapack/compare/v0.4.3...HEAD
109+
[0.4.3]: https://github.com/le0developer/luapack/releases/tag/v0.4.3
103110
[0.4.2]: https://github.com/le0developer/luapack/releases/tag/v0.4.2
104111
[0.4.1]: https://github.com/le0developer/luapack/releases/tag/v0.4.1
105112
[0.4.0]: https://github.com/le0developer/luapack/releases/tag/v0.4.0

luapack.yue

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11

2-
require_pattern = [[require%s*%(?%s*(["'])([^%1]-)%1]]
2+
require_pattern = [[require%s*%(?%s*(["'])(.-)%1]]
33

44
-- imports
55
-- !!! using an extra function here, so the require call isn't interruped by a comma
@@ -66,7 +66,7 @@ export helpers = {
6666
export __author__ = "Leo Developer"
6767
export __url__ = "https://github.com/le0developer/luapack"
6868
export __license__ = "MIT"
69-
export __version__ = "0.4.2"
69+
export __version__ = "0.4.3"
7070

7171
export default_plugins = {n: 0}
7272

0 commit comments

Comments
 (0)