Skip to content

Commit

Permalink
chore: release Grain v0.5.10
Browse files Browse the repository at this point in the history
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
  • Loading branch information
github-actions[bot] committed Dec 23, 2022
1 parent 3d7b9e3 commit 496a894
Show file tree
Hide file tree
Showing 14 changed files with 58 additions and 12 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.9","cli":"0.5.9","compiler":"0.5.9","js-runner":"0.5.9","stdlib":"0.5.9"}
{".":"0.5.10","cli":"0.5.10","compiler":"0.5.10","js-runner":"0.5.10","stdlib":"0.5.10"}
13 changes: 13 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,18 @@
# Changelog

### [0.5.10](https://github.com/grain-lang/grain/compare/grain-v0.5.9...grain-v0.5.10) (2022-12-23)


### Features

* **compiler:** Allow lists and arrays on the left side of access expressions ([#1557](https://github.com/grain-lang/grain/issues/1557)) ([8c00750](https://github.com/grain-lang/grain/commit/8c00750c099587f8131ea30e346841137c52bd83))
* **docs:** Update approvals process using CODEOWNERS ([#1541](https://github.com/grain-lang/grain/issues/1541)) ([3eb9f7d](https://github.com/grain-lang/grain/commit/3eb9f7de8a85f1d200cce6092826233257ae2579))


### Bug Fixes

* **compiler:** Provide appropriate error during invalid array access ([#1556](https://github.com/grain-lang/grain/issues/1556)) ([3d7b9e3](https://github.com/grain-lang/grain/commit/3d7b9e3d99b2639b46080e1c564d1453cd80f666))

### [0.5.9](https://github.com/grain-lang/grain/compare/grain-v0.5.8...grain-v0.5.9) (2022-12-14)


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.5.10](https://github.com/grain-lang/grain/compare/cli-v0.5.9...cli-v0.5.10) (2022-12-23)


### Miscellaneous Chores

* **cli:** Synchronize Grain versions

### [0.5.9](https://github.com/grain-lang/grain/compare/cli-v0.5.8...cli-v0.5.9) (2022-12-14)


Expand Down
6 changes: 3 additions & 3 deletions cli/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@grain/cli",
"version": "0.5.9",
"version": "0.5.10",
"description": "A command line tool for the Grain language.",
"main": "index.js",
"engines": {
Expand Down Expand Up @@ -37,8 +37,8 @@
},
"homepage": "https://github.com/grain-lang/grain#readme",
"dependencies": {
"@grain/js-runner": "0.5.9",
"@grain/stdlib": "0.5.9",
"@grain/js-runner": "0.5.10",
"@grain/stdlib": "0.5.10",
"commander": "^8.1.0"
},
"devDependencies": {
Expand Down
12 changes: 12 additions & 0 deletions compiler/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,17 @@
# Changelog

### [0.5.10](https://github.com/grain-lang/grain/compare/compiler-v0.5.9...compiler-v0.5.10) (2022-12-23)


### Features

* **compiler:** Allow lists and arrays on the left side of access expressions ([#1557](https://github.com/grain-lang/grain/issues/1557)) ([8c00750](https://github.com/grain-lang/grain/commit/8c00750c099587f8131ea30e346841137c52bd83))


### Bug Fixes

* **compiler:** Provide appropriate error during invalid array access ([#1556](https://github.com/grain-lang/grain/issues/1556)) ([3d7b9e3](https://github.com/grain-lang/grain/commit/3d7b9e3d99b2639b46080e1c564d1453cd80f666))

### [0.5.9](https://github.com/grain-lang/grain/compare/compiler-v0.5.8...compiler-v0.5.9) (2022-12-14)


Expand Down
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 2.3)
(name grain)
(version 0.5.9)
(version 0.5.10)
(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.5.9",
"version": "0.5.10",
"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.5.9",
"version": "0.5.10",
"bin": {
"grainc": "_esy/default/build/install/default/bin/grainc"
},
Expand Down
7 changes: 7 additions & 0 deletions js-runner/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# Changelog

### [0.5.10](https://github.com/grain-lang/grain/compare/js-runner-v0.5.9...js-runner-v0.5.10) (2022-12-23)


### Miscellaneous Chores

* **js-runner:** Synchronize Grain versions

### [0.5.9](https://github.com/grain-lang/grain/compare/js-runner-v0.5.8...js-runner-v0.5.9) (2022-12-14)


Expand Down
2 changes: 1 addition & 1 deletion js-runner/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@grain/js-runner",
"version": "0.5.9",
"version": "0.5.10",
"description": "The JavaScript runner for the Grain language.",
"license": "MIT",
"homepage": "https://grain-lang.org",
Expand Down
4 changes: 2 additions & 2 deletions 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.5.9",
"version": "0.5.10",
"description": "The Grain monorepo.",
"workspaces": [
"cli",
Expand Down
7 changes: 7 additions & 0 deletions stdlib/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# Changelog

### [0.5.10](https://github.com/grain-lang/grain/compare/stdlib-v0.5.9...stdlib-v0.5.10) (2022-12-23)


### Bug Fixes

* **compiler:** Provide appropriate error during invalid array access ([#1556](https://github.com/grain-lang/grain/issues/1556)) ([3d7b9e3](https://github.com/grain-lang/grain/commit/3d7b9e3d99b2639b46080e1c564d1453cd80f666))

### [0.5.9](https://github.com/grain-lang/grain/compare/stdlib-v0.5.8...stdlib-v0.5.9) (2022-12-14)


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.5.9",
"version": "0.5.10",
"description": "The standard library for the Grain language.",
"license": "MIT",
"homepage": "https://grain-lang.org",
Expand Down

0 comments on commit 496a894

Please sign in to comment.