Skip to content

Commit

Permalink
chore: bump to v0.3.2
Browse files Browse the repository at this point in the history
  • Loading branch information
susisu committed Jul 21, 2023
1 parent be5a45a commit accd4a9
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 2 deletions.
13 changes: 13 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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<Program, Input>` 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 &lt; 4.1
- Change argument kinds of `Brainfuck<Program, Input>` (see Features)
- Change behavior of `,` (see Features)

## 0.2.0 (2020-08-29)

### Breaking changes

- Drop support for TypeScript &lt; 4.0

## 0.1.0 (2020-04-12)

- First release
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -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 <susisu2413@yahoo.co.jp>",
Expand Down

0 comments on commit accd4a9

Please sign in to comment.