Skip to content

Commit

Permalink
Release prompt-graph-core v0.1.24, prompt-graph-exec v0.1.24, chidori…
Browse files Browse the repository at this point in the history
… v0.1.24
  • Loading branch information
kvey committed Jul 28, 2023
1 parent 002b4e3 commit 15e4635
Show file tree
Hide file tree
Showing 8 changed files with 7 additions and 15 deletions.
2 changes: 0 additions & 2 deletions toolchain/chidori/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,6 @@ 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.24 (2023-07-28)

### Fixed
Expand Down
4 changes: 2 additions & 2 deletions toolchain/chidori/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "chidori"
version.workspace = true
version= "0.1.24"
edition = "2021"
description = "A Rust library for executing prompt-graph models"
license = "MIT"
Expand Down Expand Up @@ -36,7 +36,7 @@ sqlparser = "0.34.0"
openssl = { version = "0.10", features = ["vendored"] }

once_cell = "1"
prompt-graph-core = { path = "../prompt-graph-core", version = "^0.1.23" }
prompt-graph-core = { path = "../prompt-graph-core", version = "^0.1.24" }
wasm-bindgen = {version = "0.2.86", features = []}
handlebars = "4.3.7"
anyhow = { version = "1.0", default-features = false }
Expand Down
2 changes: 1 addition & 1 deletion toolchain/examples/rust/top-ai-launches-hn/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
chidori = { path = "../../../chidori", version = "^0.1.23" }
chidori = { path = "../../../chidori", version = "^0.1.24" }
tokio = { version = "1", features = ["full"] }
anyhow = { version = "1.0", default-features = false }
reqwest = { version = "0.11", features = ["json"] }
Expand Down
3 changes: 0 additions & 3 deletions toolchain/prompt-graph-core/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,6 @@ 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.24 (2023-07-28)

### Fixed
Expand Down
2 changes: 1 addition & 1 deletion toolchain/prompt-graph-core/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "prompt-graph-core"
version.workspace = true
version= "0.1.24"
edition = "2021"
description = "Core of Chidori, compiles graph and node definitions into an interpretable graph"
license = "MIT"
Expand Down
3 changes: 0 additions & 3 deletions toolchain/prompt-graph-exec/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,6 @@ 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.24 (2023-07-28)

### Fixed
Expand Down
4 changes: 2 additions & 2 deletions toolchain/prompt-graph-exec/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "prompt-graph-exec"
version.workspace = true
version= "0.1.24"
edition = "2021"
description = "Execution of Chidori, interprets a given graph of prompts and nodes, provides grpc api to the runtime"
license = "MIT"
Expand Down Expand Up @@ -28,7 +28,7 @@ protobuf = "3.2.0"
hyper = { version = "1.0.0-rc.3", features = ["full"] }
tokio = { version = "1", features = ["full"] }
http-body-util = "0.1.0-rc.2"
prompt-graph-core = { path = "../prompt-graph-core", version = "^0.1.23" }
prompt-graph-core = { path = "../prompt-graph-core", version = "^0.1.24" }
openai-api-rs = "0.1.11"
twox-hash = "1.6.3"
# gluesql = "0.14.0"
Expand Down
2 changes: 1 addition & 1 deletion toolchain/prompt-graph-ui/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,6 @@ tui-input = "0.7.1"
tonic = "0.9"
prost = "0.11"
tokio = { version = "1", features = ["full"] }
prompt-graph-core = { path = "../prompt-graph-core", version = "^0.1.23" }
prompt-graph-core = { path = "../prompt-graph-core", version = "^0.1.24" }
anyhow = { version = "1.0", default-features = false }
futures = "0.3.15"

0 comments on commit 15e4635

Please sign in to comment.