Skip to content

Commit

Permalink
Merge branch 'main' into feature/agent-rework
Browse files Browse the repository at this point in the history
  • Loading branch information
sugyan committed Nov 21, 2024
2 parents 0676695 + 22c9590 commit 1933080
Show file tree
Hide file tree
Showing 188 changed files with 2,619 additions and 1,849 deletions.
19 changes: 19 additions & 0 deletions .github/workflows/common.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
name: Common
on:
push:
branches: ["main"]
pull_request:
branches: ["main"]
env:
CARGO_TERM_COLOR: always
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Build
run: |
cargo build -p atrium-common --verbose
- name: Run tests
run: |
cargo test -p atrium-common --lib
1 change: 1 addition & 0 deletions .github/workflows/wasm.yml
Original file line number Diff line number Diff line change
Expand Up @@ -67,3 +67,4 @@ jobs:
- run: wasm-pack test --node atrium-xrpc
- run: wasm-pack test --node atrium-xrpc-client
- run: wasm-pack test --node atrium-oauth/identity
- run: wasm-pack test --node atrium-common
36 changes: 23 additions & 13 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

10 changes: 6 additions & 4 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
[workspace]
members = [
"atrium-api",
"atrium-common",
"atrium-crypto",
"atrium-xrpc",
"atrium-xrpc-client",
Expand All @@ -25,11 +26,12 @@ keywords = ["atproto", "bluesky"]

[workspace.dependencies]
# Intra-workspace dependencies
atrium-api = { version = "0.24.7", path = "atrium-api", default-features = false }
atrium-api = { version = "0.24.8", path = "atrium-api", default-features = false }
atrium-common = { version = "0.1.0", path = "atrium-common" }
atrium-identity = { version = "0.1.0", path = "atrium-oauth/identity" }
atrium-xrpc = { version = "0.11.6", path = "atrium-xrpc" }
atrium-xrpc-client = { version = "0.5.9", path = "atrium-xrpc-client" }
bsky-sdk = { version = "0.1.12", path = "bsky-sdk" }
atrium-xrpc = { version = "0.12.0", path = "atrium-xrpc" }
atrium-xrpc-client = { version = "0.5.10", path = "atrium-xrpc-client" }
bsky-sdk = { version = "0.1.13", path = "bsky-sdk" }

# DAG-CBOR codec
ipld-core = { version = "0.4.1", default-features = false, features = ["std"] }
Expand Down
8 changes: 8 additions & 0 deletions atrium-api/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.24.8](https://github.com/sugyan/atrium/compare/atrium-api-v0.24.7...atrium-api-v0.24.8) - 2024-11-19

### Added

- Update API, based on the latest lexicon schemas ([#256](https://github.com/sugyan/atrium/pull/256))
- Update XrpcClient, add AuthorizationToken ([#248](https://github.com/sugyan/atrium/pull/248))
- Replace OnceCell with static OnceLock for regex compilation ([#250](https://github.com/sugyan/atrium/pull/250))

## [0.24.7](https://github.com/sugyan/atrium/compare/atrium-api-v0.24.6...atrium-api-v0.24.7) - 2024-10-28

### Added
Expand Down
2 changes: 1 addition & 1 deletion atrium-api/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "atrium-api"
version = "0.24.7"
version = "0.24.8"
authors = ["sugyan <[email protected]>"]
edition.workspace = true
rust-version.workspace = true
Expand Down
Loading

0 comments on commit 1933080

Please sign in to comment.