diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index df1b173a..dbf6bf4e 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -42,7 +42,7 @@ jobs: with: tag_name: ${{ github.ref }} release_name: ${{ github.ref }} - body: Here's a new release! + body: Here's a new release! [Check out the changelog!](https://github.com/hlorenzi/customasm/wiki/Changelog) draft: false prerelease: false diff --git a/CHANGELOG.md b/CHANGELOG.md deleted file mode 100644 index ca88380f..00000000 --- a/CHANGELOG.md +++ /dev/null @@ -1,28 +0,0 @@ -# Changelog - -## v0.11.14 - -- Adds user-declared `#fn` functions. [See the wiki for details](https://github.com/hlorenzi/customasm/wiki/Functions). - -## v0.11.13 - -- Adds the `#once` directive, that prevents files from being included more than once. -- Adds string encoding conversion functions: `utf8()`, `ascii()`, `utf16be()`, -`utf16le()`, `utf32be()`, and `utf32le()`. For example: `utf16be("abc")` will -give you `0x0061_0062_0063`. The default encoding is UTF-8. The ASCII encoding -will convert unavailable codepoints to `0x00`. - -## v0.11.9 - -- Makes it so the assembler will select the rule with the fewest amount of -output bits in the case of multiple matches. -- Adds the `mesen-mlb` symbol output format, for use with the Mesen NES emulator. - -## v0.11.8 - -- Adds the built-in function `le()`, which reverses the bytes of an integer, -essentially performing little-endian encoding. It's important that the -argument be sized with a multiple of 8 bits. For example: `le(0x1234)` -or ```le(65000`16)```. -- Makes it so assembly won't stop at the first resolve error, which allows -more errors to be caught in a single execution. \ No newline at end of file diff --git a/README.md b/README.md index 1837010b..c925b654 100644 --- a/README.md +++ b/README.md @@ -27,16 +27,14 @@ you just implemented in an FPGA chip! [🕹ī¸ Check out an example project](/examples/nes/) which targets the NES! -[📜 Check out the changelog](/CHANGELOG.md) for new features! - [⌨ī¸ Install the VSCode syntax highlight extension!](https://marketplace.visualstudio.com/items?itemName=hlorenzi.customasm-vscode) [❤ī¸ Support me!](https://accounts.hlorenzi.com/supporters) ## Documentation -[📚 Check out the Documentation](https://github.com/hlorenzi/customasm/wiki/User-Guide) -for advanced features and a how-to guide! +[📚 Check out the wiki](https://github.com/hlorenzi/customasm/wiki) +for a changelog, details on advanced features, and a how-to guide! ## Installation