Skip to content

Commit

Permalink
chore: release v0.2.0 (#152)
Browse files Browse the repository at this point in the history
## 🤖 New release
* `kwaak`: 0.1.12 -> 0.2.0 (⚠️ API breaking changes)

### ⚠️ `kwaak` breaking changes

```
--- failure constructible_struct_adds_private_field: struct no longer constructible due to new private field ---

Description:
A struct constructible with a struct literal has a new non-public field. It can no longer be constructed using a struct literal outside of its crate.
        ref: https://doc.rust-lang.org/reference/expressions/struct-expr.html
       impl: https://github.com/obi1kenobi/cargo-semver-checks/tree/v0.38.0/src/lints/constructible_struct_adds_private_field.ron

Failed in:
  field Config.indexing_batch_size in /tmp/.tmpBR5Bvo/kwaak/src/config/config.rs:37

--- failure enum_variant_added: enum variant added on exhaustive enum ---

Description:
A publicly-visible enum without #[non_exhaustive] has a new variant.
        ref: https://doc.rust-lang.org/cargo/reference/semver.html#enum-variant-new
       impl: https://github.com/obi1kenobi/cargo-semver-checks/tree/v0.38.0/src/lints/enum_variant_added.ron

Failed in:
  variant LLMConfiguration:Ollama in /tmp/.tmpBR5Bvo/kwaak/src/config/llm_configuration.rs:38

--- failure struct_pub_field_missing: pub struct's pub field removed or renamed ---

Description:
A publicly-visible struct has at least one public field that is no longer available under its prior name. It may have been renamed or removed entirely.
        ref: https://doc.rust-lang.org/cargo/reference/semver.html#item-remove
       impl: https://github.com/obi1kenobi/cargo-semver-checks/tree/v0.38.0/src/lints/struct_pub_field_missing.ron

Failed in:
  field indexing_concurrency of struct Config, previously in file /tmp/.tmpL1I3Nj/kwaak/src/config/config.rs:29

--- failure struct_pub_field_now_doc_hidden: pub struct field is now #[doc(hidden)] ---

Description:
A pub field of a pub struct is now marked #[doc(hidden)] and is no longer part of the public API.
        ref: https://doc.rust-lang.org/rustdoc/write-documentation/the-doc-attribute.html#hidden
       impl: https://github.com/obi1kenobi/cargo-semver-checks/tree/v0.38.0/src/lints/struct_pub_field_now_doc_hidden.ron

Failed in:
  field Config.indexing_concurrency in file /tmp/.tmpBR5Bvo/kwaak/src/config/config.rs:17
```

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

<blockquote>

## [0.2.0] - 2025-01-12

### 🚀 Features

- *(ci)* Announce new releases to discord (#141)
- Ollama support! (#147)

### 🐛 Bug Fixes

- After clearing the cache app should self-heal (#142)
- Handle breaking, non-panic errors gracefully with more informative
output (#144)
- *(docker)* Fix socket connection errors when setting up docker (#148)

### 📚 Documentation

- Render demo in higher font size and trim terminal start/stop
- Trim waiting times from demo and up font size (#137)
- Trim the last couple of frames of the demo and slightly larger font
- *(README)* Update blog posts
- Update README.md (#138)
- Enhance README with OpenAI and Ollama Configuration Details (#146)
- Update readme with all configuration settings (#151)

<!-- generated by git-cliff -->
</blockquote>


</p></details>

---
This PR was generated with
[release-plz](https://github.com/release-plz/release-plz/).
  • Loading branch information
SwabbieBosun authored Jan 12, 2025
1 parent de23610 commit ddaa661
Show file tree
Hide file tree
Showing 3 changed files with 26 additions and 2 deletions.
24 changes: 24 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,30 @@

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

## [0.2.0] - 2025-01-12

### 🚀 Features

- *(ci)* Announce new releases to discord (#141)
- Ollama support! (#147)

### 🐛 Bug Fixes

- After clearing the cache app should self-heal (#142)
- Handle breaking, non-panic errors gracefully with more informative output (#144)
- *(docker)* Fix socket connection errors when setting up docker (#148)

### 📚 Documentation

- Render demo in higher font size and trim terminal start/stop
- Trim waiting times from demo and up font size (#137)
- Trim the last couple of frames of the demo and slightly larger font
- *(README)* Update blog posts
- Update README.md (#138)
- Enhance README with OpenAI and Ollama Configuration Details (#146)
- Update readme with all configuration settings (#151)

<!-- generated by git-cliff -->
## [0.1.12] - 2025-01-09

### 🚀 Features
Expand Down
2 changes: 1 addition & 1 deletion 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
@@ -1,6 +1,6 @@
[package]
name = "kwaak"
version = "0.1.12"
version = "0.2.0"
edition = "2021"
categories = ["development-tools", "command-line-utilities"]
readme = "README.md"
Expand Down

0 comments on commit ddaa661

Please sign in to comment.