ast-grep-py 0.38.5__tar.gz → 0.38.6__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


This version of ast-grep-py might be problematic. Click here for more details.

Files changed (93) hide show
  1. {ast_grep_py-0.38.5 → ast_grep_py-0.38.6}/Cargo.lock +31 -31
  2. {ast_grep_py-0.38.5 → ast_grep_py-0.38.6}/Cargo.toml +6 -6
  3. {ast_grep_py-0.38.5 → ast_grep_py-0.38.6}/PKG-INFO +1 -1
  4. {ast_grep_py-0.38.5 → ast_grep_py-0.38.6}/crates/dynamic/src/lib.rs +1 -1
  5. {ast_grep_py-0.38.5 → ast_grep_py-0.38.6}/crates/language/Cargo.toml +1 -1
  6. {ast_grep_py-0.38.5 → ast_grep_py-0.38.6}/pyproject.toml +1 -1
  7. {ast_grep_py-0.38.5 → ast_grep_py-0.38.6}/README.md +0 -0
  8. {ast_grep_py-0.38.5 → ast_grep_py-0.38.6}/ast_grep_py/__init__.py +0 -0
  9. {ast_grep_py-0.38.5 → ast_grep_py-0.38.6}/ast_grep_py/ast_grep_py.pyi +0 -0
  10. {ast_grep_py-0.38.5 → ast_grep_py-0.38.6}/ast_grep_py/py.typed +0 -0
  11. {ast_grep_py-0.38.5 → ast_grep_py-0.38.6}/crates/config/Cargo.toml +0 -0
  12. {ast_grep_py-0.38.5 → ast_grep_py-0.38.6}/crates/config/src/check_var.rs +0 -0
  13. {ast_grep_py-0.38.5 → ast_grep_py-0.38.6}/crates/config/src/combined.rs +0 -0
  14. {ast_grep_py-0.38.5 → ast_grep_py-0.38.6}/crates/config/src/fixer.rs +0 -0
  15. {ast_grep_py-0.38.5 → ast_grep_py-0.38.6}/crates/config/src/label.rs +0 -0
  16. {ast_grep_py-0.38.5 → ast_grep_py-0.38.6}/crates/config/src/lib.rs +0 -0
  17. {ast_grep_py-0.38.5 → ast_grep_py-0.38.6}/crates/config/src/maybe.rs +0 -0
  18. {ast_grep_py-0.38.5 → ast_grep_py-0.38.6}/crates/config/src/rule/deserialize_env.rs +0 -0
  19. {ast_grep_py-0.38.5 → ast_grep_py-0.38.6}/crates/config/src/rule/mod.rs +0 -0
  20. {ast_grep_py-0.38.5 → ast_grep_py-0.38.6}/crates/config/src/rule/nth_child.rs +0 -0
  21. {ast_grep_py-0.38.5 → ast_grep_py-0.38.6}/crates/config/src/rule/range.rs +0 -0
  22. {ast_grep_py-0.38.5 → ast_grep_py-0.38.6}/crates/config/src/rule/referent_rule.rs +0 -0
  23. {ast_grep_py-0.38.5 → ast_grep_py-0.38.6}/crates/config/src/rule/relational_rule.rs +0 -0
  24. {ast_grep_py-0.38.5 → ast_grep_py-0.38.6}/crates/config/src/rule/stop_by.rs +0 -0
  25. {ast_grep_py-0.38.5 → ast_grep_py-0.38.6}/crates/config/src/rule_collection.rs +0 -0
  26. {ast_grep_py-0.38.5 → ast_grep_py-0.38.6}/crates/config/src/rule_config.rs +0 -0
  27. {ast_grep_py-0.38.5 → ast_grep_py-0.38.6}/crates/config/src/rule_core.rs +0 -0
  28. {ast_grep_py-0.38.5 → ast_grep_py-0.38.6}/crates/config/src/transform/mod.rs +0 -0
  29. {ast_grep_py-0.38.5 → ast_grep_py-0.38.6}/crates/config/src/transform/parse.rs +0 -0
  30. {ast_grep_py-0.38.5 → ast_grep_py-0.38.6}/crates/config/src/transform/rewrite.rs +0 -0
  31. {ast_grep_py-0.38.5 → ast_grep_py-0.38.6}/crates/config/src/transform/string_case.rs +0 -0
  32. {ast_grep_py-0.38.5 → ast_grep_py-0.38.6}/crates/config/src/transform/trans.rs +0 -0
  33. {ast_grep_py-0.38.5 → ast_grep_py-0.38.6}/crates/core/Cargo.toml +0 -0
  34. {ast_grep_py-0.38.5 → ast_grep_py-0.38.6}/crates/core/src/language.rs +0 -0
  35. {ast_grep_py-0.38.5 → ast_grep_py-0.38.6}/crates/core/src/lib.rs +0 -0
  36. {ast_grep_py-0.38.5 → ast_grep_py-0.38.6}/crates/core/src/match_tree/match_node.rs +0 -0
  37. {ast_grep_py-0.38.5 → ast_grep_py-0.38.6}/crates/core/src/match_tree/mod.rs +0 -0
  38. {ast_grep_py-0.38.5 → ast_grep_py-0.38.6}/crates/core/src/match_tree/strictness.rs +0 -0
  39. {ast_grep_py-0.38.5 → ast_grep_py-0.38.6}/crates/core/src/matcher/kind.rs +0 -0
  40. {ast_grep_py-0.38.5 → ast_grep_py-0.38.6}/crates/core/src/matcher/node_match.rs +0 -0
  41. {ast_grep_py-0.38.5 → ast_grep_py-0.38.6}/crates/core/src/matcher/pattern.rs +0 -0
  42. {ast_grep_py-0.38.5 → ast_grep_py-0.38.6}/crates/core/src/matcher/text.rs +0 -0
  43. {ast_grep_py-0.38.5 → ast_grep_py-0.38.6}/crates/core/src/matcher.rs +0 -0
  44. {ast_grep_py-0.38.5 → ast_grep_py-0.38.6}/crates/core/src/meta_var.rs +0 -0
  45. {ast_grep_py-0.38.5 → ast_grep_py-0.38.6}/crates/core/src/node.rs +0 -0
  46. {ast_grep_py-0.38.5 → ast_grep_py-0.38.6}/crates/core/src/ops.rs +0 -0
  47. {ast_grep_py-0.38.5 → ast_grep_py-0.38.6}/crates/core/src/pinned.rs +0 -0
  48. {ast_grep_py-0.38.5 → ast_grep_py-0.38.6}/crates/core/src/replacer/indent.rs +0 -0
  49. {ast_grep_py-0.38.5 → ast_grep_py-0.38.6}/crates/core/src/replacer/structural.rs +0 -0
  50. {ast_grep_py-0.38.5 → ast_grep_py-0.38.6}/crates/core/src/replacer/template.rs +0 -0
  51. {ast_grep_py-0.38.5 → ast_grep_py-0.38.6}/crates/core/src/replacer.rs +0 -0
  52. {ast_grep_py-0.38.5 → ast_grep_py-0.38.6}/crates/core/src/source.rs +0 -0
  53. {ast_grep_py-0.38.5 → ast_grep_py-0.38.6}/crates/core/src/tree_sitter/mod.rs +0 -0
  54. {ast_grep_py-0.38.5 → ast_grep_py-0.38.6}/crates/core/src/tree_sitter/traversal.rs +0 -0
  55. {ast_grep_py-0.38.5 → ast_grep_py-0.38.6}/crates/dynamic/Cargo.toml +0 -0
  56. {ast_grep_py-0.38.5 → ast_grep_py-0.38.6}/crates/dynamic/src/custom_lang.rs +0 -0
  57. {ast_grep_py-0.38.5 → ast_grep_py-0.38.6}/crates/language/src/bash.rs +0 -0
  58. {ast_grep_py-0.38.5 → ast_grep_py-0.38.6}/crates/language/src/cpp.rs +0 -0
  59. {ast_grep_py-0.38.5 → ast_grep_py-0.38.6}/crates/language/src/csharp.rs +0 -0
  60. {ast_grep_py-0.38.5 → ast_grep_py-0.38.6}/crates/language/src/css.rs +0 -0
  61. {ast_grep_py-0.38.5 → ast_grep_py-0.38.6}/crates/language/src/elixir.rs +0 -0
  62. {ast_grep_py-0.38.5 → ast_grep_py-0.38.6}/crates/language/src/go.rs +0 -0
  63. {ast_grep_py-0.38.5 → ast_grep_py-0.38.6}/crates/language/src/haskell.rs +0 -0
  64. {ast_grep_py-0.38.5 → ast_grep_py-0.38.6}/crates/language/src/html.rs +0 -0
  65. {ast_grep_py-0.38.5 → ast_grep_py-0.38.6}/crates/language/src/json.rs +0 -0
  66. {ast_grep_py-0.38.5 → ast_grep_py-0.38.6}/crates/language/src/kotlin.rs +0 -0
  67. {ast_grep_py-0.38.5 → ast_grep_py-0.38.6}/crates/language/src/lib.rs +0 -0
  68. {ast_grep_py-0.38.5 → ast_grep_py-0.38.6}/crates/language/src/lua.rs +0 -0
  69. {ast_grep_py-0.38.5 → ast_grep_py-0.38.6}/crates/language/src/parsers.rs +0 -0
  70. {ast_grep_py-0.38.5 → ast_grep_py-0.38.6}/crates/language/src/php.rs +0 -0
  71. {ast_grep_py-0.38.5 → ast_grep_py-0.38.6}/crates/language/src/python.rs +0 -0
  72. {ast_grep_py-0.38.5 → ast_grep_py-0.38.6}/crates/language/src/ruby.rs +0 -0
  73. {ast_grep_py-0.38.5 → ast_grep_py-0.38.6}/crates/language/src/rust.rs +0 -0
  74. {ast_grep_py-0.38.5 → ast_grep_py-0.38.6}/crates/language/src/scala.rs +0 -0
  75. {ast_grep_py-0.38.5 → ast_grep_py-0.38.6}/crates/language/src/swift.rs +0 -0
  76. {ast_grep_py-0.38.5 → ast_grep_py-0.38.6}/crates/language/src/yaml.rs +0 -0
  77. {ast_grep_py-0.38.5 → ast_grep_py-0.38.6}/crates/pyo3/Cargo.toml +0 -0
  78. {ast_grep_py-0.38.5 → ast_grep_py-0.38.6}/crates/pyo3/README.md +0 -0
  79. {ast_grep_py-0.38.5 → ast_grep_py-0.38.6}/crates/pyo3/ast_grep_py/__init__.py +0 -0
  80. {ast_grep_py-0.38.5 → ast_grep_py-0.38.6}/crates/pyo3/ast_grep_py/ast_grep_py.pyi +0 -0
  81. {ast_grep_py-0.38.5 → ast_grep_py-0.38.6}/crates/pyo3/ast_grep_py/py.typed +0 -0
  82. {ast_grep_py-0.38.5 → ast_grep_py-0.38.6}/crates/pyo3/src/lib.rs +0 -0
  83. {ast_grep_py-0.38.5 → ast_grep_py-0.38.6}/crates/pyo3/src/py_lang.rs +0 -0
  84. {ast_grep_py-0.38.5 → ast_grep_py-0.38.6}/crates/pyo3/src/py_node.rs +0 -0
  85. {ast_grep_py-0.38.5 → ast_grep_py-0.38.6}/crates/pyo3/src/range.rs +0 -0
  86. {ast_grep_py-0.38.5 → ast_grep_py-0.38.6}/crates/pyo3/src/unicode_position.rs +0 -0
  87. {ast_grep_py-0.38.5 → ast_grep_py-0.38.6}/crates/pyo3/tests/test_fix.py +0 -0
  88. {ast_grep_py-0.38.5 → ast_grep_py-0.38.6}/crates/pyo3/tests/test_range.py +0 -0
  89. {ast_grep_py-0.38.5 → ast_grep_py-0.38.6}/crates/pyo3/tests/test_register_lang.py +0 -0
  90. {ast_grep_py-0.38.5 → ast_grep_py-0.38.6}/crates/pyo3/tests/test_rule.py +0 -0
  91. {ast_grep_py-0.38.5 → ast_grep_py-0.38.6}/crates/pyo3/tests/test_simple.py +0 -0
  92. {ast_grep_py-0.38.5 → ast_grep_py-0.38.6}/crates/pyo3/tests/test_traversal.py +0 -0
  93. {ast_grep_py-0.38.5 → ast_grep_py-0.38.6}/crates/pyo3/tests/test_wrong_usage.py +0 -0
