Skip to content

Commit 3cc59d7

Browse files
committed
Bump the version to 0.0.1.
1 parent 2abfdb3 commit 3cc59d7

File tree

5 files changed

+17
-11
lines changed

5 files changed

+17
-11
lines changed

CHANGES.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,10 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8+
## 0.0.1 - 2025-07-30
9+
### Added
10+
- Decrypt the Signal Desktop database
11+
- Access Signal Desktop chat/contact metadata
12+
- Support macOS, Windows, and Linux
13+
814
## 0.0.0 - 2025-07-27

Cargo.lock

Lines changed: 6 additions & 5 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
[package]
44
name = "asimov-signal-module"
5-
version = "0.0.0"
5+
version = "0.0.1"
66
authors = ["ASIMOV Community"]
77
edition = "2024"
88
#rust-version = "1.85"
@@ -25,7 +25,7 @@ tracing = ["asimov-module/tracing", "clientele?/tracing"]
2525
unstable = []
2626

2727
[dependencies]
28-
asimov-module = { version = "25.0.0-dev.18", default-features = true }
28+
asimov-module = { version = "25.0.0-dev.19", default-features = true }
2929
clap = { version = "4.5", default-features = false, features = [
3030
"std",
3131
"string",
@@ -57,6 +57,3 @@ lto = "thin"
5757
name = "asimov-signal-reader"
5858
path = "src/reader/main.rs"
5959
required-features = ["cli"]
60-
61-
[patch.crates-io]
62-
asimov-module = { git = "https://github.com/asimov-platform/asimov.rs.git" }

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
0.0.0
1+
0.0.1

src/lib.rs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,9 @@ pub use config::*;
2222
mod db;
2323
pub use db::*;
2424

25+
#[cfg(feature = "std")]
2526
mod decrypt;
27+
#[cfg(feature = "std")]
2628
pub use decrypt::*;
2729

2830
#[cfg(feature = "std")]

0 commit comments

Comments
 (0)