Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: release main #2103

Merged
merged 2 commits into from
Jun 27, 2024
Merged
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.6.3","cli":"0.6.3","compiler":"0.6.3","stdlib":"0.6.3"}
{".":"0.6.4","cli":"0.6.4","compiler":"0.6.4","stdlib":"0.6.4"}
13 changes: 13 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,18 @@
# Changelog

## [0.6.4](https://github.com/grain-lang/grain/compare/grain-v0.6.3...grain-v0.6.4) (2024-06-27)


### Features

* **graindoc:** Cache module comments ([#2102](https://github.com/grain-lang/grain/issues/2102)) ([d45ddfa](https://github.com/grain-lang/grain/commit/d45ddfaac5067d7d6c08703653a31187d35914a5))
* **stdlib:** Faster memory allocator ([#2124](https://github.com/grain-lang/grain/issues/2124)) ([03e10c4](https://github.com/grain-lang/grain/commit/03e10c49d204a488f8bd56c7b7262e717ee61762))


### Bug Fixes

* **compiler:** Stabilize CRC checks ([#2101](https://github.com/grain-lang/grain/issues/2101)) ([fc19761](https://github.com/grain-lang/grain/commit/fc19761e9f7e6c3d1cb54a308de721b17d25e12e))

## [0.6.3](https://github.com/grain-lang/grain/compare/grain-v0.6.2...grain-v0.6.3) (2024-04-06)


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.6.4](https://github.com/grain-lang/grain/compare/cli-v0.6.3...cli-v0.6.4) (2024-06-27)


### Miscellaneous Chores

* **cli:** Synchronize Grain versions

## [0.6.3](https://github.com/grain-lang/grain/compare/cli-v0.6.2...cli-v0.6.3) (2024-04-06)


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.6.3",
"version": "0.6.4",
"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.6.3",
"@grain/stdlib": "0.6.4",
"commander": "^8.1.0"
},
"devDependencies": {
Expand Down
13 changes: 13 additions & 0 deletions compiler/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,18 @@
# Changelog

## [0.6.4](https://github.com/grain-lang/grain/compare/compiler-v0.6.3...compiler-v0.6.4) (2024-06-27)


### Features

* **graindoc:** Cache module comments ([#2102](https://github.com/grain-lang/grain/issues/2102)) ([d45ddfa](https://github.com/grain-lang/grain/commit/d45ddfaac5067d7d6c08703653a31187d35914a5))
* **stdlib:** Faster memory allocator ([#2124](https://github.com/grain-lang/grain/issues/2124)) ([03e10c4](https://github.com/grain-lang/grain/commit/03e10c49d204a488f8bd56c7b7262e717ee61762))


### Bug Fixes

* **compiler:** Stabilize CRC checks ([#2101](https://github.com/grain-lang/grain/issues/2101)) ([fc19761](https://github.com/grain-lang/grain/commit/fc19761e9f7e6c3d1cb54a308de721b17d25e12e))

## [0.6.3](https://github.com/grain-lang/grain/compare/compiler-v0.6.2...compiler-v0.6.3) (2024-04-06)


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.6.3)
(version 0.6.4)
(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.6.3",
"version": "0.6.4",
"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.6.3",
"version": "0.6.4",
"bin": {
"grainc": "_esy/default/build/install/default/bin/grainc"
},
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.6.3",
"version": "0.6.4",
"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.6.4](https://github.com/grain-lang/grain/compare/stdlib-v0.6.3...stdlib-v0.6.4) (2024-06-27)


### Features

* **stdlib:** Faster memory allocator ([#2124](https://github.com/grain-lang/grain/issues/2124)) ([03e10c4](https://github.com/grain-lang/grain/commit/03e10c49d204a488f8bd56c7b7262e717ee61762))

## [0.6.3](https://github.com/grain-lang/grain/compare/stdlib-v0.6.2...stdlib-v0.6.3) (2024-04-06)


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