Skip to content
This repository was archived by the owner on Jun 24, 2026. It is now read-only.
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [1.2.1](https://github.com/AprilNEA/BYOKEY/compare/v1.2.0...v1.2.1) - 2026-05-08

### Other

- Add `pullfrog.yml` workflow

## [1.2.0](https://github.com/AprilNEA/BYOKEY/compare/v1.1.0...v1.2.0) - 2026-04-18

### Added
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.

20 changes: 10 additions & 10 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ exclude = ["desktop/src-tauri"]

[workspace.package]
edition = "2024"
version = "1.2.0"
version = "1.2.1"
authors = ["AprilNEA <github@sku.moe>"]
description = "Bring Your Own Keys — AI subscription-to-API proxy gateway"
license = "MIT OR Apache-2.0"
Expand All @@ -28,15 +28,15 @@ readme = "README.md"

[workspace.dependencies]
# Workspace crates
byokey-types = { version = "1.2.0", path = "crates/types" }
byokey-config = { version = "1.2.0", path = "crates/config" }
byokey-store = { version = "1.2.0", path = "crates/store" }
byokey-auth = { version = "1.2.0", path = "crates/auth" }
byokey-translate = { version = "1.2.0", path = "crates/translate" }
byokey-provider = { version = "1.2.0", path = "crates/provider" }
byokey-proto = { version = "1.2.0", path = "crates/proto" }
byokey-proxy = { version = "1.2.0", path = "crates/proxy" }
byokey-daemon = { version = "1.2.0", path = "crates/daemon" }
byokey-types = { version = "1.2.1", path = "crates/types" }
byokey-config = { version = "1.2.1", path = "crates/config" }
byokey-store = { version = "1.2.1", path = "crates/store" }
byokey-auth = { version = "1.2.1", path = "crates/auth" }
byokey-translate = { version = "1.2.1", path = "crates/translate" }
byokey-provider = { version = "1.2.1", path = "crates/provider" }
byokey-proto = { version = "1.2.1", path = "crates/proto" }
byokey-proxy = { version = "1.2.1", path = "crates/proxy" }
byokey-daemon = { version = "1.2.1", path = "crates/daemon" }
ampcode = { version = "0.1.1", path = "crates/ampcode" }
loadwise-core = "0.1.0"
aigw = { version = "0.4.0", default-features = false, features = ["anthropic", "anthropic-claude-code", "openai", "openai-compat"] }
Expand Down
Loading