Skip to content

Commit

Permalink
chore: release (#220)
Browse files Browse the repository at this point in the history
## 🤖 New release
* `swiftide`: 0.7.1 -> 0.8.0
* `swiftide-core`: 0.7.1 -> 0.8.0
* `swiftide-indexing`: 0.7.1 -> 0.8.0
* `swiftide-integrations`: 0.7.1 -> 0.8.0
* `swiftide-macros`: 0.7.1 -> 0.8.0
* `swiftide-query`: 0.7.1 -> 0.8.0

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

## `swiftide`
<blockquote>

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

### Added

-
[67336f1](67336f1)
*(indexing)* Sparse vector support with Splade and Qdrant
([#222](#222))

-
[2e25ad4](2e25ad4)
*(indexing)* Default LLM for indexing pipeline and boilerplate
Transformer macro
([#227](#227))

-
[e728a7c](e728a7c)
*(uncategorized)* Code outlines in chunk metadata
([#137](#137))

### Fixed

-
[3cce606](3cce606)
*(deps)* Update rust crate text-splitter to 0.15
([#224](#224))

### Other

-
[4970a68](4970a68)
*(readme)* Fix discord links

-
[b3f04de](b3f04de)
*(readme)* Add link to discord
([#219](#219))

-
[73d1649](73d1649)
*(readme)* Add Ollama support to README


**Full Changelog**:
0.7.1...0.8.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] authored Aug 12, 2024
1 parent 3cce606 commit b52b9f0
Show file tree
Hide file tree
Showing 7 changed files with 50 additions and 20 deletions.
30 changes: 30 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,33 @@
# Changelog

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

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

### Added

- [67336f1](https://github.com/bosun-ai/swiftide/commit/67336f1d9c7fde474bdddfd0054b40656df244e0) *(indexing)* Sparse vector support with Splade and Qdrant ([#222](https://github.com/bosun-ai/swiftide/pull/222))

- [2e25ad4](https://github.com/bosun-ai/swiftide/commit/2e25ad4b999a8562a472e086a91020ec4f8300d8) *(indexing)* Default LLM for indexing pipeline and boilerplate Transformer macro ([#227](https://github.com/bosun-ai/swiftide/pull/227))

- [e728a7c](https://github.com/bosun-ai/swiftide/commit/e728a7c7a2fcf7b22c31e5d6c66a896f634f6901) *(uncategorized)* Code outlines in chunk metadata ([#137](https://github.com/bosun-ai/swiftide/pull/137))

### Fixed

- [3cce606](https://github.com/bosun-ai/swiftide/commit/3cce60698cb59a0f1d3902e85ff6b07555f6de58) *(deps)* Update rust crate text-splitter to 0.15 ([#224](https://github.com/bosun-ai/swiftide/pull/224))

### Other

- [4970a68](https://github.com/bosun-ai/swiftide/commit/4970a683acccc71503e64044dc02addaf2e9c87c) *(readme)* Fix discord links

- [b3f04de](https://github.com/bosun-ai/swiftide/commit/b3f04defe94e5b26876c8d99049f4d87b5f2dc18) *(readme)* Add link to discord ([#219](https://github.com/bosun-ai/swiftide/pull/219))

- [73d1649](https://github.com/bosun-ai/swiftide/commit/73d1649ca8427aa69170f6451eac55316581ed9a) *(readme)* Add Ollama support to README


**Full Changelog**: https://github.com/bosun-ai/swiftide/compare/0.7.1...0.8.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 @@ -12,7 +12,7 @@ members = [
resolver = "2"

[workspace.package]
version = "0.7.1"
version = "0.8.0"
edition = "2021"
license = "MIT"
readme = "README.md"
Expand Down
6 changes: 3 additions & 3 deletions swiftide-indexing/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,9 @@ repository.workspace = true
homepage.workspace = true

[dependencies]
swiftide-core = { path = "../swiftide-core", version = "0.7" }
swiftide-integrations = { path = "../swiftide-integrations", version = "0.7", optional = true }
swiftide-macros = { path = "../swiftide-macros", version = "0.7" }
swiftide-core = { path = "../swiftide-core", version = "0.8" }
swiftide-integrations = { path = "../swiftide-integrations", version = "0.8", optional = true }
swiftide-macros = { path = "../swiftide-macros", version = "0.8" }

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

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 @@ -23,7 +23,7 @@ tracing = { workspace = true }
indoc = { workspace = true }

# Internal
swiftide-core = { path = "../swiftide-core", version = "0.7.1" }
swiftide-core = { path = "../swiftide-core", version = "0.8.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.7" }
swiftide-integrations = { path = "../swiftide-integrations", version = "0.7" }
swiftide-indexing = { path = "../swiftide-indexing", version = "0.7" }
swiftide-query = { path = "../swiftide-query", version = "0.7" }
swiftide-core = { path = "../swiftide-core", version = "0.8" }
swiftide-integrations = { path = "../swiftide-integrations", version = "0.8" }
swiftide-indexing = { path = "../swiftide-indexing", version = "0.8" }
swiftide-query = { path = "../swiftide-query", version = "0.8" }

[features]
default = []
Expand Down

0 comments on commit b52b9f0

Please sign in to comment.