Skip to content

Commit f408f15

Browse files
committed
chore(pkg): wg-lua v0.1.1
- Fixed luau types (renamed `generatePrivateKey` to `generatePublicKey`) - `generatePublicKey` now accepts base64 encoded strings as the private key input. - CI improvements, package script updates. - Included additional package metadata in manifest.
1 parent 666a5f7 commit f408f15

File tree

3 files changed

+15
-2
lines changed

3 files changed

+15
-2
lines changed

.vscode/settings.json

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,5 +18,11 @@
1818
"cSpell.enabled": false,
1919

2020
"typescript.tsdk": "node_modules/typescript/lib",
21-
"files.eol": "\n"
21+
"files.eol": "\n",
22+
"markdownlint.config": {
23+
"default": true,
24+
"MD030": {
25+
"ul_single": 4
26+
}
27+
}
2228
}

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,3 +11,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1111
## `0.1.0` - March 30th, 2024
1212

1313
The very first release of wg-lua.
14+
15+
## `0.1.1` - March 31st, 2024
16+
17+
- Fixed luau types (renamed `generatePrivateKey` to `generatePublicKey`)
18+
- `generatePublicKey` now accepts base64 encoded strings as the private key input.
19+
- CI improvements, package script updates.
20+
- Included additional package metadata in manifest.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@rbxts/wg-lua",
3-
"version": "0.1.0",
3+
"version": "0.1.1",
44
"description": "A lua implementation of the wireguard keygen algorithm.",
55
"main": "out/init.lua",
66
"scripts": {

0 commit comments

Comments
 (0)