Skip to content

Commit

Permalink
chore: release main (#2128)
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>
Co-authored-by: Grain Bot <[email protected]>
  • Loading branch information
github-actions[bot] and grainbot committed Aug 1, 2024
1 parent 4399387 commit 1ad351c
Show file tree
Hide file tree
Showing 15 changed files with 80 additions and 22 deletions.
2 changes: 1 addition & 1 deletion .release-please-manifest.json
Original file line number Diff line number Diff line change
@@ -1 +1 @@
{".":"0.6.4","cli":"0.6.4","compiler":"0.6.4","stdlib":"0.6.4"}
{".":"0.6.5","cli":"0.6.5","compiler":"0.6.5","stdlib":"0.6.5"}
19 changes: 19 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,24 @@
# Changelog

## [0.6.5](https://github.com/grain-lang/grain/compare/grain-v0.6.4...grain-v0.6.5) (2024-07-31)


### Features

* **lsp:** Explicit type annotation code action ([#2125](https://github.com/grain-lang/grain/issues/2125)) ([d34d381](https://github.com/grain-lang/grain/commit/d34d381232814b41d343e867461e9b71793b11e7))
* **lsp:** Goto type definition ([#2129](https://github.com/grain-lang/grain/issues/2129)) ([4bb8fae](https://github.com/grain-lang/grain/commit/4bb8faeb0b4317f0acd3c9b9de9db2c87b41db8d))
* **lsp:** Use argument label code action ([#2126](https://github.com/grain-lang/grain/issues/2126)) ([4399387](https://github.com/grain-lang/grain/commit/43993871418d9b8e804df246aa66dee6efb47b58))
* **stdlib:** Add `abs`, `neg`, `isNaN`, `isInfinite` to `Float32` ([#2116](https://github.com/grain-lang/grain/issues/2116)) ([fb1d481](https://github.com/grain-lang/grain/commit/fb1d481715974c6639588a9a72d4739516319e40))
* **stdlib:** Add `abs`, `neg`, `isNaN`, `isInfinite` to `Float64` ([#2117](https://github.com/grain-lang/grain/issues/2117)) ([9469346](https://github.com/grain-lang/grain/commit/9469346fa26a4df4188e53f8994d5692286d2e9f))
* **stdlib:** Add `forEachChar`, `forEachCharI`, `map` and `mapi` to String module ([#1864](https://github.com/grain-lang/grain/issues/1864)) ([4305e82](https://github.com/grain-lang/grain/commit/4305e829e160c6d2e49a249e3ec19baaa3c33744))


### Bug Fixes

* **compiler:** Don't trigger recompilation for unnecessary compiler flags ([#2106](https://github.com/grain-lang/grain/issues/2106)) ([4275c17](https://github.com/grain-lang/grain/commit/4275c17c556d2a29963b2c657b16c45c2342f881))
* **lsp:** Improve lsp behaviour on goto definition ([#1893](https://github.com/grain-lang/grain/issues/1893)) ([d822c87](https://github.com/grain-lang/grain/commit/d822c877ee4aa2f439e850ce017542a809672316))
* **stdlib:** Ensure references are retained in unsafe stdlib functions ([#2118](https://github.com/grain-lang/grain/issues/2118)) ([639856f](https://github.com/grain-lang/grain/commit/639856f9f99edb00bfb19a0ec6f298d48972d3e4))

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


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.5](https://github.com/grain-lang/grain/compare/cli-v0.6.4...cli-v0.6.5) (2024-07-31)


### Miscellaneous Chores

* **cli:** Synchronize Grain versions

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


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

## [0.6.5](https://github.com/grain-lang/grain/compare/compiler-v0.6.4...compiler-v0.6.5) (2024-07-31)


### Features

* **lsp:** Explicit type annotation code action ([#2125](https://github.com/grain-lang/grain/issues/2125)) ([d34d381](https://github.com/grain-lang/grain/commit/d34d381232814b41d343e867461e9b71793b11e7))
* **lsp:** Goto type definition ([#2129](https://github.com/grain-lang/grain/issues/2129)) ([4bb8fae](https://github.com/grain-lang/grain/commit/4bb8faeb0b4317f0acd3c9b9de9db2c87b41db8d))
* **lsp:** Use argument label code action ([#2126](https://github.com/grain-lang/grain/issues/2126)) ([4399387](https://github.com/grain-lang/grain/commit/43993871418d9b8e804df246aa66dee6efb47b58))
* **stdlib:** Add `abs`, `neg`, `isNaN`, `isInfinite` to `Float32` ([#2116](https://github.com/grain-lang/grain/issues/2116)) ([fb1d481](https://github.com/grain-lang/grain/commit/fb1d481715974c6639588a9a72d4739516319e40))
* **stdlib:** Add `abs`, `neg`, `isNaN`, `isInfinite` to `Float64` ([#2117](https://github.com/grain-lang/grain/issues/2117)) ([9469346](https://github.com/grain-lang/grain/commit/9469346fa26a4df4188e53f8994d5692286d2e9f))
* **stdlib:** Add `forEachChar`, `forEachCharI`, `map` and `mapi` to String module ([#1864](https://github.com/grain-lang/grain/issues/1864)) ([4305e82](https://github.com/grain-lang/grain/commit/4305e829e160c6d2e49a249e3ec19baaa3c33744))


### Bug Fixes

* **compiler:** Don't trigger recompilation for unnecessary compiler flags ([#2106](https://github.com/grain-lang/grain/issues/2106)) ([4275c17](https://github.com/grain-lang/grain/commit/4275c17c556d2a29963b2c657b16c45c2342f881))
* **lsp:** Improve lsp behaviour on goto definition ([#1893](https://github.com/grain-lang/grain/issues/1893)) ([d822c87](https://github.com/grain-lang/grain/commit/d822c877ee4aa2f439e850ce017542a809672316))

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


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.4)
(version 0.6.5)
(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.4",
"version": "0.6.5",
"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.4",
"version": "0.6.5",
"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.4",
"version": "0.6.5",
"description": "The Grain monorepo.",
"workspaces": [
"cli",
Expand Down
14 changes: 14 additions & 0 deletions stdlib/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,19 @@
# Changelog

## [0.6.5](https://github.com/grain-lang/grain/compare/stdlib-v0.6.4...stdlib-v0.6.5) (2024-07-31)


### Features

* **stdlib:** Add `abs`, `neg`, `isNaN`, `isInfinite` to `Float32` ([#2116](https://github.com/grain-lang/grain/issues/2116)) ([fb1d481](https://github.com/grain-lang/grain/commit/fb1d481715974c6639588a9a72d4739516319e40))
* **stdlib:** Add `abs`, `neg`, `isNaN`, `isInfinite` to `Float64` ([#2117](https://github.com/grain-lang/grain/issues/2117)) ([9469346](https://github.com/grain-lang/grain/commit/9469346fa26a4df4188e53f8994d5692286d2e9f))
* **stdlib:** Add `forEachChar`, `forEachCharI`, `map` and `mapi` to String module ([#1864](https://github.com/grain-lang/grain/issues/1864)) ([4305e82](https://github.com/grain-lang/grain/commit/4305e829e160c6d2e49a249e3ec19baaa3c33744))


### Bug Fixes

* **stdlib:** Ensure references are retained in unsafe stdlib functions ([#2118](https://github.com/grain-lang/grain/issues/2118)) ([639856f](https://github.com/grain-lang/grain/commit/639856f9f99edb00bfb19a0ec6f298d48972d3e4))

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


Expand Down
8 changes: 4 additions & 4 deletions stdlib/float32.md
Original file line number Diff line number Diff line change
Expand Up @@ -483,7 +483,7 @@ assert 3.0f >= 3.0f
### Float32.**isNaN**

<details disabled>
<summary tabindex="-1">Added in <code>next</code></summary>
<summary tabindex="-1">Added in <code>0.6.5</code></summary>
No other changes yet.
</details>

Expand Down Expand Up @@ -530,7 +530,7 @@ Float32.isNaN(1.0f) == false
### Float32.**isInfinite**

<details disabled>
<summary tabindex="-1">Added in <code>next</code></summary>
<summary tabindex="-1">Added in <code>0.6.5</code></summary>
No other changes yet.
</details>

Expand Down Expand Up @@ -577,7 +577,7 @@ Float32.isInfinite(1.0f) == false
### Float32.**abs**

<details disabled>
<summary tabindex="-1">Added in <code>next</code></summary>
<summary tabindex="-1">Added in <code>0.6.5</code></summary>
No other changes yet.
</details>

Expand Down Expand Up @@ -612,7 +612,7 @@ Float32.abs(5.0f) == 5.0f
### Float32.**neg**

<details disabled>
<summary tabindex="-1">Added in <code>next</code></summary>
<summary tabindex="-1">Added in <code>0.6.5</code></summary>
No other changes yet.
</details>

Expand Down
8 changes: 4 additions & 4 deletions stdlib/float64.md
Original file line number Diff line number Diff line change
Expand Up @@ -483,7 +483,7 @@ assert -1.0d >= -1.0d
### Float64.**isNaN**

<details disabled>
<summary tabindex="-1">Added in <code>next</code></summary>
<summary tabindex="-1">Added in <code>0.6.5</code></summary>
No other changes yet.
</details>

Expand Down Expand Up @@ -530,7 +530,7 @@ Float64.isNaN(1.0d) == false
### Float64.**isInfinite**

<details disabled>
<summary tabindex="-1">Added in <code>next</code></summary>
<summary tabindex="-1">Added in <code>0.6.5</code></summary>
No other changes yet.
</details>

Expand Down Expand Up @@ -577,7 +577,7 @@ Float64.isInfinite(1.0d) == false
### Float64.**abs**

<details disabled>
<summary tabindex="-1">Added in <code>next</code></summary>
<summary tabindex="-1">Added in <code>0.6.5</code></summary>
No other changes yet.
</details>

Expand Down Expand Up @@ -612,7 +612,7 @@ Float64.abs(5.0d) == 5.0d
### Float64.**neg**

<details disabled>
<summary tabindex="-1">Added in <code>next</code></summary>
<summary tabindex="-1">Added in <code>0.6.5</code></summary>
No other changes yet.
</details>

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.4",
"version": "0.6.5",
"description": "The standard library for the Grain language.",
"license": "MIT",
"homepage": "https://grain-lang.org",
Expand Down
8 changes: 4 additions & 4 deletions stdlib/string.md
Original file line number Diff line number Diff line change
Expand Up @@ -914,7 +914,7 @@ String.forEachCodePointi((codepoint, index) => print((codepoint, index)), "Hello
### String.**forEachChar**

<details disabled>
<summary tabindex="-1">Added in <code>next</code></summary>
<summary tabindex="-1">Added in <code>0.6.5</code></summary>
No other changes yet.
</details>

Expand All @@ -940,7 +940,7 @@ String.forEachChar(print, "Hello world")
### String.**forEachChari**

<details disabled>
<summary tabindex="-1">Added in <code>next</code></summary>
<summary tabindex="-1">Added in <code>0.6.5</code></summary>
No other changes yet.
</details>

Expand Down Expand Up @@ -968,7 +968,7 @@ String.forEachChari((char, index) => print((char, index)), "Hello world")
### String.**map**

<details disabled>
<summary tabindex="-1">Added in <code>next</code></summary>
<summary tabindex="-1">Added in <code>0.6.5</code></summary>
No other changes yet.
</details>

Expand All @@ -994,7 +994,7 @@ assert String.map((c) => 'a', "Hello world") == "aaaaaaaaaaa"
### String.**mapi**

<details disabled>
<summary tabindex="-1">Added in <code>next</code></summary>
<summary tabindex="-1">Added in <code>0.6.5</code></summary>
No other changes yet.
</details>

Expand Down

0 comments on commit 1ad351c

Please sign in to comment.