@@ -109,7 +109,7 @@ dependencies = [
109
109
 
110
110
  [[package]]
111
111
  name = "ast-grep"
112
- version = "0.38.5"
112
+ version = "0.38.6"
113
113
  dependencies = [
114
114
  "ansi_term",
115
115
  "anyhow",
@@ -143,7 +143,7 @@ dependencies = [
143
143
 
144
144
  [[package]]
145
145
  name = "ast-grep-config"
146
- version = "0.38.5"
146
+ version = "0.38.6"
147
147
  dependencies = [
148
148
  "ast-grep-core",
149
149
  "bit-set",
@@ -158,7 +158,7 @@ dependencies = [
158
158
 
159
159
  [[package]]
160
160
  name = "ast-grep-core"
161
- version = "0.38.5"
161
+ version = "0.38.6"
162
162
  dependencies = [
163
163
  "bit-set",
164
164
  "regex",
@@ -169,7 +169,7 @@ dependencies = [
169
169
 
170
170
  [[package]]
171
171
  name = "ast-grep-dynamic"
172
- version = "0.38.5"
172
+ version = "0.38.6"
173
173
  dependencies = [
174
174
  "ast-grep-core",
175
175
  "ignore",
@@ -183,7 +183,7 @@ dependencies = [
183
183
 
184
184
  [[package]]
185
185
  name = "ast-grep-language"
186
- version = "0.38.5"
186
+ version = "0.38.6"
187
187
  dependencies = [
188
188
  "ast-grep-core",
189
189
  "ignore",
@@ -215,7 +215,7 @@ dependencies = [
215
215
 
216
216
  [[package]]
217
217
  name = "ast-grep-lsp"
218
- version = "0.38.5"
218
+ version = "0.38.6"
219
219
  dependencies = [
220
220
  "ast-grep-config",
221
221
  "ast-grep-core",
@@ -229,7 +229,7 @@ dependencies = [
229
229
 
230
230
  [[package]]
231
231
  name = "ast-grep-napi"
232
- version = "0.38.5"
232
+ version = "0.38.6"
233
233
  dependencies = [
234
234
  "ast-grep-config",
235
235
  "ast-grep-core",
@@ -245,7 +245,7 @@ dependencies = [
245
245
 
246
246
  [[package]]
247
247
  name = "ast-grep-py"
248
- version = "0.38.5"
248
+ version = "0.38.6"
249
249
  dependencies = [
250
250
  "anyhow",
251
251
  "ast-grep-config",
@@ -362,9 +362,9 @@ checksum = "613afe47fcd5fac7ccf1db93babcb082c5994d996f20b8b159f2ad1658eb5724"
362
362
 
363
363
  [[package]]
364
364
  name = "clap"
365
- version = "4.5.39"
365
+ version = "4.5.40"
366
366
  source = "registry+https://github.com/rust-lang/crates.io-index"
367
- checksum = "fd60e63e9be68e5fb56422e397cf9baddded06dae1d2e523401542383bc72a9f"
367
+ checksum = "40b6887a1d8685cebccf115538db5c0efe625ccac9696ad45c409d96566e910f"
368
368
  dependencies = [
369
369
  "clap_builder",
370
370
  "clap_derive",
@@ -372,9 +372,9 @@ dependencies = [
372
372
 
373
373
  [[package]]
374
374
  name = "clap_builder"
375
- version = "4.5.39"
375
+ version = "4.5.40"
376
376
  source = "registry+https://github.com/rust-lang/crates.io-index"
377
- checksum = "89cc6392a1f72bbeb820d71f32108f61fdaf18bc526e1d23954168a67759ef51"
377
+ checksum = "e0c66c08ce9f0c698cbce5c0279d0bb6ac936d8674174fe48f736533b964f59e"
378
378
  dependencies = [
379
379
  "anstream",
380
380
  "anstyle",
@@ -384,18 +384,18 @@ dependencies = [
384
384
 
385
385
  [[package]]
386
386
  name = "clap_complete"
387
- version = "4.5.52"
387
+ version = "4.5.54"
388
388
  source = "registry+https://github.com/rust-lang/crates.io-index"
389
- checksum = "1a554639e42d0c838336fc4fbedb9e2df3ad1fa4acda149f9126b4ccfcd7900f"
389
+ checksum = "aad5b1b4de04fead402672b48897030eec1f3bfe1550776322f59f6d6e6a5677"
390
390
  dependencies = [
391
391
  "clap",
392
392
  ]
393
393
 
394
394
  [[package]]
395
395
  name = "clap_derive"
396
- version = "4.5.32"
396
+ version = "4.5.40"
397
397
  source = "registry+https://github.com/rust-lang/crates.io-index"
398
- checksum = "09176aae279615badda0765c0c0b3f6ed53f4709118af73cf4655d85d1530cd7"
398
+ checksum = "d2c7947ae4cc3d851207c1adb5b5e260ff0cca11446b1d6d1423788e442257ce"
399
399
  dependencies = [
400
400
  "heck",
401
401
  "proc-macro2",
@@ -663,7 +663,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
663
663
  checksum = "976dd42dc7e85965fe702eb8164f21f450704bdde31faefd6471dba214cb594e"
664
664
  dependencies = [
665
665
  "libc",
666
- "windows-sys 0.59.0",
666
+ "windows-sys 0.52.0",
667
667
  ]
668
668
 
669
669
  [[package]]
@@ -946,7 +946,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
946
946
  checksum = "07033963ba89ebaf1584d767badaa2e8fcec21aedea6b8c0346d487d49c28667"
947
947
  dependencies = [
948
948
  "cfg-if",
949
- "windows-targets 0.52.6",
949
+ "windows-targets 0.48.5",
950
950
  ]
951
951
 
952
952
  [[package]]
@@ -1380,7 +1380,7 @@ dependencies = [
1380
1380
  "errno",
1381
1381
  "libc",
1382
1382
  "linux-raw-sys",
1383
- "windows-sys 0.59.0",
1383
+ "windows-sys 0.52.0",
1384
1384
  ]
1385
1385
 
1386
1386
  [[package]]
@@ -1617,7 +1617,7 @@ dependencies = [
1617
1617
  "getrandom",
1618
1618
  "once_cell",
1619
1619
  "rustix",
1620
- "windows-sys 0.59.0",
1620
+ "windows-sys 0.52.0",
1621
1621
  ]
1622
1622
 
1623
1623
  [[package]]
@@ -1739,15 +1739,15 @@ dependencies = [
1739
1739
 
1740
1740
  [[package]]
1741
1741
  name = "toml_datetime"
1742
- version = "0.6.9"
1742
+ version = "0.6.11"
1743
1743
  source = "registry+https://github.com/rust-lang/crates.io-index"
1744
- checksum = "3da5db5a963e24bc68be8b17b6fa82814bb22ee8660f192bb182771d498f09a3"
1744
+ checksum = "22cddaf88f4fbc13c51aebbf5f8eceb5c7c5a9da2ac40a13519eb5b0a0e8f11c"
1745
1745
 
1746
1746
  [[package]]
1747
1747
  name = "toml_edit"
1748
- version = "0.22.26"
1748
+ version = "0.22.27"
1749
1749
  source = "registry+https://github.com/rust-lang/crates.io-index"
1750
- checksum = "310068873db2c5b3e7659d2cc35d21855dbafa50d1ce336397c666e3cb08137e"
1750
+ checksum = "41fe8c660ae4257887cf66394862d21dbca4a6ddd26f04a3560410406a2f819a"
1751
1751
  dependencies = [
1752
1752
  "indexmap",
1753
1753
  "toml_datetime",
@@ -1757,9 +1757,9 @@ dependencies = [
1757
1757
 
1758
1758
  [[package]]
1759
1759
  name = "toml_write"
1760
- version = "0.1.1"
1760
+ version = "0.1.2"
1761
1761
  source = "registry+https://github.com/rust-lang/crates.io-index"
1762
- checksum = "bfb942dfe1d8e29a7ee7fcbde5bd2b9a25fb89aa70caea2eba3bee836ff41076"
1762
+ checksum = "5d99f8c9a7727884afe522e9bd5edbfc91a3312b36a77b5fb8926e4c31a41801"
1763
1763
 
1764
1764
  [[package]]
1765
1765
  name = "tower"
@@ -2040,9 +2040,9 @@ dependencies = [
2040
2040
 
2041
2041
  [[package]]
2042
2042
  name = "tree-sitter-scala"
2043
- version = "0.23.4"
2043
+ version = "0.24.0"
2044
2044
  source = "registry+https://github.com/rust-lang/crates.io-index"
2045
- checksum = "efde5e68b4736e9eac17bfa296c6f104a26bffab363b365eb898c40a63c15d2f"
2045
+ checksum = "7516aeb3d1f40ede8e3045b163e86993b3434514dd06c34c0b75e782d9a0b251"
2046
2046
  dependencies = [
2047
2047
  "cc",
2048
2048
  "tree-sitter-language",
@@ -2176,7 +2176,7 @@ version = "0.1.9"
2176
2176
  source = "registry+https://github.com/rust-lang/crates.io-index"
2177
2177
  checksum = "cf221c93e13a30d793f7645a0e7762c55d169dbb0a49671918a2319d289b10bb"
2178
2178
  dependencies = [
2179
- "windows-sys 0.59.0",
2179
+ "windows-sys 0.48.0",
2180
2180
  ]
2181
2181
 
2182
2182
  [[package]]
@@ -2335,9 +2335,9 @@ checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
2335
2335
 
2336
2336
  [[package]]
2337
2337
  name = "winnow"
2338
- version = "0.7.6"
2338
+ version = "0.7.10"
2339
2339
  source = "registry+https://github.com/rust-lang/crates.io-index"
2340
- checksum = "63d3fcd9bba44b03821e7d699eeee959f3126dcc4aa8e4ae18ec617c2a5cea10"
2340
+ checksum = "c06928c8748d81b05c9be96aad92e1b6ff01833332f281e8cfca3be4b35fc9ec"
2341
2341
  dependencies = [
2342
2342
  "memchr",
2343
2343
  ]
@@ -7,7 +7,7 @@ resolver = "2"
7
7
  lto = true
8
8
 
9
9
  [workspace.package]
10
- version = "0.38.5"
10
+ version = "0.38.6"
11
11
  authors = ["Herrington Darkholme <2883231+HerringtonDarkholme@users.noreply.github.com>"]
12
12
  edition = "2021"
13
13
  license = "MIT"
@@ -18,11 +18,11 @@ rust-version = "1.70"
18
18
  readme = "README.md"
19
19
 
20
20
  [workspace.dependencies]
21
- ast-grep-core = { path = "crates/core", version = "0.38.5", default-features = false }
22
- ast-grep-config = { path = "crates/config", version = "0.38.5" }
23
- ast-grep-dynamic = { path = "crates/dynamic", version = "0.38.5" }
24
- ast-grep-language = { path = "crates/language", version = "0.38.5" }
25
- ast-grep-lsp = { path = "crates/lsp", version = "0.38.5" }
21
+ ast-grep-core = { path = "crates/core", version = "0.38.6", default-features = false }
22
+ ast-grep-config = { path = "crates/config", version = "0.38.6" }
23
+ ast-grep-dynamic = { path = "crates/dynamic", version = "0.38.6" }
24
+ ast-grep-language = { path = "crates/language", version = "0.38.6" }
25
+ ast-grep-lsp = { path = "crates/lsp", version = "0.38.6" }
26
26
 
27
27
  bit-set = { version = "0.8.0" }
28
28
  ignore = { version = "0.4.22" }
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: ast-grep-py
3
- Version: 0.38.5
3
+ Version: 0.38.6
4
4
  Classifier: Development Status :: 3 - Alpha
5
5
  Classifier: Environment :: Console
6
6
  Classifier: Intended Audience :: Developers
@@ -87,7 +87,7 @@ impl FromStr for DynamicLang {
87
87
  });
88
88
  }
89
89
  }
90
- Err(format!("unknow language `{name}`."))
90
+ Err(format!("unknown language `{name}`."))
91
91
  }
92
92
  }
93
93
 
@@ -35,7 +35,7 @@ tree-sitter-php = { version = "0.23.11", optional = true }
35
35
  tree-sitter-python = { version = "0.23.0", optional = true }
36
36
  tree-sitter-ruby = { version = "0.23.0", optional = true }
37
37
  tree-sitter-rust = { version = "0.24.0", optional = true }
38
- tree-sitter-scala = { version = "0.23.0", optional = true }
38
+ tree-sitter-scala = { version = "0.24.0", optional = true }
39
39
  tree-sitter-swift = { version = "0.7.0", optional = true }
40
40
  tree-sitter-typescript = { version = "0.23.2", optional = true }
41
41
  tree-sitter-yaml = { version = "0.7.0", optional = true }
@@ -5,7 +5,7 @@ build-backend = "maturin"
5
5
  [project]
6
6
  name = "ast-grep-py"
7
7
  requires-python = ">=3.8"
8
- version = "0.38.5"
8
+ version = "0.38.6"
9
9
  description = "Structural Search and Rewrite code at large scale using precise AST pattern."
10
10
  authors = [{ name = "Herrington Darkholme", email = "2883231+HerringtonDarkholme@users.noreply.github.com" }]
11
11
  maintainers = [{ name = "Herrington Darkholme", email = "2883231+HerringtonDarkholme@users.noreply.github.com" }]
File without changes