Skip to content

Commit

Permalink
Release crates
Browse files Browse the repository at this point in the history
  • Loading branch information
Boshen authored and github-actions[bot] committed Aug 18, 2024
1 parent 48821c0 commit 38ce4d8
Show file tree
Hide file tree
Showing 39 changed files with 227 additions and 63 deletions.
40 changes: 20 additions & 20 deletions Cargo.lock

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

40 changes: 20 additions & 20 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -75,26 +75,26 @@ doc_lazy_continuation = "allow" # FIXME

[workspace.dependencies]
# publish = true
oxc = { version = "0.24.2", path = "crates/oxc" }
oxc_allocator = { version = "0.24.2", path = "crates/oxc_allocator" }
oxc_ast = { version = "0.24.2", path = "crates/oxc_ast" }
oxc_codegen = { version = "0.24.2", path = "crates/oxc_codegen" }
oxc_diagnostics = { version = "0.24.2", path = "crates/oxc_diagnostics" }
oxc_index = { version = "0.24.2", path = "crates/oxc_index" }
oxc_minifier = { version = "0.24.2", path = "crates/oxc_minifier" }
oxc_mangler = { version = "0.24.2", path = "crates/oxc_mangler" }
oxc_parser = { version = "0.24.2", path = "crates/oxc_parser" }
oxc_semantic = { version = "0.24.2", path = "crates/oxc_semantic" }
oxc_span = { version = "0.24.2", path = "crates/oxc_span" }
oxc_syntax = { version = "0.24.2", path = "crates/oxc_syntax" }
oxc_transformer = { version = "0.24.2", path = "crates/oxc_transformer" }
oxc_sourcemap = { version = "0.24.2", path = "crates/oxc_sourcemap" }
oxc_ast_macros = { version = "0.24.2", path = "crates/oxc_ast_macros" }
oxc_traverse = { version = "0.24.2", path = "crates/oxc_traverse" }
oxc_module_lexer = { version = "0.24.2", path = "crates/oxc_module_lexer" }
oxc_cfg = { version = "0.24.2", path = "crates/oxc_cfg" }
oxc_isolated_declarations = { version = "0.24.2", path = "crates/oxc_isolated_declarations" }
oxc_transform_napi = { version = "0.24.2", path = "napi/transform" }
oxc = { version = "0.24.3", path = "crates/oxc" }
oxc_allocator = { version = "0.24.3", path = "crates/oxc_allocator" }
oxc_ast = { version = "0.24.3", path = "crates/oxc_ast" }
oxc_codegen = { version = "0.24.3", path = "crates/oxc_codegen" }
oxc_diagnostics = { version = "0.24.3", path = "crates/oxc_diagnostics" }
oxc_index = { version = "0.24.3", path = "crates/oxc_index" }
oxc_minifier = { version = "0.24.3", path = "crates/oxc_minifier" }
oxc_mangler = { version = "0.24.3", path = "crates/oxc_mangler" }
oxc_parser = { version = "0.24.3", path = "crates/oxc_parser" }
oxc_semantic = { version = "0.24.3", path = "crates/oxc_semantic" }
oxc_span = { version = "0.24.3", path = "crates/oxc_span" }
oxc_syntax = { version = "0.24.3", path = "crates/oxc_syntax" }
oxc_transformer = { version = "0.24.3", path = "crates/oxc_transformer" }
oxc_sourcemap = { version = "0.24.3", path = "crates/oxc_sourcemap" }
oxc_ast_macros = { version = "0.24.3", path = "crates/oxc_ast_macros" }
oxc_traverse = { version = "0.24.3", path = "crates/oxc_traverse" }
oxc_module_lexer = { version = "0.24.3", path = "crates/oxc_module_lexer" }
oxc_cfg = { version = "0.24.3", path = "crates/oxc_cfg" }
oxc_isolated_declarations = { version = "0.24.3", path = "crates/oxc_isolated_declarations" }
oxc_transform_napi = { version = "0.24.3", path = "napi/transform" }

# publish = false
oxc_macros = { path = "crates/oxc_macros" }
Expand Down
2 changes: 1 addition & 1 deletion crates/oxc/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "oxc"
version = "0.24.2"
version = "0.24.3"
publish = true
authors.workspace = true
description.workspace = true
Expand Down
7 changes: 7 additions & 0 deletions crates/oxc_allocator/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,13 @@ All notable changes to this package will be documented in this file.

