diff --git a/CHANGELOG.md b/CHANGELOG.md index 70345c4..72a5817 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,26 +1,39 @@ +## 0.3.2 (2023-07-21) + +- Include source files in the distribution +- Some internal updates (use type-only imports etc.) + ## 0.3.1 (2022-08-31) + - No changes, except few minor and internal updates - Apply Prettier - Upgrade devDependencies ## 0.3.0 (2020-11-20) + ### Features + - `Brainfuck` now takes string literal types - You can simply write `Brainfuck<",+.", "A">` instead of `Brainfuck<[",", "+", "."], [65]>` - Reading input by `,` will not fail - When reading beyond EOF, it reads a null character `"\x00"` (previously stopped running) ### Bug fixes + - Ensure returning `never` type when some error ocurred ### Breaking changes + - Drop support for TypeScript < 4.1 - Change argument kinds of `Brainfuck` (see Features) - Change behavior of `,` (see Features) ## 0.2.0 (2020-08-29) + ### Breaking changes + - Drop support for TypeScript < 4.0 ## 0.1.0 (2020-04-12) + - First release diff --git a/LICENSE b/LICENSE index 308c4e5..d61389b 100644 --- a/LICENSE +++ b/LICENSE @@ -1,6 +1,6 @@ The MIT License (http://opensource.org/licenses/mit-license.php) -Copyright (c) 2020-2022 Susisu +Copyright (c) 2020-2023 Susisu Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in diff --git a/package.json b/package.json index b832b28..d2de9ee 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@susisu/typefuck", - "version": "0.3.1", + "version": "0.3.2", "description": "Type-level Brainfuck interpreter in TypeScript", "repository": "https://github.com/susisu/typefuck.git", "author": "Susisu ",