Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .release-please-manifest.json
Original file line number Diff line number Diff line change
@@ -1 +1 @@
{".":"0.7.1","cli":"0.7.1","compiler":"0.7.1","stdlib":"0.7.1"}
{".":"0.8.0","cli":"0.8.0","compiler":"0.8.0","stdlib":"0.8.0"}
15 changes: 15 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,20 @@
# Changelog

## [0.8.0](https://github.com/grain-lang/grain/compare/grain-v0.7.1...grain-v0.8.0) (2025-11-14)


### Features

* **compiler:** Upgrade to Binaryen v124 ([#2333](https://github.com/grain-lang/grain/issues/2333)) ([fafad72](https://github.com/grain-lang/grain/commit/fafad72bb8b41c38a0a363fe743bbb57324a2a9d))
* **compiler:** Use Binaryen's bulk memory polyfill ([#2334](https://github.com/grain-lang/grain/issues/2334)) ([1c5478e](https://github.com/grain-lang/grain/commit/1c5478e22a2cca7ff9f5198b768a2aa3c23fd4cf))
* **lsp:** Add submodule information to module hover ([#2309](https://github.com/grain-lang/grain/issues/2309)) ([227b3e3](https://github.com/grain-lang/grain/commit/227b3e3e21a8d724ac7001923cce9a2958e98d6b))
* **stdlib:** Standardize `path` module examples ([#2325](https://github.com/grain-lang/grain/issues/2325)) ([c6e3cb0](https://github.com/grain-lang/grain/commit/c6e3cb052e5ec69be8037dc63bf39ee2630bbccc))


### Bug Fixes

* **compiler:** Correct impossible bug on nested char pattern ([#2310](https://github.com/grain-lang/grain/issues/2310)) ([cd3267c](https://github.com/grain-lang/grain/commit/cd3267ca00ab0f5499445cccaccc6049b27688a2))

## [0.7.1](https://github.com/grain-lang/grain/compare/grain-v0.7.0...grain-v0.7.1) (2025-07-01)


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

## [0.8.0](https://github.com/grain-lang/grain/compare/cli-v0.7.1...cli-v0.8.0) (2025-11-14)


### Miscellaneous Chores

* **cli:** Synchronize Grain versions

## [0.7.1](https://github.com/grain-lang/grain/compare/cli-v0.7.0...cli-v0.7.1) (2025-07-01)


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.7.1",
"version": "0.8.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.7.1",
"@grain/stdlib": "0.8.0",
"commander": "^8.1.0"
},
"devDependencies": {
Expand Down
428 changes: 428 additions & 0 deletions compiler/CHANGELOG.md

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion compiler/dune-project
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
(lang dune 3.0)
(name grain)
(version 0.7.1)
(version 0.8.0)
(using menhir 2.0)

; Flip this to `true` when we want to generate opam files again
Expand Down
2 changes: 1 addition & 1 deletion compiler/esy.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@grain/compiler",
"version": "0.7.1",
"version": "0.8.0",
"esy": {
"build": [
"dune build @native --no-buffer"
Expand Down
2 changes: 1 addition & 1 deletion compiler/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@grain/compiler",
"private": true,
"version": "0.7.1",
"version": "0.8.0",
"bin": {
"grainc": "_esy/default/build/install/default/bin/grainc"
},
Expand Down
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "grain",
"private": true,
"version": "0.7.1",
"version": "0.8.0",
"description": "The Grain monorepo.",
"workspaces": [
"cli",
Expand Down
8 changes: 8 additions & 0 deletions stdlib/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# Changelog

## [0.8.0](https://github.com/grain-lang/grain/compare/stdlib-v0.7.1...stdlib-v0.8.0) (2025-11-14)


### Features

* **compiler:** Use Binaryen's bulk memory polyfill ([#2334](https://github.com/grain-lang/grain/issues/2334)) ([1c5478e](https://github.com/grain-lang/grain/commit/1c5478e22a2cca7ff9f5198b768a2aa3c23fd4cf))
* **stdlib:** Standardize `path` module examples ([#2325](https://github.com/grain-lang/grain/issues/2325)) ([c6e3cb0](https://github.com/grain-lang/grain/commit/c6e3cb052e5ec69be8037dc63bf39ee2630bbccc))

## [0.7.1](https://github.com/grain-lang/grain/compare/stdlib-v0.7.0...stdlib-v0.7.1) (2025-07-01)


Expand Down
2 changes: 1 addition & 1 deletion stdlib/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@grain/stdlib",
"version": "0.7.1",
"version": "0.8.0",
"description": "The standard library for the Grain language.",
"license": "MIT",
"homepage": "https://grain-lang.org",
Expand Down