The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project does not adhere to [Semantic Versioning](https://semver.org/spec/v2.0.0.html) until v1.0.0.

## [0.24.3] - 2024-08-18

### Refactor

- a6967b3 allocator: Correct code comment (#4904) (overlookmotel)
- 90d0b2b allocator, ast, span, ast_tools: Use `allocator` as var name for `Allocator` (#4900) (overlookmotel)

## [0.24.2] - 2024-08-12

### Features
Expand Down
2 changes: 1 addition & 1 deletion crates/oxc_allocator/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "oxc_allocator"
version = "0.24.2"
version = "0.24.3"
authors.workspace = true
description.workspace = true
edition.workspace = true
Expand Down
22 changes: 22 additions & 0 deletions crates/oxc_ast/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,28 @@ All notable changes to this package will be documented in this file.

The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project does not adhere to [Semantic Versioning](https://semver.org/spec/v2.0.0.html) until v1.0.0.

## [0.24.3] - 2024-08-18

### Features

- fd34640 traverse: Support `generate_uid_based_on_node` method in `TraverseCtx` (#4940) (Dunqing)

### Bug Fixes

- c0b26f4 ast: Do not include `scope_id` fields in JSON AST (#4858) (overlookmotel)
- 879a271 minifier: Do not join `require` calls for `cjs-module-lexer` (#4875) (Boshen)
- 248a757 transformer/typescript: Typescript syntax within `SimpleAssignmentTarget` with `MemberExpressions` is not stripped (#4920) (Dunqing)

### Documentation

- 47c9552 ast, ast_macros, ast_tools: Better documentation for `Ast` helper attributes. (#4856) (rzvxa)

### Refactor

- 90d0b2b allocator, ast, span, ast_tools: Use `allocator` as var name for `Allocator` (#4900) (overlookmotel)
- 1eb59d2 ast, isolated_declarations, transformer: Mark `AstBuilder::copy` as an unsafe function (#4907) (overlookmotel)
- 8e8fcd0 ast_tools: Rename `oxc_ast_codegen` to `oxc_ast_tools`. (#4846) (rzvxa)

## [0.24.2] - 2024-08-12

### Documentation
Expand Down
2 changes: 1 addition & 1 deletion crates/oxc_ast/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "oxc_ast"
version = "0.24.2"
version = "0.24.3"
authors.workspace = true
description.workspace = true
edition.workspace = true
Expand Down
6 changes: 6 additions & 0 deletions crates/oxc_ast_macros/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,12 @@ All notable changes to this package will be documented in this file.

The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project does not adhere to [Semantic Versioning](https://semver.org/spec/v2.0.0.html) until v1.0.0.

## [0.24.3] - 2024-08-18

### Documentation

- 47c9552 ast, ast_macros, ast_tools: Better documentation for `Ast` helper attributes. (#4856) (rzvxa)

## [0.24.2] - 2024-08-12

### Refactor
Expand Down
2 changes: 1 addition & 1 deletion crates/oxc_ast_macros/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "oxc_ast_macros"
version = "0.24.2"
version = "0.24.3"
publish = true
authors.workspace = true
description.workspace = true
Expand Down
2 changes: 1 addition & 1 deletion crates/oxc_cfg/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "oxc_cfg"
version = "0.24.2"
version = "0.24.3"
publish = true
authors.workspace = true
description.workspace = true
Expand Down
17 changes: 17 additions & 0 deletions crates/oxc_codegen/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,23 @@ All notable changes to this package will be documented in this file.

The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project does not adhere to [Semantic Versioning](https://semver.org/spec/v2.0.0.html) until v1.0.0.

## [0.24.3] - 2024-08-18

### Features

- d49fb16 oxc_codegen: Support generate range leading comments (#4898) (IWANABETHATGUY)

### Bug Fixes

- bbf9ec0 codegen: Add missing `declare` to `PropertyDefinition` (#4937) (Boshen)
- f210cf7 codegen: Print `TSSatisfiesExpression` and `TSInstantiationExpression` (#4936) (Boshen)
- 21f5762 codegen: Minify large numbers (#4889) (Boshen)
- e8de4bd codegen: Fix whitespace issue when minifying `x in new Error()` (#4886) (Boshen)
- a226962 codegen: Print `TSNonNullExpression` (#4869) (Boshen)
- 3da33d3 codegen: Missing parenthesis for `PrivateInExpression` (#4865) (Boshen)
- 1808529 codegen: Dedupe pure annotation comments (#4862) (IWANABETHATGUY)
- 508644a linter/tree-shaking: Correct the calculation of `>>`, `<<` and `>>>` (#4932) (mysteryven)

## [0.24.0] - 2024-08-08

### Bug Fixes
Expand Down
2 changes: 1 addition & 1 deletion crates/oxc_codegen/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "oxc_codegen"
version = "0.24.2"
version = "0.24.3"
publish = true
authors.workspace = true
description.workspace = true
Expand Down
2 changes: 1 addition & 1 deletion crates/oxc_diagnostics/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "oxc_diagnostics"
version = "0.24.2"
version = "0.24.3"
authors.workspace = true
description.workspace = true
edition.workspace = true
Expand Down
6 changes: 6 additions & 0 deletions crates/oxc_index/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,12 @@ All notable changes to this package will be documented in this file.

The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project does not adhere to [Semantic Versioning](https://semver.org/spec/v2.0.0.html) until v1.0.0.

## [0.24.3] - 2024-08-18

### Refactor

- 786bf07 index: Shorten code and correct comment (#4905) (overlookmotel)

## [0.13.0] - 2024-05-14

### Bug Fixes
Expand Down
2 changes: 1 addition & 1 deletion crates/oxc_index/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "oxc_index"
version = "0.24.2"
version = "0.24.3"
publish = true
authors.workspace = true
description.workspace = true
Expand Down
Loading

0 comments on commit 38ce4d8

Please sign in to comment.