Skip to content

Commit

Permalink
chore: release v0.10.0 (#274)
Browse files Browse the repository at this point in the history
## 🤖 New release
* `swiftide`: 0.9.2 -> 0.10.0
* `swiftide-core`: 0.9.2 -> 0.10.0
* `swiftide-indexing`: 0.9.2 -> 0.10.0
* `swiftide-macros`: 0.9.2 -> 0.10.0
* `swiftide-integrations`: 0.9.2 -> 0.10.0
* `swiftide-query`: 0.9.2 -> 0.10.0

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

## `swiftide`
<blockquote>

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

BREAKING CHANGE: Indexing nodes now have their ID calculated using UUIDv3 via MD5 as the previous algorithm was unreliable and broke in 1.81. Added benefit that collision chance is even smaller. This means that when indexing again, nodes will have different IDs and upsert will not work. Backwards compatibility is non-trivial. If this is a huge issue, ping us on discord and we will look into it.

### Added

-
[57fe4aa](57fe4aa)
*(indexing)* Use UUIDv3 for indexing node ids
([#277](#277))

### Fixed

-
[5a724df](5a724df)
*(uncategorized)* Rust 1.81 support
([#275](#275))

### Other

-
[3711f6f](3711f6f)
*(readme)* Fix date
([#273](#273))


**Full Changelog**:
0.9.2...0.10.0
</blockquote>


</p></details>

---
This PR was generated with
[release-plz](https://github.com/MarcoIeni/release-plz/).

Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
  • Loading branch information
github-actions[bot] committed Sep 6, 2024
1 parent 57fe4aa commit 807e902
Show file tree
Hide file tree
Showing 7 changed files with 38 additions and 19 deletions.
19 changes: 19 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,25 @@

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

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

### Added

- [57fe4aa](https://github.com/bosun-ai/swiftide/commit/57fe4aa73b1b98dd8eac87c6440e0f2a0c66d4e8) *(indexing)* Use UUIDv3 for indexing node ids ([#277](https://github.com/bosun-ai/swiftide/pull/277))

### Fixed

- [5a724df](https://github.com/bosun-ai/swiftide/commit/5a724df895d35cfa606721d611afd073a23191de) *(uncategorized)* Rust 1.81 support ([#275](https://github.com/bosun-ai/swiftide/pull/275))

### Other

- [3711f6f](https://github.com/bosun-ai/swiftide/commit/3711f6fb2b51e97e4606b744cc963c04b44b6963) *(readme)* Fix date ([#273](https://github.com/bosun-ai/swiftide/pull/273))


**Full Changelog**: https://github.com/bosun-ai/swiftide/compare/0.9.2...0.10.0



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

### Added
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.9.2"
version = "0.10.0"
edition = "2021"
license = "MIT"
readme = "README.md"
Expand Down
4 changes: 2 additions & 2 deletions swiftide-indexing/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ repository.workspace = true
homepage.workspace = true

[dependencies]
swiftide-core = { path = "../swiftide-core", version = "0.9" }
swiftide-macros = { path = "../swiftide-macros", version = "0.9" }
swiftide-core = { path = "../swiftide-core", version = "0.10" }
swiftide-macros = { path = "../swiftide-macros", version = "0.10" }

anyhow = { workspace = true }
async-trait = { workspace = true }
Expand Down
4 changes: 2 additions & 2 deletions swiftide-integrations/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ repository.workspace = true
homepage.workspace = true

[dependencies]
swiftide-core = { path = "../swiftide-core", version = "0.9" }
swiftide-macros = { path = "../swiftide-macros", version = "0.9" }
swiftide-core = { path = "../swiftide-core", version = "0.10" }
swiftide-macros = { path = "../swiftide-macros", version = "0.10" }

anyhow = { workspace = true }
async-trait = { workspace = true }
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.9.2" }
swiftide-core = { path = "../swiftide-core", version = "0.10.0" }

[dev-dependencies]
swiftide-core = { path = "../swiftide-core", features = ["test-utils"] }
Expand Down
8 changes: 4 additions & 4 deletions swiftide/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,10 @@ homepage.workspace = true

[dependencies]
# Local dependencies
swiftide-core = { path = "../swiftide-core", version = "0.9" }
swiftide-integrations = { path = "../swiftide-integrations", version = "0.9" }
swiftide-indexing = { path = "../swiftide-indexing", version = "0.9" }
swiftide-query = { path = "../swiftide-query", version = "0.9" }
swiftide-core = { path = "../swiftide-core", version = "0.10" }
swiftide-integrations = { path = "../swiftide-integrations", version = "0.10" }
swiftide-indexing = { path = "../swiftide-indexing", version = "0.10" }
swiftide-query = { path = "../swiftide-query", version = "0.10" }

[features]
default = []
Expand Down

0 comments on commit 807e902

Please sign in to comment.