Overview
| Comment: | bump and prepare to release |
|---|---|
| Downloads: | Tarball | ZIP archive | SQL archive |
| Timelines: | family | ancestors | descendants | both | trunk |
| Files: | files | file ages | folders |
| SHA3-256: |
361d13d6543bec2e541c8e2aa66c8ff7 |
| User & Date: | arcade on 2026-01-12 15:17:18.734 |
| Other Links: | manifest | tags |
Context
|
2026-01-18
| ||
| 08:14 | fix error message check-in: 700254f838 user: arcade tags: trunk | |
|
2026-01-12
| ||
| 15:27 | bump, update project meta, license switch all output to use HTML parser, and enable header collapsing inside quoted block, remove extra spacing, change how message size is calculated fix unit tests for html sanitizing check-in: d87e80b9be user: arcade tags: release, v0.6.0 | |
| 15:17 | bump and prepare to release check-in: 361d13d654 user: arcade tags: trunk | |
| 15:13 | limit number of job runs check-in: 7551b4dc28 user: arcade tags: trunk | |
Changes
Modified Cargo.lock
from [4e2b28d974]
to [f3f463046b].
| ︙ | ︙ | |||
1408 1409 1410 1411 1412 1413 1414 | dependencies = [ "ppv-lite86", "rand_core", ] [[package]] name = "rand_core" | | | | 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 | dependencies = [ "ppv-lite86", "rand_core", ] [[package]] name = "rand_core" version = "0.9.4" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "4f1b3bc831f92381018fd9c6350b917c7b21f1eed35a65a51900e0e55a3d7afa" dependencies = [ "getrandom 0.3.4", ] [[package]] name = "redox_syscall" version = "0.5.18" |
| ︙ | ︙ | |||
1872 1873 1874 1875 1876 1877 1878 | "async-process", "blocking", "futures-lite", ] [[package]] name = "smtp2tg" | | | 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 | "async-process", "blocking", "futures-lite", ] [[package]] name = "smtp2tg" version = "0.6.0" dependencies = [ "async-compat", "config", "hostname", "just-getopt", "lazy_static", "mail-parser", |
| ︙ | ︙ |
Modified Cargo.toml
from [ae87cd2ff4]
to [c5c83c91a4].
1 2 | [package] name = "smtp2tg" | | | 1 2 3 4 5 6 7 8 9 10 | [package] name = "smtp2tg" version = "0.6.0" authors = [ "arcade@b1t.name" ] edition = "2024" license = "0BSD" repository = "http://fs.b1t.name/smtp2tg" [dependencies] async-compat = "0.2.5" |
| ︙ | ︙ |