-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added a Contributing.md readme and some CI fixes
- Loading branch information
Showing
3 changed files
with
11 additions
and
18 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
# Publishing a new version | ||
|
||
When looking to publish a new version, we can bump all the individual versions of the crates with | ||
|
||
``` | ||
cargo workspaces version patch --all --no-git-push --no-git-tag --allow-branch "*" | ||
``` | ||
|
||
This ensures that the workspaces have the right versioning |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,6 @@ | ||
[package] | ||
name = "instructor-ai" | ||
version = "0.1.8" | ||
edition = "2021" | ||
authors = ["Ivan Leo <[email protected]>"] | ||
description = "instructor-ai is a simple crate that allows for users to do validated structured outputs" | ||
|
@@ -13,10 +14,10 @@ changelog = "CHANGELOG.md" | |
|
||
[dependencies] | ||
instruct-macros = { path = "../instruct-macros", version = "0.*" } | ||
instruct-macros-types = { path = "../instruct-macros-types", version = "0.*" } | ||
openai-api-rs = "4.1.0" | ||
serde = { version = "1.0", features = ["derive"] } | ||
serde_json = "1.0" | ||
instruct-macros-types = { path = "../instruct-macros-types", version = "0.*" } | ||
|
||
[lib] | ||
name = "instructor_ai" | ||
|