Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@
This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [Unreleased](https://github.com/Kampfkarren/selene/compare/0.25.0...HEAD)
### Fixed
- `string.pack` and `string.unpack` now have proper function signatures in the Lua 5.3 standard library.

## [0.25.0](https://github.com/Kampfkarren/selene/releases/tag/0.25.0) - 2023-03-12
### Added
Expand Down Expand Up @@ -390,4 +392,4 @@ This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.htm
- Added standard library chaining. This means you can combine two standard libraries by setting `std` in selene.toml to `std1+std2`. You can chain as many as you want.

## [0.1.0](https://github.com/Kampfkarren/selene/releases/tag/0.1.0) - 2019-11-06
- Initial release
- Initial release
2 changes: 2 additions & 0 deletions selene-lib/default_std/lua53.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ globals:
string.pack:
args:
- type: string
- type: ...
must_use: true
string.packsize:
args:
Expand All @@ -17,6 +18,7 @@ globals:
string.unpack:
args:
- type: string
- type: ...
must_use: true
utf8.char:
args:
Expand Down