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
12 changes: 6 additions & 6 deletions Cargo.lock

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

5 changes: 5 additions & 0 deletions cc-book/src/release_notes.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,11 @@

## CoreCrypto 10

### v10.2.0 - 2026-07-28

- Key packages are retained in case of a `ConversationAlreadyExists` error during `processWelcomeMessage()`, however,
only if the key package was created in an earlier CoreCrypto transaction.

### v10.1.1 - 2026-07-21

- Swift/iOS: CoreCrypto transactions are now cancellable
Expand Down
2 changes: 1 addition & 1 deletion crypto-ffi/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
name = "core-crypto-ffi"
description = "Platform-specific bindings (Android, iOS, WASM) for CoreCrypto"
repository = "https://github.com/wireapp/core-crypto"
version = "10.1.1"
version = "10.2.0"
edition = "2024"
license = "GPL-3.0-only"
publish = false
Expand Down
2 changes: 1 addition & 1 deletion crypto-ffi/bindings/gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ mavenCentralPublishing=true
mavenCentralAutomaticPublishing=true
signAllPublications=true
GROUP=com.wire
VERSION_NAME=10.1.1
VERSION_NAME=10.2.0
POM_NAME=Core Crypto
POM_DESCRIPTION=MLS/Proteus multiplexer abstraction with encrypted persistent storage in Rust
POM_INCEPTION_YEAR=2022
Expand Down
2 changes: 1 addition & 1 deletion crypto-ffi/bindings/js/packages/browser/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@wireapp/core-crypto-browser",
"version": "10.1.1",
"version": "10.2.0",
"license": "GPL-3.0",
"type": "module"
}
2 changes: 1 addition & 1 deletion crypto-ffi/bindings/js/packages/core-crypto/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@wireapp/core-crypto",
"version": "10.1.1",
"version": "10.2.0",
"description": "CoreCrypto bindings for browser and native JavaScript runtimes",
"keywords": [
"corecrypto",
Expand Down
2 changes: 1 addition & 1 deletion crypto-ffi/bindings/js/packages/native/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@wireapp/core-crypto-native",
"version": "10.1.1",
"version": "10.2.0",
"license": "GPL-3.0",
"type": "module",
"dependencies": {
Expand Down
4 changes: 2 additions & 2 deletions crypto-ffi/bindings/swift/BuildSettings.xcconfig
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
// Configuration settings file format documentation can be found at:
// https://help.apple.com/xcode/#/dev745c5c974

MARKETING_VERSION=10.1.1
CURRENT_PROJECT_VERSION=10.1.1
MARKETING_VERSION=10.2.0
CURRENT_PROJECT_VERSION=10.2.0
DYLIB_CURRENT_VERSION=$(CURRENT_PROJECT_VERSION)
DYLIB_COMPATIBILITY_VERSION=$(CURRENT_PROJECT_VERSION)
BUILD_LIBRARY_FOR_DISTRIBUTION=YES
Expand Down
2 changes: 1 addition & 1 deletion crypto-macros/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
name = "core-crypto-macros"
description = "Macros for core-crypto"
repository = "https://github.com/wireapp/core-crypto"
version = "10.1.1"
version = "10.2.0"
edition = "2024"
license = "GPL-3.0-only"

Expand Down
2 changes: 1 addition & 1 deletion crypto/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
name = "core-crypto"
description = "Abstraction over OpenMLS with persistent keystore"
repository = "https://github.com/wireapp/core-crypto"
version = "10.1.1"
version = "10.2.0"
edition = "2024"
license = "GPL-3.0-only"
publish = false
Expand Down
1 change: 1 addition & 0 deletions docs/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ input, and confirm by "run workflow" below the input. Note that deployment depen
| | TypeScript | Kotlin | Swift | Rust | CC Book |
| ----------- | ---------------------------------------------------------- | ------------------------------------------------------- | ------------------------------------------------ | -------------------------------------- | -------------------------- |
| **main** | [TypeScript](./main/typescript/) | [Kotlin](./main/kotlin/) | [Swift](./main/swift/) | [Rust](./main/rust/core_crypto/) | [Book](./main/cc-book/) |
| **v10.2.0** | [TypeScript](./v10.2.0/typescript) | [Kotlin](./v10.2.0/kotlin/) | [Swift](./v10.2.0/swift) | [Rust](./v10.2.0/rust/core_crypto) | [Book](./v10.2.0/cc-book/) |
| **v10.1.1** | [TypeScript](./v10.1.1/typescript) | [Kotlin](./v10.1.1/kotlin/) | [Swift](./v10.1.1/swift) | [Rust](./v10.1.1/rust/core_crypto) | [Book](./v10.1.1/cc-book/) |
| **v10.0.0** | [TypeScript](./v10.0.0/typescript) | [Kotlin](./v10.0.0/kotlin/) | [Swift](./v10.0.0/swift) | [Rust](./v10.0.0/rust/core_crypto) | [Book](./v10.0.0/cc-book/) |
| **v9.3.4** | [TypeScript](./v9.3.4/typescript) | [Kotlin](./v9.3.4/kotlin/) | [Swift](./v9.3.4/swift) | [Rust](./v9.3.4/rust/core_crypto) | |
Expand Down
2 changes: 1 addition & 1 deletion interop/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "interop"
version = "10.1.1"
version = "10.2.0"
edition = "2024"
license = "GPL-3.0-only"

Expand Down
2 changes: 1 addition & 1 deletion keystore-dump/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "keystore-dump"
description = "Dumps a keystore to JSON on stdout"
version = "10.1.1"
version = "10.2.0"
edition = "2024"
license = "GPL-3.0-only"

Expand Down
2 changes: 1 addition & 1 deletion keystore/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
name = "core-crypto-keystore"
description = "Encrypted keystore with support for OpenMLS and Proteus"
repository = "https://github.com/wireapp/core-crypto"
version = "10.1.1"
version = "10.2.0"
edition = "2024"
license = "GPL-3.0-only"
publish = false
Expand Down
Loading