Skip to content

Commit

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

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

## `swiftide`
<blockquote>

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

### Added

-
[bdf17ad](bdf17ad)
*(indexing)* Parquet loader
([#279](#279))

-
[a98dbcb](a98dbcb)
*(integrations)* Add ollama embeddings support
([#278](#278))


**Full Changelog**:
0.10.0...0.11.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 8, 2024
1 parent a98dbcb commit a960ebf
Show file tree
Hide file tree
Showing 7 changed files with 35 additions and 19 deletions.
16 changes: 16 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,19 @@
# Changelog

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

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

### Added

- [bdf17ad](https://github.com/bosun-ai/swiftide/commit/bdf17adf5d3addc84aaf45ad893b816cb46431e3) *(indexing)* Parquet loader ([#279](https://github.com/bosun-ai/swiftide/pull/279))

- [a98dbcb](https://github.com/bosun-ai/swiftide/commit/a98dbcb455d33f0537cea4d3614da95f1a4b6554) *(integrations)* Add ollama embeddings support ([#278](https://github.com/bosun-ai/swiftide/pull/278))


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


# Changelog

All notable changes to this project will be documented in this file.
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.10.0"
version = "0.11.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.10" }
swiftide-macros = { path = "../swiftide-macros", version = "0.10" }
swiftide-core = { path = "../swiftide-core", version = "0.11" }
swiftide-macros = { path = "../swiftide-macros", version = "0.11" }

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.10" }
swiftide-macros = { path = "../swiftide-macros", version = "0.10" }
swiftide-core = { path = "../swiftide-core", version = "0.11" }
swiftide-macros = { path = "../swiftide-macros", version = "0.11" }

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.10.0" }
swiftide-core = { path = "../swiftide-core", version = "0.11.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.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" }
swiftide-core = { path = "../swiftide-core", version = "0.11" }
swiftide-integrations = { path = "../swiftide-integrations", version = "0.11" }
swiftide-indexing = { path = "../swiftide-indexing", version = "0.11" }
swiftide-query = { path = "../swiftide-query", version = "0.11" }

[features]
default = []
Expand Down

0 comments on commit a960ebf

Please sign in to comment.