+6
CHANGELOG.md
+6
CHANGELOG.md
···
7
8
## [Unreleased]
9
10
## [0.9.7] - 2025-07-13
11
### Changed
12
- Updated `list_records` method to support optional DPoP authentication for enhanced security
···
105
- Core DID document handling
106
- Cryptographic key operations for P-256 curves
107
108
[0.9.6]: https://tangled.sh/@smokesignal.events/atproto-identity-rs/tree/v0.9.6
109
[0.9.5]: https://tangled.sh/@smokesignal.events/atproto-identity-rs/tree/v0.9.5
110
[0.9.4]: https://tangled.sh/@smokesignal.events/atproto-identity-rs/tree/v0.9.4
···
7
8
## [Unreleased]
9
10
+
## [0.10.0] - 2025-07-28
11
+
### Changed
12
+
- Version release 0.10.0 with updated dependencies and stability improvements
13
+
14
## [0.9.7] - 2025-07-13
15
### Changed
16
- Updated `list_records` method to support optional DPoP authentication for enhanced security
···
109
- Core DID document handling
110
- Cryptographic key operations for P-256 curves
111
112
+
[0.10.0]: https://tangled.sh/@smokesignal.events/atproto-identity-rs/tree/v0.10.0
113
+
[0.9.7]: https://tangled.sh/@smokesignal.events/atproto-identity-rs/tree/v0.9.7
114
[0.9.6]: https://tangled.sh/@smokesignal.events/atproto-identity-rs/tree/v0.9.6
115
[0.9.5]: https://tangled.sh/@smokesignal.events/atproto-identity-rs/tree/v0.9.5
116
[0.9.4]: https://tangled.sh/@smokesignal.events/atproto-identity-rs/tree/v0.9.4
+9
-9
Cargo.lock
+9
-9
Cargo.lock
···
107
108
[[package]]
109
name = "atproto-client"
110
-
version = "0.9.7"
111
dependencies = [
112
"anyhow",
113
"atproto-identity",
···
130
131
[[package]]
132
name = "atproto-identity"
133
-
version = "0.9.7"
134
dependencies = [
135
"anyhow",
136
"async-trait",
···
156
157
[[package]]
158
name = "atproto-jetstream"
159
-
version = "0.9.7"
160
dependencies = [
161
"anyhow",
162
"async-trait",
···
178
179
[[package]]
180
name = "atproto-oauth"
181
-
version = "0.9.7"
182
dependencies = [
183
"anyhow",
184
"async-trait",
···
211
212
[[package]]
213
name = "atproto-oauth-aip"
214
-
version = "0.9.7"
215
dependencies = [
216
"anyhow",
217
"atproto-oauth",
···
225
226
[[package]]
227
name = "atproto-oauth-axum"
228
-
version = "0.9.7"
229
dependencies = [
230
"anyhow",
231
"async-trait",
···
255
256
[[package]]
257
name = "atproto-record"
258
-
version = "0.9.7"
259
dependencies = [
260
"anyhow",
261
"atproto-identity",
···
275
276
[[package]]
277
name = "atproto-xrpcs"
278
-
version = "0.9.7"
279
dependencies = [
280
"anyhow",
281
"async-trait",
···
302
303
[[package]]
304
name = "atproto-xrpcs-helloworld"
305
-
version = "0.9.7"
306
dependencies = [
307
"anyhow",
308
"async-trait",
···
107
108
[[package]]
109
name = "atproto-client"
110
+
version = "0.10.0"
111
dependencies = [
112
"anyhow",
113
"atproto-identity",
···
130
131
[[package]]
132
name = "atproto-identity"
133
+
version = "0.10.0"
134
dependencies = [
135
"anyhow",
136
"async-trait",
···
156
157
[[package]]
158
name = "atproto-jetstream"
159
+
version = "0.10.0"
160
dependencies = [
161
"anyhow",
162
"async-trait",
···
178
179
[[package]]
180
name = "atproto-oauth"
181
+
version = "0.10.0"
182
dependencies = [
183
"anyhow",
184
"async-trait",
···
211
212
[[package]]
213
name = "atproto-oauth-aip"
214
+
version = "0.10.0"
215
dependencies = [
216
"anyhow",
217
"atproto-oauth",
···
225
226
[[package]]
227
name = "atproto-oauth-axum"
228
+
version = "0.10.0"
229
dependencies = [
230
"anyhow",
231
"async-trait",
···
255
256
[[package]]
257
name = "atproto-record"
258
+
version = "0.10.0"
259
dependencies = [
260
"anyhow",
261
"atproto-identity",
···
275
276
[[package]]
277
name = "atproto-xrpcs"
278
+
version = "0.10.0"
279
dependencies = [
280
"anyhow",
281
"async-trait",
···
302
303
[[package]]
304
name = "atproto-xrpcs-helloworld"
305
+
version = "0.10.0"
306
dependencies = [
307
"anyhow",
308
"async-trait",
+8
-8
Cargo.toml
+8
-8
Cargo.toml
···
22
categories = ["command-line-utilities", "web-programming"]
23
24
[workspace.dependencies]
25
-
atproto-client = { version = "0.9.7", path = "crates/atproto-client" }
26
-
atproto-identity = { version = "0.9.7", path = "crates/atproto-identity" }
27
-
atproto-oauth = { version = "0.9.7", path = "crates/atproto-oauth" }
28
-
atproto-oauth-axum = { version = "0.9.7", path = "crates/atproto-oauth-axum" }
29
-
atproto-oauth-aip = { version = "0.9.7", path = "crates/atproto-oauth-aip" }
30
-
atproto-record = { version = "0.9.7", path = "crates/atproto-record" }
31
-
atproto-xrpcs = { version = "0.9.7", path = "crates/atproto-xrpcs" }
32
-
atproto-jetstream = { version = "0.9.7", path = "crates/atproto-jetstream" }
33
34
anyhow = "1.0"
35
async-trait = "0.1.88"
···
22
categories = ["command-line-utilities", "web-programming"]
23
24
[workspace.dependencies]
25
+
atproto-client = { version = "0.10.0", path = "crates/atproto-client" }
26
+
atproto-identity = { version = "0.10.0", path = "crates/atproto-identity" }
27
+
atproto-oauth = { version = "0.10.0", path = "crates/atproto-oauth" }
28
+
atproto-oauth-axum = { version = "0.10.0", path = "crates/atproto-oauth-axum" }
29
+
atproto-oauth-aip = { version = "0.10.0", path = "crates/atproto-oauth-aip" }
30
+
atproto-record = { version = "0.10.0", path = "crates/atproto-record" }
31
+
atproto-xrpcs = { version = "0.10.0", path = "crates/atproto-xrpcs" }
32
+
atproto-jetstream = { version = "0.10.0", path = "crates/atproto-jetstream" }
33
34
anyhow = "1.0"
35
async-trait = "0.1.88"
+1
-1
Dockerfile
+1
-1
Dockerfile
···
63
LABEL org.opencontainers.image.description="AT Protocol identity management tools"
64
LABEL org.opencontainers.image.authors="Nick Gerakines <nick.gerakines@gmail.com>"
65
LABEL org.opencontainers.image.source="https://tangled.sh/@smokesignal.events/atproto-identity-rs"
66
-
LABEL org.opencontainers.image.version="0.9.7"
67
LABEL org.opencontainers.image.licenses="MIT"
68
69
# Document available binaries
···
63
LABEL org.opencontainers.image.description="AT Protocol identity management tools"
64
LABEL org.opencontainers.image.authors="Nick Gerakines <nick.gerakines@gmail.com>"
65
LABEL org.opencontainers.image.source="https://tangled.sh/@smokesignal.events/atproto-identity-rs"
66
+
LABEL org.opencontainers.image.version="0.10.0"
67
LABEL org.opencontainers.image.licenses="MIT"
68
69
# Document available binaries
+5
-5
README.md
+5
-5
README.md
+1
-1
crates/atproto-client/Cargo.toml
+1
-1
crates/atproto-client/Cargo.toml
+1
-1
crates/atproto-identity/Cargo.toml
+1
-1
crates/atproto-identity/Cargo.toml
+1
-1
crates/atproto-jetstream/Cargo.toml
+1
-1
crates/atproto-jetstream/Cargo.toml
+1
-1
crates/atproto-oauth-aip/Cargo.toml
+1
-1
crates/atproto-oauth-aip/Cargo.toml
+1
-1
crates/atproto-oauth-aip/README.md
+1
-1
crates/atproto-oauth-aip/README.md
+1
-1
crates/atproto-oauth-axum/Cargo.toml
+1
-1
crates/atproto-oauth-axum/Cargo.toml
+1
-1
crates/atproto-oauth/Cargo.toml
+1
-1
crates/atproto-oauth/Cargo.toml
+1
-1
crates/atproto-record/Cargo.toml
+1
-1
crates/atproto-record/Cargo.toml
+1
-1
crates/atproto-xrpcs-helloworld/Cargo.toml
+1
-1
crates/atproto-xrpcs-helloworld/Cargo.toml
+1
-1
crates/atproto-xrpcs/Cargo.toml
+1
-1
crates/atproto-xrpcs/Cargo.toml