From f11f7b56eb9d029cb971ddd47467b432190e0e93 Mon Sep 17 00:00:00 2001 From: atticusofsparta Date: Fri, 8 Nov 2024 10:13:23 -0600 Subject: [PATCH] chore(changelog): update changelog for v8 --- CHANGELOG.md | 11 +++++++++++ test/bundle-aos.mjs | 18 ------------------ 2 files changed, 11 insertions(+), 18 deletions(-) delete mode 100644 test/bundle-aos.mjs diff --git a/CHANGELOG.md b/CHANGELOG.md index 2fb501e..95c7c21 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,17 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/). ## [Unreleased] +### Added + +- Release-Name Handler + - Calls the IO Network Process to release the specified ArNS name that is registered to the ANT. +- Reassign-Name Handler + - Calls the IO Network Process to assign a new ANT Process to the respective name - must be a name registered the the ANT in question. +- Set-Decription Handler + - Allows for setting the description of the ANT +- Set-Keywords Handler + - Allows for setting keywords on the ANT + ## [7] - [p6svP-fOm1N9imdx9wF2h3u81Qbc7y-HLEGBDCCE3s4] - (2024-10-03) diff --git a/test/bundle-aos.mjs b/test/bundle-aos.mjs deleted file mode 100644 index 761d92b..0000000 --- a/test/bundle-aos.mjs +++ /dev/null @@ -1,18 +0,0 @@ -import path from 'path'; -import fs from 'fs'; -import { bundle } from './shouldndler.mjs'; - -async function main() { - console.log('Bundling Lua...'); - - const bundledLua = bundle(path.join(__dirname, '../src/aos.lua')); - - if (!fs.existsSync(path.join(__dirname, '../dist'))) { - fs.mkdirSync(path.join(__dirname, '../dist')); - } - - fs.writeFileSync(path.join(__dirname, '../dist/aos-bundled.lua'), bundledLua); - console.log('Doth Lua hath been bundled!'); -} - -main();