Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: prepare alpha.7 release #620

Merged
merged 2 commits into from
Oct 3, 2024
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 crates/common/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "tlsn-common"
description = "Common code shared between tlsn-prover and tlsn-verifier"
version = "0.1.0-alpha.6"
version = "0.1.0-alpha.7"
edition = "2021"

[features]
Expand Down
2 changes: 1 addition & 1 deletion crates/components/aead/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ description = "This crate provides an implementation of a two-party version of A
keywords = ["tls", "mpc", "2pc", "aead", "aes", "aes-gcm"]
categories = ["cryptography"]
license = "MIT OR Apache-2.0"
version = "0.1.0-alpha.6"
version = "0.1.0-alpha.7"
edition = "2021"

[lib]
Expand Down
2 changes: 1 addition & 1 deletion crates/components/block-cipher/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ description = "2PC block cipher implementation"
keywords = ["tls", "mpc", "2pc", "block-cipher"]
categories = ["cryptography"]
license = "MIT OR Apache-2.0"
version = "0.1.0-alpha.6"
version = "0.1.0-alpha.7"
edition = "2021"

[lib]
Expand Down
2 changes: 1 addition & 1 deletion crates/components/hmac-sha256-circuits/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ description = "The 2PC circuits for TLS HMAC-SHA256 PRF"
keywords = ["tls", "mpc", "2pc", "hmac", "sha256"]
categories = ["cryptography"]
license = "MIT OR Apache-2.0"
version = "0.1.0-alpha.6"
version = "0.1.0-alpha.7"
edition = "2021"

[lib]
Expand Down
2 changes: 1 addition & 1 deletion crates/components/hmac-sha256/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ description = "A 2PC implementation of TLS HMAC-SHA256 PRF"
keywords = ["tls", "mpc", "2pc", "hmac", "sha256"]
categories = ["cryptography"]
license = "MIT OR Apache-2.0"
version = "0.1.0-alpha.6"
version = "0.1.0-alpha.7"
edition = "2021"

[lib]
Expand Down
2 changes: 1 addition & 1 deletion crates/components/key-exchange/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ description = "Implementation of the 3-party key-exchange protocol"
keywords = ["tls", "mpc", "2pc", "pms", "key-exchange"]
categories = ["cryptography"]
license = "MIT OR Apache-2.0"
version = "0.1.0-alpha.6"
version = "0.1.0-alpha.7"
edition = "2021"

[lib]
Expand Down
2 changes: 1 addition & 1 deletion crates/components/stream-cipher/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ description = "2PC stream cipher implementation"
keywords = ["tls", "mpc", "2pc", "stream-cipher"]
categories = ["cryptography"]
license = "MIT OR Apache-2.0"
version = "0.1.0-alpha.6"
version = "0.1.0-alpha.7"
edition = "2021"

[features]
Expand Down
2 changes: 1 addition & 1 deletion crates/components/universal-hash/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ description = "A crate which implements different hash functions for two-party c
keywords = ["tls", "mpc", "2pc", "hash"]
categories = ["cryptography"]
license = "MIT OR Apache-2.0"
version = "0.1.0-alpha.6"
version = "0.1.0-alpha.7"
edition = "2021"

[features]
Expand Down
2 changes: 1 addition & 1 deletion crates/core/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ description = "Core types for TLSNotary"
keywords = ["tls", "mpc", "2pc", "types"]
categories = ["cryptography"]
license = "MIT OR Apache-2.0"
version = "0.1.0-alpha.6"
version = "0.1.0-alpha.7"
edition = "2021"

[features]
Expand Down
2 changes: 1 addition & 1 deletion crates/formats/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "tlsn-formats"
version = "0.1.0-alpha.6"
version = "0.1.0-alpha.7"
edition = "2021"

[dependencies]
Expand Down
2 changes: 1 addition & 1 deletion crates/notary/client/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "notary-client"
version = "0.1.0-alpha.6"
version = "0.1.0-alpha.7"
edition = "2021"

[dependencies]
Expand Down
2 changes: 1 addition & 1 deletion crates/notary/server/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "notary-server"
version = "0.1.0-alpha.6"
version = "0.1.0-alpha.7"
edition = "2021"

[dependencies]
Expand Down
2 changes: 1 addition & 1 deletion crates/notary/server/openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ openapi: 3.0.0
info:
title: Notary Server
description: Notary server written in Rust to provide notarization service.
version: 0.1.0-alpha.6
version: 0.1.0-alpha.7

tags:
- name: General
Expand Down
2 changes: 1 addition & 1 deletion crates/prover/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ description = "Contains the prover library"
keywords = ["tls", "mpc", "2pc", "prover"]
categories = ["cryptography"]
license = "MIT OR Apache-2.0"
version = "0.1.0-alpha.6"
version = "0.1.0-alpha.7"
edition = "2021"

[features]
Expand Down
2 changes: 1 addition & 1 deletion crates/tls/backend/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ description = "A TLS backend trait for TLSNotary"
keywords = ["tls", "mpc", "2pc"]
categories = ["cryptography"]
license = "MIT OR Apache-2.0"
version = "0.1.0-alpha.6"
version = "0.1.0-alpha.7"
edition = "2021"

[lib]
Expand Down
2 changes: 1 addition & 1 deletion crates/tls/client-async/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ description = "An async TLS client for TLSNotary"
keywords = ["tls", "mpc", "2pc", "client", "async"]
categories = ["cryptography"]
license = "MIT OR Apache-2.0"
version = "0.1.0-alpha.6"
version = "0.1.0-alpha.7"
edition = "2021"

[lib]
Expand Down
2 changes: 1 addition & 1 deletion crates/tls/client/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ description = "A TLS client for TLSNotary"
keywords = ["tls", "mpc", "2pc", "client", "sync"]
categories = ["cryptography"]
license = "MIT OR Apache-2.0"
version = "0.1.0-alpha.6"
version = "0.1.0-alpha.7"
edition = "2021"
autobenches = false

Expand Down
2 changes: 1 addition & 1 deletion crates/tls/core/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ description = "Cryptographic operations for the TLSNotary TLS client"
keywords = ["tls", "mpc", "2pc"]
categories = ["cryptography"]
license = "MIT OR Apache-2.0"
version = "0.1.0-alpha.6"
version = "0.1.0-alpha.7"
edition = "2021"

[lib]
Expand Down
2 changes: 1 addition & 1 deletion crates/tls/mpc/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ description = "Implementation of the backend trait for 2PC"
keywords = ["tls", "mpc", "2pc"]
categories = ["cryptography"]
license = "MIT OR Apache-2.0"
version = "0.1.0-alpha.6"
version = "0.1.0-alpha.7"
edition = "2021"

[lib]
Expand Down
2 changes: 1 addition & 1 deletion crates/verifier/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ description = "A library for the TLSNotary verifier"
keywords = ["tls", "mpc", "2pc"]
categories = ["cryptography"]
license = "MIT OR Apache-2.0"
version = "0.1.0-alpha.6"
version = "0.1.0-alpha.7"
edition = "2021"

[features]
Expand Down
2 changes: 1 addition & 1 deletion crates/wasm/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "tlsn-wasm"
version = "0.1.0-alpha.6"
version = "0.1.0-alpha.7"
edition = "2021"

[lib]
Expand Down