Skip to content
Merged
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
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:
uses: actions/checkout@v4
with:
repository: samjanny/entangled
ref: v1.0-rc.47
ref: v1.0-rc.48
path: docs-spec
- uses: dtolnay/rust-toolchain@master
with:
Expand Down
2 changes: 1 addition & 1 deletion Cargo.lock

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

2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ A site built with Entangled is not a web application. It is a set of signed JSON

- [`entangled-core`](./entangled-core): the protocol core library.

Current crate version: `0.5.7`.
Current crate version: `0.8.0`.

Implemented in `entangled-core`:

Expand Down
2 changes: 1 addition & 1 deletion entangled-core/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "entangled-core"
version = "0.7.0"
version = "0.8.0"
edition = "2021"
rust-version = "1.88"
license = "MIT OR Apache-2.0"
Expand Down
2 changes: 1 addition & 1 deletion entangled-core/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@
/// byte-equality between this constant and the corpus's `rc_target`,
/// so a corpus that drifts ahead of (or behind) the code fails CI
/// instead of silently skipping new vectors.
pub const SPEC_REVISION: &str = "1.0-rc.47";
pub const SPEC_REVISION: &str = "1.0-rc.48";

pub mod canon;
pub mod crypto;
Expand Down
Loading