Skip to content

Commit 60aa017

Browse files
committed
build: bump dependencies
1 parent 89ea8a6 commit 60aa017

File tree

5 files changed

+143
-34
lines changed

5 files changed

+143
-34
lines changed

.cliffignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
9294a0da4821a034030d02b16a614cbe8ec166ee

CHANGELOG.md

Lines changed: 61 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,67 @@ 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-
## [Unreleased]
8+
## [0.1.0] - 2025-10-24
99

1010
### Added
1111

12-
[Unreleased]: https://github.com/pimalaya/cardamum/compare/root...HEAD
12+
- Add missing desc column to listing
13+
- Add vdir support
14+
15+
### Changed
16+
17+
- Init nix and rust env
18+
- Init
19+
- Init
20+
- Init sans I/O module with std connector
21+
- Init http, tls and carddav modules
22+
- Init cli structure
23+
- Init config system without wizard
24+
- Init basic backend account config
25+
- Init cli list command
26+
- Init cli list command
27+
- Init cli read command
28+
- Rename list flow to ListAddressbooksFlow
29+
- Init table for list command
30+
- Init create command
31+
- Init update command
32+
- Init delete command
33+
- Init create command
34+
- Init update command
35+
- Init delete command
36+
- Integrate vparser to list cards command
37+
- Integrate pimalaya/addressbook libs
38+
- Plug cargo features from addressbook-* libs
39+
- Introduce internal cargo flags
40+
- Init
41+
- Bump nix flakes and activate ci on master
42+
- Init config.sample.toml
43+
- Bump addressbook libs
44+
- Use rustls ring by default instead of aws-lc
45+
- Improve api and docs
46+
- Switch to AGPL
47+
- Bump dependencies
48+
49+
### Fixed
50+
51+
- Put back addressbook commands
52+
- Put back create card command
53+
- Put back create and read card commands
54+
- Put back update and delete card commands
55+
- Shell-expand home-dir
56+
- Fix builds
57+
58+
### Removed
59+
60+
- Remove full default features
61+
- Remove unused examples folder
62+
63+
## [root] - 2025-01-12
64+
65+
### Added
66+
67+
- Init repository
68+
69+
[0.1.0]: https://github.com/pimalaya/ortie/compare/root..v0.1.0
70+
71+
<!-- generated by git-cliff on 2025-10-24T13:48:54.660719989+02:00 -->

Cargo.lock

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

Cargo.toml

Lines changed: 0 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -63,22 +63,3 @@ log = "0.4"
6363
pimalaya-toolbox = { version = "0.0.2", default-features = false, features = ["config", "prompt", "secret", "stream", "terminal"] }
6464
secrecy = { version = "0.10", features = ["serde"], optional = true }
6565
serde = { version = "1", features = ["derive"] }
66-
67-
[patch.crates-io]
68-
# io-addressbook.path = "../addressbook"
69-
# io-fs.path = "../fs"
70-
# io-http.path = "../http"
71-
# io-keyring.path = "../keyring"
72-
# io-process.path = "../process"
73-
# io-stream.path = "../stream"
74-
# io-vdir.path = "../vdir"
75-
# pimalaya-toolbox.path = "../toolbox"
76-
77-
io-addressbook = { git = "https://github.com/pimalaya/io-addressbook", branch = "wip" }
78-
io-fs.git = "https://github.com/pimalaya/io-fs"
79-
io-http.git = "https://github.com/pimalaya/io-http"
80-
io-keyring.git = "https://github.com/pimalaya/io-keyring"
81-
io-process.git = "https://github.com/pimalaya/io-process"
82-
io-stream.git = "https://github.com/pimalaya/io-stream"
83-
io-vdir.git = "https://github.com/pimalaya/io-vdir"
84-
pimalaya-toolbox.git = "https://github.com/pimalaya/toolbox"

cliff.toml

Lines changed: 60 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,60 @@
1+
# https://github.com/orhun/git-cliff/blob/main/examples/keepachangelog.toml
2+
3+
[changelog]
4+
header = """
5+
# Changelog\n
6+
All notable changes to this project will be documented in this file.
7+
8+
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
9+
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).\n
10+
"""
11+
body = """
12+
{% if version -%}
13+
## [{{ version | trim_start_matches(pat="v") }}] - {{ timestamp | date(format="%Y-%m-%d") }}
14+
{% else -%}
15+
## [Unreleased]
16+
{% endif -%}
17+
{% for group, commits in commits | group_by(attribute="group") %}
18+
### {{ group | upper_first }}
19+
{% for commit in commits %}
20+
- {{ commit.message | split(pat="\n") | first | upper_first | trim }}\
21+
{% endfor %}
22+
{% endfor %}\n
23+
"""
24+
footer = """
25+
{% for release in releases -%}
26+
{% if release.version -%}
27+
{% if release.previous.version -%}
28+
[{{ release.version | trim_start_matches(pat="v") }}]: \
29+
https://github.com/pimalaya/ortie\
30+
/compare/{{ release.previous.version }}..{{ release.version }}
31+
{% endif -%}
32+
{% else -%}
33+
[unreleased]: https://github.com/pimalaya/ortie\
34+
/compare/{{ release.previous.version }}..HEAD
35+
{% endif -%}
36+
{% endfor %}
37+
<!-- generated by git-cliff on {{ now() }} -->
38+
"""
39+
trim = true
40+
41+
[git]
42+
conventional_commits = true
43+
filter_unconventional = false
44+
commit_parsers = [
45+
{ message = "^init", group = "Added" },
46+
{ message = "^add", group = "Added" },
47+
{ message = "^remove", group = "Removed" },
48+
{ message = "^delete", group = "Removed" },
49+
{ message = "^build: release", skip = true },
50+
{ message = "^.*: add", group = "Added" },
51+
{ message = "^.*: remove", group = "Removed" },
52+
{ message = "^.*: delete", group = "Removed" },
53+
{ message = "^test", group = "Fixed" },
54+
{ message = "^fix", group = "Fixed" },
55+
{ message = "^.*: fix", group = "Fixed" },
56+
{ message = "^.*", group = "Changed" },
57+
]
58+
filter_commits = false
59+
topo_order = false
60+
sort_commits = "oldest"

0 commit comments

Comments
 (0)