Skip to content

Commit

Permalink
0.22.2
Browse files Browse the repository at this point in the history
bump version
  • Loading branch information
HerringtonDarkholme committed May 12, 2024
1 parent efaa1ca commit 99989f9
Show file tree
Hide file tree
Showing 22 changed files with 49 additions and 41 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Expand Up @@ -4,8 +4,16 @@ All notable changes to this project will be documented in this file. Dates are d

Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog).

#### [0.22.2](https://github.com/ast-grep/ast-grep/compare/0.22.1...0.22.2)

- fix: fix releases [`3a6e553`](https://github.com/ast-grep/ast-grep/commit/3a6e55317a7904285b4f0df16c7f1f603a608543)
- fix: fix [`efaa1ca`](https://github.com/ast-grep/ast-grep/commit/efaa1ca85c4a61edf71247fb287dec4fcc60aba0)
- fix: debug [`e39fd12`](https://github.com/ast-grep/ast-grep/commit/e39fd12f19d051ff6ea2a8a65e632b241eeb95c0)

#### [0.22.1](https://github.com/ast-grep/ast-grep/compare/0.22.0...0.22.1)

> 12 May 2024
- feat(language): Add support for Haskell via `tree-sitter-haskell` [`#1128`](https://github.com/ast-grep/ast-grep/pull/1128)
- fix: add ast-grep to release [`#1130`](https://github.com/ast-grep/ast-grep/issues/1130)
- fix(deps): update dependency @swc/core to v1.5.5 [`31428dd`](https://github.com/ast-grep/ast-grep/commit/31428ddd2ab0d875b08a9a844b6aa2f067bad8ef)
Expand Down
18 changes: 9 additions & 9 deletions Cargo.lock

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

12 changes: 6 additions & 6 deletions Cargo.toml
Expand Up @@ -11,7 +11,7 @@ resolver = "2"
lto = true

[workspace.package]
version = "0.22.1"
version = "0.22.2"
authors = ["Herrington Darkholme <[email protected]>"]
edition = "2021"
license = "MIT"
Expand All @@ -22,11 +22,11 @@ rust-version = "1.67"
readme = "README.md"

[workspace.dependencies]
ast-grep-core = { path = "crates/core", version = "0.22.1" }
ast-grep-config = { path = "crates/config", version = "0.22.1" }
ast-grep-dynamic = { path = "crates/dynamic", version = "0.22.1" }
ast-grep-language = { path = "crates/language", version = "0.22.1" }
ast-grep-lsp = { path = "crates/lsp", version = "0.22.1" }
ast-grep-core = { path = "crates/core", version = "0.22.2" }
ast-grep-config = { path = "crates/config", version = "0.22.2" }
ast-grep-dynamic = { path = "crates/dynamic", version = "0.22.2" }
ast-grep-language = { path = "crates/language", version = "0.22.2" }
ast-grep-lsp = { path = "crates/lsp", version = "0.22.2" }

bit-set = { version = "0.5.3" }
ignore = { version = "0.4.22" }
Expand Down
2 changes: 1 addition & 1 deletion crates/napi/npm/darwin-arm64/package.json
@@ -1,6 +1,6 @@
{
"name": "@ast-grep/napi-darwin-arm64",
"version": "0.22.1",
"version": "0.22.2",
"os": [
"darwin"
],
Expand Down
2 changes: 1 addition & 1 deletion crates/napi/npm/darwin-x64/package.json
@@ -1,6 +1,6 @@
{
"name": "@ast-grep/napi-darwin-x64",
"version": "0.22.1",
"version": "0.22.2",
"os": [
"darwin"
],
Expand Down
2 changes: 1 addition & 1 deletion crates/napi/npm/linux-arm64-gnu/package.json
@@ -1,6 +1,6 @@
{
"name": "@ast-grep/napi-linux-arm64-gnu",
"version": "0.22.1",
"version": "0.22.2",
"os": [
"linux"
],
Expand Down
2 changes: 1 addition & 1 deletion crates/napi/npm/linux-x64-gnu/package.json
@@ -1,6 +1,6 @@
{
"name": "@ast-grep/napi-linux-x64-gnu",
"version": "0.22.1",
"version": "0.22.2",
"os": [
"linux"
],
Expand Down
2 changes: 1 addition & 1 deletion crates/napi/npm/linux-x64-musl/package.json
@@ -1,6 +1,6 @@
{
"name": "@ast-grep/napi-linux-x64-musl",
"version": "0.22.1",
"version": "0.22.2",
"os": [
"linux"
],
Expand Down
2 changes: 1 addition & 1 deletion crates/napi/npm/win32-arm64-msvc/package.json
@@ -1,6 +1,6 @@
{
"name": "@ast-grep/napi-win32-arm64-msvc",
"version": "0.22.1",
"version": "0.22.2",
"os": [
"win32"
],
Expand Down
2 changes: 1 addition & 1 deletion crates/napi/npm/win32-ia32-msvc/package.json
@@ -1,6 +1,6 @@
{
"name": "@ast-grep/napi-win32-ia32-msvc",
"version": "0.22.1",
"version": "0.22.2",
"os": [
"win32"
],
Expand Down
2 changes: 1 addition & 1 deletion crates/napi/npm/win32-x64-msvc/package.json
@@ -1,6 +1,6 @@
{
"name": "@ast-grep/napi-win32-x64-msvc",
"version": "0.22.1",
"version": "0.22.2",
"os": [
"win32"
],
Expand Down
2 changes: 1 addition & 1 deletion crates/napi/package.json
@@ -1,6 +1,6 @@
{
"name": "@ast-grep/napi",
"version": "0.22.1",
"version": "0.22.2",
"description": "Search and Rewrite code at large scale using precise AST pattern",
"homepage": "https://ast-grep.github.io",
"main": "index.js",
Expand Down
2 changes: 1 addition & 1 deletion crates/pyo3/pyproject.toml
Expand Up @@ -5,7 +5,7 @@ build-backend = "maturin"
[project]
name = "ast-grep-py"
requires-python = ">=3.8"
version = "0.22.1"
version = "0.22.2"
description = "Structural Search and Rewrite code at large scale using precise AST pattern."
authors = [{ name = "Herrington Darkholme", email = "[email protected]" }]
maintainers = [{ name = "Herrington Darkholme", email = "[email protected]" }]
Expand Down
16 changes: 8 additions & 8 deletions npm/package.json
@@ -1,6 +1,6 @@
{
"name": "@ast-grep/cli",
"version": "0.22.1",
"version": "0.22.2",
"publishConfig": {
"access": "public"
},
Expand Down Expand Up @@ -29,13 +29,13 @@
"postinstall": "node postinstall.js"
},
"optionalDependencies": {
"@ast-grep/cli-win32-arm64-msvc": "0.22.1",
"@ast-grep/cli-win32-ia32-msvc": "0.22.1",
"@ast-grep/cli-win32-x64-msvc": "0.22.1",
"@ast-grep/cli-darwin-arm64": "0.22.1",
"@ast-grep/cli-darwin-x64": "0.22.1",
"@ast-grep/cli-linux-arm64-gnu": "0.22.1",
"@ast-grep/cli-linux-x64-gnu": "0.22.1"
"@ast-grep/cli-win32-arm64-msvc": "0.22.2",
"@ast-grep/cli-win32-ia32-msvc": "0.22.2",
"@ast-grep/cli-win32-x64-msvc": "0.22.2",
"@ast-grep/cli-darwin-arm64": "0.22.2",
"@ast-grep/cli-darwin-x64": "0.22.2",
"@ast-grep/cli-linux-arm64-gnu": "0.22.2",
"@ast-grep/cli-linux-x64-gnu": "0.22.2"
},
"bin": {
"sg": "sg",
Expand Down
2 changes: 1 addition & 1 deletion npm/platforms/darwin-arm64/package.json
@@ -1,6 +1,6 @@
{
"name": "@ast-grep/cli-darwin-arm64",
"version": "0.22.1",
"version": "0.22.2",
"os": [
"darwin"
],
Expand Down
2 changes: 1 addition & 1 deletion npm/platforms/darwin-x64/package.json
@@ -1,6 +1,6 @@
{
"name": "@ast-grep/cli-darwin-x64",
"version": "0.22.1",
"version": "0.22.2",
"os": [
"darwin"
],
Expand Down
2 changes: 1 addition & 1 deletion npm/platforms/linux-arm64-gnu/package.json
@@ -1,6 +1,6 @@
{
"name": "@ast-grep/cli-linux-arm64-gnu",
"version": "0.22.1",
"version": "0.22.2",
"os": [
"linux"
],
Expand Down
2 changes: 1 addition & 1 deletion npm/platforms/linux-x64-gnu/package.json
@@ -1,6 +1,6 @@
{
"name": "@ast-grep/cli-linux-x64-gnu",
"version": "0.22.1",
"version": "0.22.2",
"os": [
"linux"
],
Expand Down
2 changes: 1 addition & 1 deletion npm/platforms/win32-arm64-msvc/package.json
@@ -1,6 +1,6 @@
{
"name": "@ast-grep/cli-win32-arm64-msvc",
"version": "0.22.1",
"version": "0.22.2",
"os": [
"win32"
],
Expand Down
2 changes: 1 addition & 1 deletion npm/platforms/win32-ia32-msvc/package.json
@@ -1,6 +1,6 @@
{
"name": "@ast-grep/cli-win32-ia32-msvc",
"version": "0.22.1",
"version": "0.22.2",
"os": [
"win32"
],
Expand Down
2 changes: 1 addition & 1 deletion npm/platforms/win32-x64-msvc/package.json
@@ -1,6 +1,6 @@
{
"name": "@ast-grep/cli-win32-x64-msvc",
"version": "0.22.1",
"version": "0.22.2",
"os": [
"win32"
],
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Expand Up @@ -4,7 +4,7 @@ build-backend = "maturin"

[project]
name = "ast-grep-cli"
version = "0.22.1"
version = "0.22.2"
description = "Structural Search and Rewrite code at large scale using precise AST pattern."
authors = [{ name = "Herrington Darkholme", email = "[email protected]" }]
maintainers = [{ name = "Herrington Darkholme", email = "[email protected]" }]
Expand Down

0 comments on commit 99989f9

Please sign in to comment.