Skip to content

Commit

Permalink
Bump Slang Version
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] committed Jul 29, 2023
1 parent 95bbc50 commit b6e018b
Show file tree
Hide file tree
Showing 26 changed files with 136 additions and 223 deletions.
5 changes: 0 additions & 5 deletions .changeset/cuddly-avocados-sing.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/gold-knives-jump.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/metal-fans-raise.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/modern-tools-shake.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/neat-paws-unite.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/plenty-terms-rest.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/sweet-bugs-report.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/ten-doors-scream.md

This file was deleted.

22 changes: 22 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,27 @@
# changelog

## 0.9.0

### Minor Changes

- [#540](https://github.com/NomicFoundation/slang/pull/540) [`0d04f95`](https://github.com/NomicFoundation/slang/commit/0d04f959bf1f5831c912d5109de3d933cfaa6266) Thanks [@AntonyBlakey](https://github.com/AntonyBlakey)! - Add a Rust Cursor API and refactor the Rust Visitor API to run on top of it.

- [#540](https://github.com/NomicFoundation/slang/pull/540) [`0d04f95`](https://github.com/NomicFoundation/slang/commit/0d04f959bf1f5831c912d5109de3d933cfaa6266) Thanks [@AntonyBlakey](https://github.com/AntonyBlakey)! - Move Visitor et al to node:: namespace, which is where Cursor is.

- [#540](https://github.com/NomicFoundation/slang/pull/540) [`0d04f95`](https://github.com/NomicFoundation/slang/commit/0d04f959bf1f5831c912d5109de3d933cfaa6266) Thanks [@AntonyBlakey](https://github.com/AntonyBlakey)! - Rename `range` functions that return a TextRange to `text_range`

### Patch Changes

- [#543](https://github.com/NomicFoundation/slang/pull/543) [`7a34599`](https://github.com/NomicFoundation/slang/commit/7a34599f6b237b03a0f8ba92755cae6107589e37) Thanks [@OmarTawfik](https://github.com/OmarTawfik)! - Move `syntax::parser::ProductionKind` to `syntax::nodes` namespace.

- [#540](https://github.com/NomicFoundation/slang/pull/540) [`0d04f95`](https://github.com/NomicFoundation/slang/commit/0d04f959bf1f5831c912d5109de3d933cfaa6266) Thanks [@AntonyBlakey](https://github.com/AntonyBlakey)! - Add TokenNode.text to the TS API.

- [#540](https://github.com/NomicFoundation/slang/pull/540) [`0d04f95`](https://github.com/NomicFoundation/slang/commit/0d04f959bf1f5831c912d5109de3d933cfaa6266) Thanks [@AntonyBlakey](https://github.com/AntonyBlakey)! - Add first pass of Typescript binding to the Cursor API, but no TS Visitor yet.

- [#545](https://github.com/NomicFoundation/slang/pull/545) [`e73658a`](https://github.com/NomicFoundation/slang/commit/e73658ae4e777e78a01e213f213e2a5dc13e5cba) Thanks [@OmarTawfik](https://github.com/OmarTawfik)! - render EBNF grammar on top of each `ProductionKind`, `RuleKind`, and `TokenKind`.

- [#558](https://github.com/NomicFoundation/slang/pull/558) [`95bbc50`](https://github.com/NomicFoundation/slang/commit/95bbc5025fbf63b8d4e07f7652a70a7f66363db6) Thanks [@OmarTawfik](https://github.com/OmarTawfik)! - Correct versioning for `SourceUnitMember` and `ContractMember` children.

## 0.8.0

### Minor Changes
Expand Down
32 changes: 16 additions & 16 deletions Cargo.lock

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

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[workspace.package]
version = "0.8.0"
version = "0.9.0"
rust-version = "1.69.0" # Keep this version in sync with "$RUST_VERSION" in "$REPO_ROOT/bin/hermit.hcl" and "rust-src" in "$REPO_ROOT/bin"
edition = "2021"
publish = false
Expand Down
22 changes: 22 additions & 0 deletions crates/solidity/outputs/cargo/crate/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,27 @@
# changelog

## 0.9.0

### Minor Changes

- [#540](https://github.com/NomicFoundation/slang/pull/540) [`0d04f95`](https://github.com/NomicFoundation/slang/commit/0d04f959bf1f5831c912d5109de3d933cfaa6266) Thanks [@AntonyBlakey](https://github.com/AntonyBlakey)! - Add a Rust Cursor API and refactor the Rust Visitor API to run on top of it.

- [#540](https://github.com/NomicFoundation/slang/pull/540) [`0d04f95`](https://github.com/NomicFoundation/slang/commit/0d04f959bf1f5831c912d5109de3d933cfaa6266) Thanks [@AntonyBlakey](https://github.com/AntonyBlakey)! - Move Visitor et al to node:: namespace, which is where Cursor is.

- [#540](https://github.com/NomicFoundation/slang/pull/540) [`0d04f95`](https://github.com/NomicFoundation/slang/commit/0d04f959bf1f5831c912d5109de3d933cfaa6266) Thanks [@AntonyBlakey](https://github.com/AntonyBlakey)! - Rename `range` functions that return a TextRange to `text_range`

### Patch Changes

- [#543](https://github.com/NomicFoundation/slang/pull/543) [`7a34599`](https://github.com/NomicFoundation/slang/commit/7a34599f6b237b03a0f8ba92755cae6107589e37) Thanks [@OmarTawfik](https://github.com/OmarTawfik)! - Move `syntax::parser::ProductionKind` to `syntax::nodes` namespace.

- [#540](https://github.com/NomicFoundation/slang/pull/540) [`0d04f95`](https://github.com/NomicFoundation/slang/commit/0d04f959bf1f5831c912d5109de3d933cfaa6266) Thanks [@AntonyBlakey](https://github.com/AntonyBlakey)! - Add TokenNode.text to the TS API.

- [#540](https://github.com/NomicFoundation/slang/pull/540) [`0d04f95`](https://github.com/NomicFoundation/slang/commit/0d04f959bf1f5831c912d5109de3d933cfaa6266) Thanks [@AntonyBlakey](https://github.com/AntonyBlakey)! - Add first pass of Typescript binding to the Cursor API, but no TS Visitor yet.

- [#545](https://github.com/NomicFoundation/slang/pull/545) [`e73658a`](https://github.com/NomicFoundation/slang/commit/e73658ae4e777e78a01e213f213e2a5dc13e5cba) Thanks [@OmarTawfik](https://github.com/OmarTawfik)! - render EBNF grammar on top of each `ProductionKind`, `RuleKind`, and `TokenKind`.

- [#558](https://github.com/NomicFoundation/slang/pull/558) [`95bbc50`](https://github.com/NomicFoundation/slang/commit/95bbc5025fbf63b8d4e07f7652a70a7f66363db6) Thanks [@OmarTawfik](https://github.com/OmarTawfik)! - Correct versioning for `SourceUnitMember` and `ContractMember` children.

## 0.8.0

### Minor Changes
Expand Down
22 changes: 22 additions & 0 deletions crates/solidity/outputs/npm/package/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,27 @@
# changelog

## 0.9.0

### Minor Changes

- [#540](https://github.com/NomicFoundation/slang/pull/540) [`0d04f95`](https://github.com/NomicFoundation/slang/commit/0d04f959bf1f5831c912d5109de3d933cfaa6266) Thanks [@AntonyBlakey](https://github.com/AntonyBlakey)! - Add a Rust Cursor API and refactor the Rust Visitor API to run on top of it.

- [#540](https://github.com/NomicFoundation/slang/pull/540) [`0d04f95`](https://github.com/NomicFoundation/slang/commit/0d04f959bf1f5831c912d5109de3d933cfaa6266) Thanks [@AntonyBlakey](https://github.com/AntonyBlakey)! - Move Visitor et al to node:: namespace, which is where Cursor is.

- [#540](https://github.com/NomicFoundation/slang/pull/540) [`0d04f95`](https://github.com/NomicFoundation/slang/commit/0d04f959bf1f5831c912d5109de3d933cfaa6266) Thanks [@AntonyBlakey](https://github.com/AntonyBlakey)! - Rename `range` functions that return a TextRange to `text_range`

### Patch Changes

- [#543](https://github.com/NomicFoundation/slang/pull/543) [`7a34599`](https://github.com/NomicFoundation/slang/commit/7a34599f6b237b03a0f8ba92755cae6107589e37) Thanks [@OmarTawfik](https://github.com/OmarTawfik)! - Move `syntax::parser::ProductionKind` to `syntax::nodes` namespace.

- [#540](https://github.com/NomicFoundation/slang/pull/540) [`0d04f95`](https://github.com/NomicFoundation/slang/commit/0d04f959bf1f5831c912d5109de3d933cfaa6266) Thanks [@AntonyBlakey](https://github.com/AntonyBlakey)! - Add TokenNode.text to the TS API.

- [#540](https://github.com/NomicFoundation/slang/pull/540) [`0d04f95`](https://github.com/NomicFoundation/slang/commit/0d04f959bf1f5831c912d5109de3d933cfaa6266) Thanks [@AntonyBlakey](https://github.com/AntonyBlakey)! - Add first pass of Typescript binding to the Cursor API, but no TS Visitor yet.

- [#545](https://github.com/NomicFoundation/slang/pull/545) [`e73658a`](https://github.com/NomicFoundation/slang/commit/e73658ae4e777e78a01e213f213e2a5dc13e5cba) Thanks [@OmarTawfik](https://github.com/OmarTawfik)! - render EBNF grammar on top of each `ProductionKind`, `RuleKind`, and `TokenKind`.

- [#558](https://github.com/NomicFoundation/slang/pull/558) [`95bbc50`](https://github.com/NomicFoundation/slang/commit/95bbc5025fbf63b8d4e07f7652a70a7f66363db6) Thanks [@OmarTawfik](https://github.com/OmarTawfik)! - Correct versioning for `SourceUnitMember` and `ContractMember` children.

## 0.8.0

### Minor Changes
Expand Down
20 changes: 10 additions & 10 deletions crates/solidity/outputs/npm/package/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@nomicfoundation/slang",
"version": "0.8.0",
"version": "0.9.0",
"description": "A modular set of compiler APIs empowering the next generation of Solidity code analysis and developer tooling. Written in Rust and distributed in multiple languages.",
"homepage": "https://nomicfoundation.github.io/slang/",
"license": "MIT",
Expand Down Expand Up @@ -29,15 +29,15 @@
"prettier": "2.8.8"
},
"optionalDependencies": {
"@nomicfoundation/slang-darwin-arm64": "0.8.0",
"@nomicfoundation/slang-win32-arm64-msvc": "0.8.0",
"@nomicfoundation/slang-linux-arm64-gnu": "0.8.0",
"@nomicfoundation/slang-linux-arm64-musl": "0.8.0",
"@nomicfoundation/slang-win32-ia32-msvc": "0.8.0",
"@nomicfoundation/slang-darwin-x64": "0.8.0",
"@nomicfoundation/slang-win32-x64-msvc": "0.8.0",
"@nomicfoundation/slang-linux-x64-gnu": "0.8.0",
"@nomicfoundation/slang-linux-x64-musl": "0.8.0"
"@nomicfoundation/slang-darwin-arm64": "0.9.0",
"@nomicfoundation/slang-win32-arm64-msvc": "0.9.0",
"@nomicfoundation/slang-linux-arm64-gnu": "0.9.0",
"@nomicfoundation/slang-linux-arm64-musl": "0.9.0",
"@nomicfoundation/slang-win32-ia32-msvc": "0.9.0",
"@nomicfoundation/slang-darwin-x64": "0.9.0",
"@nomicfoundation/slang-win32-x64-msvc": "0.9.0",
"@nomicfoundation/slang-linux-x64-gnu": "0.9.0",
"@nomicfoundation/slang-linux-x64-musl": "0.9.0"
},
"napi": {
"triples": {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@nomicfoundation/slang-darwin-arm64",
"version": "0.8.0",
"version": "0.9.0",
"description": "Platform-specific binaries for @nomicfoundation/slang.",
"homepage": "https://nomicfoundation.github.io/slang/",
"license": "MIT",
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@nomicfoundation/slang-darwin-x64",
"version": "0.8.0",
"version": "0.9.0",
"description": "Platform-specific binaries for @nomicfoundation/slang.",
"homepage": "https://nomicfoundation.github.io/slang/",
"license": "MIT",
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@nomicfoundation/slang-linux-arm64-gnu",
"version": "0.8.0",
"version": "0.9.0",
"description": "Platform-specific binaries for @nomicfoundation/slang.",
"homepage": "https://nomicfoundation.github.io/slang/",
"license": "MIT",
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@nomicfoundation/slang-linux-arm64-musl",
"version": "0.8.0",
"version": "0.9.0",
"description": "Platform-specific binaries for @nomicfoundation/slang.",
"homepage": "https://nomicfoundation.github.io/slang/",
"license": "MIT",
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@nomicfoundation/slang-linux-x64-gnu",
"version": "0.8.0",
"version": "0.9.0",
"description": "Platform-specific binaries for @nomicfoundation/slang.",
"homepage": "https://nomicfoundation.github.io/slang/",
"license": "MIT",
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@nomicfoundation/slang-linux-x64-musl",
"version": "0.8.0",
"version": "0.9.0",
"description": "Platform-specific binaries for @nomicfoundation/slang.",
"homepage": "https://nomicfoundation.github.io/slang/",
"license": "MIT",
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@nomicfoundation/slang-win32-arm64-msvc",
"version": "0.8.0",
"version": "0.9.0",
"description": "Platform-specific binaries for @nomicfoundation/slang.",
"homepage": "https://nomicfoundation.github.io/slang/",
"license": "MIT",
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@nomicfoundation/slang-win32-ia32-msvc",
"version": "0.8.0",
"version": "0.9.0",
"description": "Platform-specific binaries for @nomicfoundation/slang.",
"homepage": "https://nomicfoundation.github.io/slang/",
"license": "MIT",
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@nomicfoundation/slang-win32-x64-msvc",
"version": "0.8.0",
"version": "0.9.0",
"description": "Platform-specific binaries for @nomicfoundation/slang.",
"homepage": "https://nomicfoundation.github.io/slang/",
"license": "MIT",
Expand Down
Loading

0 comments on commit b6e018b

Please sign in to comment.