diff --git a/Cargo.lock b/Cargo.lock index 2d82c8ca..76e03fd9 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1211,7 +1211,7 @@ dependencies = [ [[package]] name = "rig-core" -version = "0.0.7" +version = "0.1.0" dependencies = [ "anyhow", "futures", @@ -1228,7 +1228,7 @@ dependencies = [ [[package]] name = "rig-mongodb" -version = "0.0.7" +version = "0.1.0" dependencies = [ "anyhow", "futures", diff --git a/rig-core/CHANGELOG.md b/rig-core/CHANGELOG.md new file mode 100644 index 00000000..cba0a40c --- /dev/null +++ b/rig-core/CHANGELOG.md @@ -0,0 +1,25 @@ +# Changelog + +All notable changes to this project will be documented in this file. + +The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), +and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). + +## [Unreleased] + +## [0.1.0](https://github.com/0xPlaygrounds/rig/compare/rig-core-v0.0.7...rig-core-v0.1.0) - 2024-09-16 + +### Added + +- add o1-preview and o1-mini + +### Fixed + +- *(perplexity)* fix preamble and context in completion request +- clippy warnings + +### Other + +- Merge pull request [#18](https://github.com/0xPlaygrounds/rig/pull/18) from 0xPlaygrounds/feat/perplexity-support +- Add logging of http errors +- fmt code diff --git a/rig-core/Cargo.toml b/rig-core/Cargo.toml index 5a82b548..dde7027e 100644 --- a/rig-core/Cargo.toml +++ b/rig-core/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rig-core" -version = "0.0.7" +version = "0.1.0" edition = "2021" license = "MIT" readme = "README.md" diff --git a/rig-mongodb/CHANGELOG.md b/rig-mongodb/CHANGELOG.md new file mode 100644 index 00000000..bfad6746 --- /dev/null +++ b/rig-mongodb/CHANGELOG.md @@ -0,0 +1,14 @@ +# Changelog + +All notable changes to this project will be documented in this file. + +The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), +and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). + +## [Unreleased] + +## [0.1.0](https://github.com/0xPlaygrounds/rig/compare/rig-mongodb-v0.0.7...rig-mongodb-v0.1.0) - 2024-09-16 + +### Other + +- fmt code diff --git a/rig-mongodb/Cargo.toml b/rig-mongodb/Cargo.toml index 85b98fa1..05d259ac 100644 --- a/rig-mongodb/Cargo.toml +++ b/rig-mongodb/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rig-mongodb" -version = "0.0.7" +version = "0.1.0" edition = "2021" license = "MIT" readme = "README.md" @@ -12,7 +12,7 @@ repository = "https://github.com/0xPlaygrounds/rig" [dependencies] futures = "0.3.30" mongodb = "2.8.2" -rig-core = { path = "../rig-core", version = "0.0.7" } +rig-core = { path = "../rig-core", version = "0.1.0" } serde = { version = "1.0.203", features = ["derive"] } serde_json = "1.0.117" tracing = "0.1.40"