Skip to content

Commit d218131

Browse files
doublegateclaude
andcommitted
chore(release): bump version to v1.6.3
Phase 17 Complete - Mobile Protocol Integration & WRAITH-Chat Enhancements Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
1 parent c3bd5e0 commit d218131

File tree

38 files changed

+17301
-278
lines changed

38 files changed

+17301
-278
lines changed

CLAUDE.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ Guidance for Claude Code when working with this repository.
66

77
WRAITH (Wire-speed Resilient Authenticated Invisible Transfer Handler) is a decentralized secure file transfer protocol implemented in Rust.
88

9-
**Status:** v1.6.2 - Protocol Integration & Infrastructure
9+
**Status:** v1.6.3 - Mobile Protocol Integration & WRAITH-Chat Enhancements (Phase 17 Complete)
1010

1111
### Metrics
1212
| Metric | Value |

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ members = [
2626
exclude = ["crates/wraith-xdp", "fuzz"]
2727

2828
[workspace.package]
29-
version = "1.6.2"
29+
version = "1.6.3"
3030
edition = "2024"
3131
rust-version = "1.85"
3232
license = "MIT"

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,15 +9,15 @@ A decentralized secure file transfer protocol optimized for high-throughput, low
99
[![CI Status](https://github.com/doublegate/WRAITH-Protocol/actions/workflows/ci.yml/badge.svg)](https://github.com/doublegate/WRAITH-Protocol/actions/workflows/ci.yml)
1010
[![CodeQL](https://github.com/doublegate/WRAITH-Protocol/actions/workflows/codeql.yml/badge.svg)](https://github.com/doublegate/WRAITH-Protocol/actions/workflows/codeql.yml)
1111
[![Release](https://github.com/doublegate/WRAITH-Protocol/actions/workflows/release.yml/badge.svg)](https://github.com/doublegate/WRAITH-Protocol/actions/workflows/release.yml)
12-
[![Version](https://img.shields.io/badge/version-1.6.2-blue.svg)](https://github.com/doublegate/WRAITH-Protocol/releases)
12+
[![Version](https://img.shields.io/badge/version-1.6.3-blue.svg)](https://github.com/doublegate/WRAITH-Protocol/releases)
1313
[![Security](https://img.shields.io/badge/security-audited-green.svg)](docs/security/SECURITY_AUDIT_v1.1.0.md)
1414
[![Rust](https://img.shields.io/badge/rust-1.85%2B-orange.svg)](https://www.rust-lang.org/)
1515
[![Edition](https://img.shields.io/badge/edition-2024-orange.svg)](https://doc.rust-lang.org/edition-guide/rust-2024/index.html)
1616
[![License](https://img.shields.io/badge/license-MIT-green.svg)](LICENSE)
1717

1818
## Current Status
1919

20-
**Version:** 1.6.2 Protocol Integration & Infrastructure | **Development Phase:** Phase 16 Complete
20+
**Version:** 1.6.3 Mobile Protocol Integration & WRAITH-Chat Enhancements | **Development Phase:** Phase 17 Complete
2121

2222
WRAITH Protocol is production-ready with desktop, mobile, and messaging applications. Phase 16 delivers Android and iOS mobile clients with native UIs (Kotlin/Jetpack Compose, Swift/SwiftUI), plus WRAITH-Chat, a secure E2EE messaging application with Signal Protocol Double Ratchet encryption, SQLCipher encrypted storage, and React 18 frontend. v1.6.0 adds mobile platform support, end-to-end encrypted messaging, and comprehensive client ecosystem expansion.
2323

@@ -187,7 +187,7 @@ cargo test --workspace
187187

188188
## Quick Start
189189

190-
**Note:** WRAITH Protocol v1.6.2 features a complete Node API and protocol implementation with fully integrated CLI commands. The wraith-cli binary provides production-ready command-line access to all protocol features including `ping` for connectivity testing and `config` for runtime configuration.
190+
**Note:** WRAITH Protocol v1.6.3 features a complete Node API and protocol implementation with fully integrated CLI commands. The wraith-cli binary provides production-ready command-line access to all protocol features including `ping` for connectivity testing and `config` for runtime configuration.
191191

192192
```bash
193193
# Generate identity keypair
@@ -714,6 +714,6 @@ WRAITH Protocol builds on the work of many excellent projects and technologies:
714714

715715
**WRAITH Protocol** - *Secure. Fast. Invisible.*
716716

717-
**Status:** v1.6.2 Protocol Integration & Infrastructure | **License:** MIT | **Language:** Rust 2024 (MSRV 1.85) | **Tests:** 1,700+ (100% pass rate) | **Quality:** Production-ready, 0 vulnerabilities, zero warnings, 98/100 quality grade | **Clients:** 4 Tier 1 applications complete (Desktop, Android, iOS, E2EE Chat)
717+
**Status:** v1.6.3 Mobile Protocol Integration & WRAITH-Chat Enhancements | **License:** MIT | **Language:** Rust 2024 (MSRV 1.85) | **Tests:** 1,700+ (100% pass rate) | **Quality:** Production-ready, 0 vulnerabilities, zero warnings, 98/100 quality grade | **Clients:** 4 Tier 1 applications complete (Desktop, Android, iOS, E2EE Chat)
718718

719719
*Last Updated: 2026-01-21*

clients/wraith-android/app/src/main/rust/Cargo.toml

Lines changed: 9 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "wraith-android"
3-
version = "1.6.2"
3+
version = "1.6.3"
44
edition = "2024"
55
rust-version = "1.85"
66

@@ -31,12 +31,15 @@ android_logger = "0.14"
3131
thiserror = "2"
3232
anyhow = "1.0"
3333

34+
# Cryptographic RNG
35+
rand_core = { version = "0.6", features = ["getrandom"] }
36+
3437
# WRAITH Protocol (relative paths to workspace)
35-
wraith-core = { path = "../../../../../crates/wraith-core" }
36-
wraith-crypto = { path = "../../../../../crates/wraith-crypto" }
37-
wraith-transport = { path = "../../../../../crates/wraith-transport" }
38-
wraith-discovery = { path = "../../../../../crates/wraith-discovery" }
39-
wraith-files = { path = "../../../../../crates/wraith-files" }
38+
wraith-core = { path = "../../../../../../crates/wraith-core" }
39+
wraith-crypto = { path = "../../../../../../crates/wraith-crypto" }
40+
wraith-transport = { path = "../../../../../../crates/wraith-transport" }
41+
wraith-discovery = { path = "../../../../../../crates/wraith-discovery" }
42+
wraith-files = { path = "../../../../../../crates/wraith-files" }
4043

4144
[features]
4245
android = []

0 commit comments

Comments
 (0)