Skip to content

Commit

Permalink
chore: release v0.14.4 (#460)
Browse files Browse the repository at this point in the history
## 🤖 New release
* `swiftide`: 0.14.3 -> 0.14.4 (✓ API compatible changes)
* `swiftide-agents`: 0.14.3 -> 0.14.4
* `swiftide-core`: 0.14.3 -> 0.14.4 (✓ API compatible changes)
* `swiftide-macros`: 0.14.3 -> 0.14.4
* `swiftide-integrations`: 0.14.3 -> 0.14.4 (✓ API compatible changes)
* `swiftide-indexing`: 0.14.3 -> 0.14.4 (✓ API compatible changes)
* `swiftide-query`: 0.14.3 -> 0.14.4 (✓ API compatible changes)

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

## `swiftide`
<blockquote>

##
[0.14.4](v0.14.3...v0.14.4)
- 2024-12-11

### New features

-
[7211559](7211559)
*(agents)* **EXPERIMENTAL** Agents in Swiftide (#463)

````text
Agents are coming to Swiftide! We are still ironing out all the kinks,
  while we make it ready for a proper release. You can already experiment
  with agents, see the rustdocs for documentation, and an example in
  `/examples`, and feel free to contact us via github or discord. Better
  documentation, examples, and tutorials are coming soon.

  Run completions in a loop, define tools with two handy macros, customize
  the agent by hooking in on lifecycle events, and much more.

  Besides documentation, expect a big release for what we build this for
  soon! 🎉
````

-
[3751f49](3751f49)
*(query)* Add support for single embedding retrieval with PGVector
(#406)

### Miscellaneous

-
[5ce4d21](5ce4d21)
Clippy and deps fixes for 1.83 (#467)


**Full Changelog**:
0.14.3...0.14.4
</blockquote>


</p></details>

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

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

## [0.14.4](https://github.com/bosun-ai/swiftide/compare/v0.14.3...v0.14.4) - 2024-12-11

### New features

- [7211559](https://github.com/bosun-ai/swiftide/commit/7211559936d8b5e16a3b42f9c90b42a39426be8a) *(agents)* **EXPERIMENTAL** Agents in Swiftide (#463)

````text
Agents are coming to Swiftide! We are still ironing out all the kinks,
while we make it ready for a proper release. You can already experiment
with agents, see the rustdocs for documentation, and an example in
`/examples`, and feel free to contact us via github or discord. Better
documentation, examples, and tutorials are coming soon.
Run completions in a loop, define tools with two handy macros, customize
the agent by hooking in on lifecycle events, and much more.
Besides documentation, expect a big release for what we build this for
soon! 🎉
````

- [3751f49](https://github.com/bosun-ai/swiftide/commit/3751f49201c71398144a8913a4443f452534def2) *(query)* Add support for single embedding retrieval with PGVector (#406)

### Miscellaneous

- [5ce4d21](https://github.com/bosun-ai/swiftide/commit/5ce4d21725ff9b0bb7f9da8fe026075fde9fc9a5) Clippy and deps fixes for 1.83 (#467)


**Full Changelog**: https://github.com/bosun-ai/swiftide/compare/0.14.3...0.14.4



## [0.14.3](https://github.com/bosun-ai/swiftide/compare/v0.14.2...v0.14.3) - 2024-11-20

### New features
Expand Down
20 changes: 10 additions & 10 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 @@ -4,7 +4,7 @@ default-members = ["swiftide", "swiftide-*"]
resolver = "2"

[workspace.package]
version = "0.14.3"
version = "0.14.4"
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 @@ -24,7 +24,7 @@ serde = { workspace = true }
serde_json = { workspace = true }

# Internal
swiftide-core = { path = "../swiftide-core", version = "0.14.3" }
swiftide-core = { path = "../swiftide-core", version = "0.14.4" }

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

0 comments on commit fa13c62

Please sign in to comment.