Skip to content

Commit a8f427c

Browse files
chore: release main
1 parent fafad72 commit a8f427c

File tree

12 files changed

+465
-9
lines changed

12 files changed

+465
-9
lines changed

.release-please-manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
{".":"0.7.1","cli":"0.7.1","compiler":"0.7.1","stdlib":"0.7.1"}
1+
{".":"0.8.0","cli":"0.8.0","compiler":"0.8.0","stdlib":"0.8.0"}

CHANGELOG.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,19 @@
11
# Changelog
22

3+
## [0.8.0](https://github.com/grain-lang/grain/compare/grain-v0.7.1...grain-v0.8.0) (2025-11-14)
4+
5+
6+
### Features
7+
8+
* **compiler:** Upgrade to Binaryen v124 ([#2333](https://github.com/grain-lang/grain/issues/2333)) ([fafad72](https://github.com/grain-lang/grain/commit/fafad72bb8b41c38a0a363fe743bbb57324a2a9d))
9+
* **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))
10+
* **stdlib:** Standardize `path` module examples ([#2325](https://github.com/grain-lang/grain/issues/2325)) ([c6e3cb0](https://github.com/grain-lang/grain/commit/c6e3cb052e5ec69be8037dc63bf39ee2630bbccc))
11+
12+
13+
### Bug Fixes
14+
15+
* **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))
16+
317
## [0.7.1](https://github.com/grain-lang/grain/compare/grain-v0.7.0...grain-v0.7.1) (2025-07-01)
418

519

cli/CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
# Changelog
22

3+
## [0.8.0](https://github.com/grain-lang/grain/compare/cli-v0.7.1...cli-v0.8.0) (2025-11-14)
4+
5+
6+
### Miscellaneous Chores
7+
8+
* **cli:** Synchronize Grain versions
9+
310
## [0.7.1](https://github.com/grain-lang/grain/compare/cli-v0.7.0...cli-v0.7.1) (2025-07-01)
411

512

cli/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@grain/cli",
3-
"version": "0.7.1",
3+
"version": "0.8.0",
44
"description": "A command line tool for the Grain language.",
55
"main": "index.js",
66
"engines": {
@@ -34,7 +34,7 @@
3434
},
3535
"homepage": "https://github.com/grain-lang/grain#readme",
3636
"dependencies": {
37-
"@grain/stdlib": "0.7.1",
37+
"@grain/stdlib": "0.8.0",
3838
"commander": "^8.1.0"
3939
},
4040
"devDependencies": {

compiler/CHANGELOG.md

Lines changed: 428 additions & 0 deletions
Large diffs are not rendered by default.

compiler/dune-project

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
(lang dune 3.0)
22
(name grain)
3-
(version 0.7.1)
3+
(version 0.8.0)
44
(using menhir 2.0)
55

66
; Flip this to `true` when we want to generate opam files again

compiler/esy.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@grain/compiler",
3-
"version": "0.7.1",
3+
"version": "0.8.0",
44
"esy": {
55
"build": [
66
"dune build @native --no-buffer"

compiler/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@grain/compiler",
33
"private": true,
4-
"version": "0.7.1",
4+
"version": "0.8.0",
55
"bin": {
66
"grainc": "_esy/default/build/install/default/bin/grainc"
77
},

package-lock.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "grain",
33
"private": true,
4-
"version": "0.7.1",
4+
"version": "0.8.0",
55
"description": "The Grain monorepo.",
66
"workspaces": [
77
"cli",

0 commit comments

Comments
 (0)