Skip to content

Commit 3d30ea3

Browse files
chore(main): release 0.2.0 (#14)
Co-authored-by: Max Hogan <max@maxhogan.dev>
1 parent 4b690d5 commit 3d30ea3

5 files changed

Lines changed: 42 additions & 8 deletions

File tree

.release-please-manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
{
2-
".": "0.1.0"
2+
".": "0.2.0"
33
}

CHANGELOG.md

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,25 @@ Released entries are appended automatically from Conventional Commits when the
55
"chore: release" pull request is merged. The project follows
66
[Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8+
## [0.2.0](https://github.com/pmaxhogan/driven/compare/v0.1.0...v0.2.0) (2026-06-25)
9+
10+
11+
### Features
12+
13+
* **cli:** local-state inspection subcommands (status / history / verify) ([#13](https://github.com/pmaxhogan/driven/issues/13)) ([4a4763a](https://github.com/pmaxhogan/driven/commit/4a4763a48c6cb1bc1f6eba3824215620066934dd))
14+
* **core:** metered network pause-or-throttle toggle ([#17](https://github.com/pmaxhogan/driven/issues/17)) ([4b690d5](https://github.com/pmaxhogan/driven/commit/4b690d5146c94936ae8659012d0a4a16d35558cd))
15+
* **core:** pre/post backup shell hooks ([#16](https://github.com/pmaxhogan/driven/issues/16)) ([35df924](https://github.com/pmaxhogan/driven/commit/35df9242add4276e93f5affb395bf1542f9d1284))
16+
* **core:** schedule windows (time-of-day backup gating) ([3de2cf7](https://github.com/pmaxhogan/driven/commit/3de2cf76ca4a2afa8485859ecf930ccbc6970cb2))
17+
* **core:** schedule windows (time-of-day backup gating) ([89afd39](https://github.com/pmaxhogan/driven/commit/89afd39f0ade49eff27ba8eed5a2662bf9201c54))
18+
* **landing:** on-brand driven.maxhogan.dev root page + assemble script (M12) ([0809cdc](https://github.com/pmaxhogan/driven/commit/0809cdc308b442e4dc51b210f4faa13d465cba3a))
19+
20+
21+
### Bug Fixes
22+
23+
* **capstone:** post-GA hardening - recovery-repair, OAuth cred validation, restore fail-closed ([4236724](https://github.com/pmaxhogan/driven/commit/4236724eef3685d4346ce8cb3d02c30d18f999fd))
24+
* **ci:** do not cancel push-to-main coverage baseline runs ([#15](https://github.com/pmaxhogan/driven/issues/15)) ([6e26a5d](https://github.com/pmaxhogan/driven/commit/6e26a5dd05b1f9d222468061853e18e653225e7a))
25+
* **ui:** keep vitest coverage config out of vite.config.ts ([e3a353e](https://github.com/pmaxhogan/driven/commit/e3a353e1c62e30bc6cd74f5b8a1ef718c19c6b5d))
26+
827
## [0.1.0](https://github.com/pmaxhogan/driven/releases/tag/v0.1.0) (2026-06-25)
928

1029
Initial general-availability release of Driven, a one-way encrypted backup

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ exclude = [
2020
]
2121

2222
[workspace.package]
23-
version = "0.1.0"
23+
version = "0.2.0"
2424
edition = "2021"
2525
rust-version = "1.85"
2626
authors = ["Driven contributors"]

src-tauri/tauri.conf.json

Lines changed: 20 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"$schema": "https://schema.tauri.app/config/2",
33
"productName": "Driven",
4-
"version": "0.1.0",
4+
"version": "0.2.0",
55
"identifier": "app.driven",
66
"build": {
77
"frontendDist": "../ui/dist",
@@ -34,7 +34,9 @@
3434
"plugins": {
3535
"deep-link": {
3636
"desktop": {
37-
"schemes": ["driven"]
37+
"schemes": [
38+
"driven"
39+
]
3840
}
3941
},
4042
"updater": {
@@ -49,7 +51,14 @@
4951
"bundle": {
5052
"active": true,
5153
"createUpdaterArtifacts": true,
52-
"targets": ["app", "dmg", "msi", "nsis", "deb", "appimage"],
54+
"targets": [
55+
"app",
56+
"dmg",
57+
"msi",
58+
"nsis",
59+
"deb",
60+
"appimage"
61+
],
5362
"icon": [
5463
"icons/32x32.png",
5564
"icons/128x128.png",
@@ -61,7 +70,13 @@
6170
"shortDescription": "One-way backup to Google Drive",
6271
"longDescription": "Driven backs up local folders to Google Drive, one way, fast, with encryption, scheduling, and battery awareness.",
6372
"publisher": "Driven",
64-
"macOS": { "minimumSystemVersion": "11.0" },
65-
"windows": { "wix": { "language": "en-US" } }
73+
"macOS": {
74+
"minimumSystemVersion": "11.0"
75+
},
76+
"windows": {
77+
"wix": {
78+
"language": "en-US"
79+
}
80+
}
6681
}
6782
}

ui/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "driven-ui",
33
"private": true,
4-
"version": "0.1.0",
4+
"version": "0.2.0",
55
"type": "module",
66
"scripts": {
77
"dev": "vite",

0 commit comments

Comments
 (0)