release: cut v1.1.0 — event delete (write foundation)

Version bumped to 1.1.0 / 8. No code changes beyond the version — 1.1.0 is
the write-foundation slice: WRITE_CALENDAR, read-only-calendar detection,
and event delete (whole series or single occurrence). CHANGELOG [1.1.0]
carries the details; ROADMAP/STATE mark slice v1.1 shipped.

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
This commit is contained in:
2026-06-11 12:55:56 +02:00
parent 9529f19c60
commit 4c5ef5f39c
4 changed files with 11 additions and 9 deletions

View File

@@ -61,7 +61,7 @@ guide here, not a contract — scope per slice is decided as we go.
| Version | Milestone | Status |
|---|---|---|
| v1.1 | Write foundation — `WRITE_CALENDAR`, read-only-calendar detection, delete (series + single occurrence) | in progress |
| v1.1 | Write foundation — `WRITE_CALENDAR`, read-only-calendar detection, delete (series + single occurrence) | complete (shipped 2026-06-11) |
| v1.2 | Create event — form, FAB, default-calendar pref | planned |
| v1.3 | Edit event — shared form, series edit, reminders, simple recurrence picker | planned |
| v2.0 | Quick-add, occurrence edit, conflict dialog, polish, release | planned |

View File

@@ -5,9 +5,9 @@
## Status
**Milestone:** v2.0 — Write support (milestone 2, in progress)
**Phase:** v1.0.0 shipped 2026-06-11. Milestone 2 is planned in four slices
(`docs/superpowers/plans/2026-06-11-03-write-support.md`); slice v1.1
(write foundation + delete) is implemented and awaiting release.
**Phase:** v1.1.0 shipped 2026-06-11 (write foundation + delete). Milestone 2
runs in four slices (`docs/superpowers/plans/2026-06-11-03-write-support.md`);
next up is v1.2 (create event).
## Progress
@@ -37,6 +37,5 @@
## Next
1. Cut v1.1 release (changelog entry is staged under [Unreleased])
2. v1.2 — create event: form screen, FAB, default-calendar pref, `insertEvent`
3. v1.0.0 — keep monitoring the F-Droid build/publish
1. v1.2 — create event: form screen, FAB, default-calendar pref, `insertEvent`
2. Monitor the F-Droid build/publish for v1.1.0

View File

@@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
## [Unreleased]
## [1.1.0] — 2026-06-11
### Added
- Write foundation (milestone 2, slice 1): Calendula can now **delete events**.
- Delete action on the event detail screen, with a confirmation dialog;
@@ -24,6 +26,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
the device (still no internet permission, still zero telemetry)
- The placeholder Edit button on the detail screen (a no-op since v0.4) is
removed until editing ships in a later slice
- `versionName`/`versionCode` bumped to 1.1.0 / 8
## [1.0.0] — 2026-06-11

View File

@@ -23,8 +23,8 @@ android {
applicationId = "de.jeanlucmakiola.calendula"
minSdk = 29
targetSdk = 36
versionCode = 7
versionName = "1.0.0"
versionCode = 8
versionName = "1.1.0"
testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
}