Skip to content

Commit

Permalink
Bump Slang Version (#1131)
Browse files Browse the repository at this point in the history
This PR was opened by the [Changesets
release](https://github.com/changesets/action) GitHub action. When
you're ready to do a release, you can merge this and publish to npm
yourself or [setup this action to publish
automatically](https://github.com/changesets/action#with-publishing). If
you're not ready to do a release yet, that's fine, whenever you add more
changesets to main, this PR will be updated.


# Releases
## @nomicfoundation/[email protected]

### Patch Changes

- [#1130](#1130)
[`a97b27d`](a97b27d)
Thanks [@OmarTawfik](https://github.com/OmarTawfik)! - fix a bug where
CST nodes are invalidated after using AST types

Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
  • Loading branch information
github-actions[bot] and github-actions[bot] authored Oct 23, 2024
1 parent c4c3e2b commit 14edad7
Show file tree
Hide file tree
Showing 13 changed files with 115 additions and 72 deletions.
5 changes: 0 additions & 5 deletions .changeset/two-drinks-check.md

This file was deleted.

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

## 0.18.3

### Patch Changes

- [#1130](https://github.com/NomicFoundation/slang/pull/1130) [`a97b27d`](https://github.com/NomicFoundation/slang/commit/a97b27d918c9719edddbb2816db3486f43f7ec24) Thanks [@OmarTawfik](https://github.com/OmarTawfik)! - fix a bug where CST nodes are invalidated after using AST types

## 0.18.2

### Patch Changes
Expand Down
64 changes: 32 additions & 32 deletions Cargo.lock

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

66 changes: 33 additions & 33 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[workspace.package]
version = "0.18.2"
version = "0.18.3"
rust-version = "1.79.0" # __RUST_STABLE_VERSION_MARKER__ (keep in sync)
edition = "2021"
publish = false
Expand Down Expand Up @@ -49,42 +49,42 @@ members = [
#
# Internal
#
codegen_ebnf = { path = "crates/codegen/ebnf", version = "0.18.2" }
codegen_language_definition = { path = "crates/codegen/language/definition", version = "0.18.2" }
codegen_language_internal_macros = { path = "crates/codegen/language/internal_macros", version = "0.18.2" }
codegen_language_macros = { path = "crates/codegen/language/macros", version = "0.18.2" }
codegen_language_tests = { path = "crates/codegen/language/tests", version = "0.18.2" }
codegen_runtime_cargo_crate = { path = "crates/codegen/runtime/cargo/crate", version = "0.18.2" }
codegen_runtime_cargo_wasm = { path = "crates/codegen/runtime/cargo/wasm", version = "0.18.2" }
codegen_runtime_generator = { path = "crates/codegen/runtime/generator", version = "0.18.2" }
codegen_runtime_npm_package = { path = "crates/codegen/runtime/npm/package", version = "0.18.2" }
codegen_spec = { path = "crates/codegen/spec", version = "0.18.2" }
codegen_testing = { path = "crates/codegen/testing", version = "0.18.2" }
codegen_ebnf = { path = "crates/codegen/ebnf", version = "0.18.3" }
codegen_language_definition = { path = "crates/codegen/language/definition", version = "0.18.3" }
codegen_language_internal_macros = { path = "crates/codegen/language/internal_macros", version = "0.18.3" }
codegen_language_macros = { path = "crates/codegen/language/macros", version = "0.18.3" }
codegen_language_tests = { path = "crates/codegen/language/tests", version = "0.18.3" }
codegen_runtime_cargo_crate = { path = "crates/codegen/runtime/cargo/crate", version = "0.18.3" }
codegen_runtime_cargo_wasm = { path = "crates/codegen/runtime/cargo/wasm", version = "0.18.3" }
codegen_runtime_generator = { path = "crates/codegen/runtime/generator", version = "0.18.3" }
codegen_runtime_npm_package = { path = "crates/codegen/runtime/npm/package", version = "0.18.3" }
codegen_spec = { path = "crates/codegen/spec", version = "0.18.3" }
codegen_testing = { path = "crates/codegen/testing", version = "0.18.3" }

infra_cli = { path = "crates/infra/cli", version = "0.18.2" }
infra_utils = { path = "crates/infra/utils", version = "0.18.2" }
infra_cli = { path = "crates/infra/cli", version = "0.18.3" }
infra_utils = { path = "crates/infra/utils", version = "0.18.3" }

metaslang_bindings = { path = "crates/metaslang/bindings", version = "0.18.2" }
metaslang_graph_builder = { path = "crates/metaslang/graph_builder", version = "0.18.2" }
metaslang_cst = { path = "crates/metaslang/cst", version = "0.18.2" }
metaslang_bindings = { path = "crates/metaslang/bindings", version = "0.18.3" }
metaslang_graph_builder = { path = "crates/metaslang/graph_builder", version = "0.18.3" }
metaslang_cst = { path = "crates/metaslang/cst", version = "0.18.3" }

slang_solidity = { path = "crates/solidity/outputs/cargo/crate", version = "0.18.2" }
slang_solidity_cli = { path = "crates/solidity/outputs/cargo/cli", version = "0.18.2" }
solidity_cargo_tests = { path = "crates/solidity/outputs/cargo/tests", version = "0.18.2" }
solidity_cargo_wasm = { path = "crates/solidity/outputs/cargo/wasm", version = "0.18.2" }
solidity_language = { path = "crates/solidity/inputs/language", version = "0.18.2" }
solidity_npm_package = { path = "crates/solidity/outputs/npm/package", version = "0.18.2" }
solidity_spec = { path = "crates/solidity/outputs/spec", version = "0.18.2" }
solidity_testing_perf = { path = "crates/solidity/testing/perf", version = "0.18.2" }
solidity_testing_sanctuary = { path = "crates/solidity/testing/sanctuary", version = "0.18.2" }
solidity_testing_snapshots = { path = "crates/solidity/testing/snapshots", version = "0.18.2" }
solidity_testing_solc = { path = "crates/solidity/testing/solc", version = "0.18.2" }
slang_solidity = { path = "crates/solidity/outputs/cargo/crate", version = "0.18.3" }
slang_solidity_cli = { path = "crates/solidity/outputs/cargo/cli", version = "0.18.3" }
solidity_cargo_tests = { path = "crates/solidity/outputs/cargo/tests", version = "0.18.3" }
solidity_cargo_wasm = { path = "crates/solidity/outputs/cargo/wasm", version = "0.18.3" }
solidity_language = { path = "crates/solidity/inputs/language", version = "0.18.3" }
solidity_npm_package = { path = "crates/solidity/outputs/npm/package", version = "0.18.3" }
solidity_spec = { path = "crates/solidity/outputs/spec", version = "0.18.3" }
solidity_testing_perf = { path = "crates/solidity/testing/perf", version = "0.18.3" }
solidity_testing_sanctuary = { path = "crates/solidity/testing/sanctuary", version = "0.18.3" }
solidity_testing_snapshots = { path = "crates/solidity/testing/snapshots", version = "0.18.3" }
solidity_testing_solc = { path = "crates/solidity/testing/solc", version = "0.18.3" }

slang_testlang = { path = "crates/testlang/outputs/cargo/crate", version = "0.18.2" }
testlang_cargo_tests = { path = "crates/testlang/outputs/cargo/tests", version = "0.18.2" }
testlang_cargo_wasm = { path = "crates/testlang/outputs/cargo/wasm", version = "0.18.2" }
testlang_language = { path = "crates/testlang/inputs/language", version = "0.18.2" }
testlang_npm_package = { path = "crates/testlang/outputs/npm/package", version = "0.18.2" }
slang_testlang = { path = "crates/testlang/outputs/cargo/crate", version = "0.18.3" }
testlang_cargo_tests = { path = "crates/testlang/outputs/cargo/tests", version = "0.18.3" }
testlang_cargo_wasm = { path = "crates/testlang/outputs/cargo/wasm", version = "0.18.3" }
testlang_language = { path = "crates/testlang/inputs/language", version = "0.18.3" }
testlang_npm_package = { path = "crates/testlang/outputs/npm/package", version = "0.18.3" }

#
# External
Expand Down
6 changes: 6 additions & 0 deletions crates/codegen/runtime/npm/package/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# changelog

## 0.18.3

### Patch Changes

- [#1130](https://github.com/NomicFoundation/slang/pull/1130) [`a97b27d`](https://github.com/NomicFoundation/slang/commit/a97b27d918c9719edddbb2816db3486f43f7ec24) Thanks [@OmarTawfik](https://github.com/OmarTawfik)! - fix a bug where CST nodes are invalidated after using AST types

## 0.18.2

### Patch Changes
Expand Down
Loading

0 comments on commit 14edad7

Please sign in to comment.