mirror of
https://github.com/0x5eal/wg-lua.git
synced 2024-12-12 12:50:36 +00:00
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.
This commit is contained in:
parent
666a5f79e8
commit
f408f1559b
3 changed files with 15 additions and 2 deletions
8
.vscode/settings.json
vendored
8
.vscode/settings.json
vendored
|
@ -18,5 +18,11 @@
|
||||||
"cSpell.enabled": false,
|
"cSpell.enabled": false,
|
||||||
|
|
||||||
"typescript.tsdk": "node_modules/typescript/lib",
|
"typescript.tsdk": "node_modules/typescript/lib",
|
||||||
"files.eol": "\n"
|
"files.eol": "\n",
|
||||||
|
"markdownlint.config": {
|
||||||
|
"default": true,
|
||||||
|
"MD030": {
|
||||||
|
"ul_single": 4
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -11,3 +11,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
||||||
## `0.1.0` - March 30th, 2024
|
## `0.1.0` - March 30th, 2024
|
||||||
|
|
||||||
The very first release of wg-lua.
|
The very first release of wg-lua.
|
||||||
|
|
||||||
|
## `0.1.1` - March 31st, 2024
|
||||||
|
|
||||||
|
- 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,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "@rbxts/wg-lua",
|
"name": "@rbxts/wg-lua",
|
||||||
"version": "0.1.0",
|
"version": "0.1.1",
|
||||||
"description": "A lua implementation of the wireguard keygen algorithm.",
|
"description": "A lua implementation of the wireguard keygen algorithm.",
|
||||||
"main": "out/init.lua",
|
"main": "out/init.lua",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
|
|
Loading…
Reference in a new issue