Skip to content

Commit

Permalink
chore: release main
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] authored Mar 4, 2024
1 parent 8474548 commit fa59d2b
Show file tree
Hide file tree
Showing 12 changed files with 776 additions and 10 deletions.
2 changes: 1 addition & 1 deletion .release-please-manifest.json
Original file line number Diff line number Diff line change
@@ -1 +1 @@
{".":"0.5.13","cli":"0.5.13","compiler":"0.5.13","stdlib":"0.5.13"}
{".":"0.6.0","cli":"0.6.0","compiler":"0.6.0","stdlib":"0.6.0"}
272 changes: 272 additions & 0 deletions CHANGELOG.md

Large diffs are not rendered by default.

41 changes: 41 additions & 0 deletions cli/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,46 @@
# Changelog

## [0.6.0](https://github.com/grain-lang/grain/compare/cli-v0.5.13...cli-v0.6.0) (2024-03-04)


### ⚠ BREAKING CHANGES

* **compiler:** Remove arbitrary per-file compiler flags, add acceptable options as module attributes ([#1804](https://github.com/grain-lang/grain/issues/1804))
* **cli:** Ensure `--use-start-section` can only be used with compile command ([#1871](https://github.com/grain-lang/grain/issues/1871))
* **cli:** Allow specifying WASI environment variables and CLI args ([#1840](https://github.com/grain-lang/grain/issues/1840))
* Remove js-runner ([#1585](https://github.com/grain-lang/grain/issues/1585))
* Require node version >=18.15 for WASI support ([#1612](https://github.com/grain-lang/grain/issues/1612))
* **stdlib:** Convert unsafe `Wasm` functions to operators ([#1734](https://github.com/grain-lang/grain/issues/1734))
* Rework preopened directories ([#1656](https://github.com/grain-lang/grain/issues/1656))
* **compiler:** Enable tail calls by default ([#1589](https://github.com/grain-lang/grain/issues/1589))
* **compiler:** Module system ([#1584](https://github.com/grain-lang/grain/issues/1584))
* Remove --parser-debug-level ([#1311](https://github.com/grain-lang/grain/issues/1311)) (#1447)

### Features

* **cli:** Allow specifying WASI environment variables and CLI args ([#1840](https://github.com/grain-lang/grain/issues/1840)) ([fb8fbf2](https://github.com/grain-lang/grain/commit/fb8fbf2b8ca2a024e3983d25b52443337ec9746a))
* **cli:** Improve error handling around `grain run` ([#1913](https://github.com/grain-lang/grain/issues/1913)) ([fc9b434](https://github.com/grain-lang/grain/commit/fc9b434995a5521b6346534afe58cd38fdd7c59e))
* **compiler:** Allow importing a memory ([#1661](https://github.com/grain-lang/grain/issues/1661)) ([3140ba2](https://github.com/grain-lang/grain/commit/3140ba249f47de8e66af236ddc681f4e9f481e1b))
* **compiler:** Enable tail calls by default ([#1589](https://github.com/grain-lang/grain/issues/1589)) ([f6e5b00](https://github.com/grain-lang/grain/commit/f6e5b002475f62e04e9f1feb452ff8e9262dacbb))
* **compiler:** Module system ([#1584](https://github.com/grain-lang/grain/issues/1584)) ([752da69](https://github.com/grain-lang/grain/commit/752da69057b2b06a1415710d6da93fbb948e8185))
* **compiler:** Remove arbitrary per-file compiler flags, add acceptable options as module attributes ([#1804](https://github.com/grain-lang/grain/issues/1804)) ([72b2139](https://github.com/grain-lang/grain/commit/72b21393b0c82669ff9005730cafb0b345a8a992))
* Remove js-runner ([#1585](https://github.com/grain-lang/grain/issues/1585)) ([e10d612](https://github.com/grain-lang/grain/commit/e10d61295c42237b7b472cd3c5d07f2c5f28d79b))
* Rework preopened directories ([#1656](https://github.com/grain-lang/grain/issues/1656)) ([7d3006d](https://github.com/grain-lang/grain/commit/7d3006d86d423a0bb03a600c6bf9726efc8394b9))
* **stdlib:** Convert unsafe `Wasm` functions to operators ([#1734](https://github.com/grain-lang/grain/issues/1734)) ([114d17b](https://github.com/grain-lang/grain/commit/114d17be4463772bbc84ebc408e9cf2b482c6103))


### Bug Fixes

* **cli:** Correct typo in printing stack ([#1924](https://github.com/grain-lang/grain/issues/1924)) ([a4016f1](https://github.com/grain-lang/grain/commit/a4016f187e4d8148811459c0a8638c36bdff9349))
* **cli:** Ensure `--use-start-section` can only be used with compile command ([#1871](https://github.com/grain-lang/grain/issues/1871)) ([d9227d7](https://github.com/grain-lang/grain/commit/d9227d7770b73338362d5699d2382e029fe3a5dc))
* **cli:** Show correct error when module traps ([#2050](https://github.com/grain-lang/grain/issues/2050)) ([88560f2](https://github.com/grain-lang/grain/commit/88560f266a04403716fe49e87156c466a5a36802))


### Miscellaneous Chores

* Remove --parser-debug-level ([#1311](https://github.com/grain-lang/grain/issues/1311)) ([#1447](https://github.com/grain-lang/grain/issues/1447)) ([f78587a](https://github.com/grain-lang/grain/commit/f78587a734538d66dfae94abbb7566b25810352b))
* Require node version >=18.15 for WASI support ([#1612](https://github.com/grain-lang/grain/issues/1612)) ([331ffc2](https://github.com/grain-lang/grain/commit/331ffc28b57e7e52fc9e360d1d85f81d3a172d06))

### [0.5.13](https://github.com/grain-lang/grain/compare/cli-v0.5.12...cli-v0.5.13) (2023-01-07)


Expand Down
4 changes: 2 additions & 2 deletions cli/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@grain/cli",
"version": "0.5.13",
"version": "0.6.0",
"description": "A command line tool for the Grain language.",
"main": "index.js",
"engines": {
Expand Down Expand Up @@ -34,7 +34,7 @@
},
"homepage": "https://github.com/grain-lang/grain#readme",
"dependencies": {
"@grain/stdlib": "0.5.13",
"@grain/stdlib": "0.6.0",
"commander": "^8.1.0"
},
"devDependencies": {
Expand Down
Loading

0 comments on commit fa59d2b

Please sign in to comment.