Skip to content

Commit

Permalink
chore: release v0.12.3 (#329)
Browse files Browse the repository at this point in the history
## 🤖 New release
* `swiftide`: 0.12.2 -> 0.12.3 (✓ API compatible changes)
* `swiftide-core`: 0.12.2 -> 0.12.3 (✓ API compatible changes)
* `swiftide-indexing`: 0.12.2 -> 0.12.3 (✓ API compatible changes)
* `swiftide-macros`: 0.12.2 -> 0.12.3
* `swiftide-integrations`: 0.12.2 -> 0.12.3 (✓ API compatible changes)
* `swiftide-query`: 0.12.2 -> 0.12.3 (✓ API compatible changes)

<details><summary><i><b>Changelog</b></i></summary><p>

## `swiftide`
<blockquote>

## [0.12.3](https://github.com/bosun-ai/swiftide/releases/tag/0.12.3) -
2024-09-23

### New features

-
[da5df22](da5df22)
*(tree-sitter)* Implement Serialize and Deserialize for
SupportedLanguages
([#314](#314))

### Bug fixes

-
[a756148](a756148)
*(tree-sitter)* Fix javascript and improve tests
([#313](#313))

````text
As learned from [#309](#309), test coverage for the refs defs transformer was
  not great. There _are_ more tests in code_tree. Turns out, with the
  latest treesitter update, javascript broke as it was the only language
  not covered at all.
````

### Miscellaneous

-
[e8e9d80](e8e9d80)
*(docs)* Add documentation to query module
([#276](#276))


**Full Changelog**:
0.12.2...0.12.3
</blockquote>


</p></details>

---
This PR was generated with
[release-plz](https://github.com/MarcoIeni/release-plz/).
  • Loading branch information
SwabbieBosun authored Sep 23, 2024
1 parent e8e9d80 commit 0f2d7cd
Show file tree
Hide file tree
Showing 4 changed files with 37 additions and 11 deletions.
26 changes: 26 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,32 @@

All notable changes to this project will be documented in this file.

## [0.12.3](https://github.com/bosun-ai/swiftide/releases/tag/0.12.3) - 2024-09-23

### New features

- [da5df22](https://github.com/bosun-ai/swiftide/commit/da5df2230da81e9fe1e6ab74150511cbe1e3d769) *(tree-sitter)* Implement Serialize and Deserialize for SupportedLanguages ([#314](https://github.com/bosun-ai/swiftide/pull/314))

### Bug fixes

- [a756148](https://github.com/bosun-ai/swiftide/commit/a756148f85faa15b1a79db8ec8106f0e15e4d6a2) *(tree-sitter)* Fix javascript and improve tests ([#313](https://github.com/bosun-ai/swiftide/pull/313))

````text
As learned from [#309](https://github.com/bosun-ai/swiftide/pull/309), test coverage for the refs defs transformer was
not great. There _are_ more tests in code_tree. Turns out, with the
latest treesitter update, javascript broke as it was the only language
not covered at all.
````

### Miscellaneous

- [e8e9d80](https://github.com/bosun-ai/swiftide/commit/e8e9d80f2b4fbfe7ca2818dc542ca0a907a17da5) *(docs)* Add documentation to query module ([#276](https://github.com/bosun-ai/swiftide/pull/276))


**Full Changelog**: https://github.com/bosun-ai/swiftide/compare/0.12.2...0.12.3




## [v0.12.2](https://github.com/bosun-ai/swiftide/releases/tag/v0.12.2) - 2024-09-20

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.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ members = [
resolver = "2"

[workspace.package]
version = "0.12.2"
version = "0.12.3"
edition = "2021"
license = "MIT"
readme = "README.md"
Expand Down
2 changes: 1 addition & 1 deletion swiftide-query/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ serde = { workspace = true }
serde_json = { workspace = true }

# Internal
swiftide-core = { path = "../swiftide-core", version = "0.12.2" }
swiftide-core = { path = "../swiftide-core", version = "0.12.3" }

[dev-dependencies]
swiftide-core = { path = "../swiftide-core", features = ["test-utils"] }
Expand Down

0 comments on commit 0f2d7cd

Please sign in to comment.