Skip to content

Commit

Permalink
chore: release
Browse files Browse the repository at this point in the history
  • Loading branch information
SwabbieBosun authored Sep 26, 2024
1 parent 7d8a57f commit 125068d
Show file tree
Hide file tree
Showing 7 changed files with 51 additions and 19 deletions.
32 changes: 32 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,38 @@

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

## [0.13.0](https://github.com/bosun-ai/swiftide/compare/v0.12.3...v0.13.0) - 2024-09-26

### New features

- [7d8a57f](https://github.com/bosun-ai/swiftide/commit/7d8a57f54b2c73267dfaa3b3a32079b11d9b32bc) *(indexing)* [**breaking**] Removed duplication of batch_size. Pipeline owns the default ba… ([#336](https://github.com/bosun-ai/swiftide/pull/336))

````text
Fixes [#233](https://github.com/bosun-ai/swiftide/pull/233)
````

**BREAKING CHANGE**: The batch size of batch transformers when indexing is
now configured on the batch transformer. If no batch size or default is
configured, a configurable default is used from the pipeline. The
default batch size is 256.

---------

- [fd110c8](https://github.com/bosun-ai/swiftide/commit/fd110c8efeb3af538d4e51d033b6df02e90e05d9) *(tree-sitter)* Add support for Java 22 ([#309](https://github.com/bosun-ai/swiftide/pull/309))

### Bug fixes

- [23b96e0](https://github.com/bosun-ai/swiftide/commit/23b96e08b4e0f10f5faea0b193b404c9cd03f47f) *(tree-sitter)* SupportedLanguages are now non-exhaustive ([#331](https://github.com/bosun-ai/swiftide/pull/331))

### Miscellaneous

- [923a8f0](https://github.com/bosun-ai/swiftide/commit/923a8f0663e7d2b7138f54069f7a74c3cf6663ed) *(fastembed,qdrant)* Better batching defaults ([#334](https://github.com/bosun-ai/swiftide/pull/334))


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



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

### New features
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.3"
version = "0.13.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.12" }
swiftide-macros = { path = "../swiftide-macros", version = "0.12" }
swiftide-core = { path = "../swiftide-core", version = "0.13" }
swiftide-macros = { path = "../swiftide-macros", version = "0.13" }

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

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.12.3" }
swiftide-core = { path = "../swiftide-core", version = "0.13.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.12" }
swiftide-integrations = { path = "../swiftide-integrations", version = "0.12" }
swiftide-indexing = { path = "../swiftide-indexing", version = "0.12" }
swiftide-query = { path = "../swiftide-query", version = "0.12" }
swiftide-core = { path = "../swiftide-core", version = "0.13" }
swiftide-integrations = { path = "../swiftide-integrations", version = "0.13" }
swiftide-indexing = { path = "../swiftide-indexing", version = "0.13" }
swiftide-query = { path = "../swiftide-query", version = "0.13" }

[features]
default = []
Expand Down

0 comments on commit 125068d

Please sign in to comment.