Skip to content

Commit baeb12a

Browse files
chore(release): bump version to v0.17.0
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
1 parent d0c2674 commit baeb12a

File tree

9 files changed

+10
-10
lines changed

9 files changed

+10
-10
lines changed

.claude/rules/ai-workflow.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ Additionally for the AI:
6464
## Current state
6565

6666
See architecture.md for architectural details. Additionally note:
67-
- Version: 0.16.0 (audiobook incremental persistence, four-mode regen dialog, WebSocket live updates, dependency currency sweep).
67+
- Version: 0.17.0 (one-click launcher install/uninstall across Windows/macOS/Linux, auto-update check with opt-out, cleanup retry, activity log, manuscripta 0.9.0 + Pillow 12).
6868
- Tests: see `docs/audits/current-coverage.md` for current counts. `make test` covers backend+plugins+Vitest, E2E is separate.
6969
- 26 ChapterTypes (3 marketing types in audiobook-export skip list by default).
7070
- 15 official TipTap extensions + 1 community (@pentestpad/tiptap-extension-figure).

CLAUDE.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
Open-source book authoring platform. Built on PluginForge (PyPI), a reusable plugin framework based on pluggy. Offline-capable, i18n-ready, local-first. All plugins are free during the current development phase (see docs/explorations/monetization.md for future strategy).
44

55
- **Repository:** https://github.com/astrapi69/bibliogon
6-
- **Version:** 0.16.0 (audiobook incremental persistence, four-mode regen dialog, WebSocket live updates, dependency currency sweep)
6+
- **Version:** 0.17.0 (one-click launcher install/uninstall across Windows/macOS/Linux, auto-update check with opt-out, cleanup retry, activity log, manuscripta 0.9.0 + Pillow 12)
77
- **Concept:** docs/CONCEPT.md
88
- **API reference:** FastAPI OpenAPI under `/docs` and `/openapi.json` (source of truth). docs/API.md is a high-level overview.
99
- **History:** docs/CHANGELOG.md (completed phases), docs/ROADMAP.md (open items)

backend/app/main.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -157,7 +157,7 @@ async def lifespan(app: FastAPI):
157157
app = FastAPI(
158158
title="Bibliogon",
159159
description="Open-source book authoring platform.",
160-
version="0.16.0",
160+
version="0.17.0",
161161
lifespan=lifespan,
162162
docs_url="/api/docs" if DEBUG else None,
163163
redoc_url="/api/redoc" if DEBUG else None,

backend/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "bibliogon"
3-
version = "0.16.0"
3+
version = "0.17.0"
44
description = "Open-source book authoring platform with WYSIWYG and Markdown editing, EPUB/PDF export via Pandoc."
55
authors = ["Asterios Raptis"]
66
license = "MIT"

docs/ROADMAP.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
Current phase: Phase 2 - build for real users, not just developers
44
Last updated: 2026-04-17
5-
Latest release: v0.16.0 (audiobook incremental persistence, four-mode regen dialog, WebSocket live updates, dependency currency sweep)
5+
Latest release: v0.17.0 (one-click launcher install/uninstall across Windows/macOS/Linux, auto-update check with opt-out, cleanup retry, activity log, manuscripta 0.9.0 + Pillow 12)
66

77
Phase 1 (feature-complete single-user tool, v0.1.0 through v0.14.0) is archived at [docs/roadmap-archive/phase-1-complete.md](roadmap-archive/phase-1-complete.md). The archive includes a postscript (2026-04-15) about the silent-image-drop bug discovered after archival.
88

frontend/package-lock.json

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

frontend/package.json

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

install.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ set -e
1212
# chmod +x install.sh && ./install.sh
1313
# ============================================================
1414

15-
VERSION="${BIBLIOGON_VERSION:-v0.16.0}"
15+
VERSION="${BIBLIOGON_VERSION:-v0.17.0}"
1616
REPO="astrapi69/bibliogon"
1717
INSTALL_DIR="${BIBLIOGON_DIR:-$HOME/bibliogon}"
1818

launcher/bibliogon_launcher/installer.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131

3232
# The Bibliogon version this launcher was built for. Updated during
3333
# the release workflow (Step 4) alongside the other version strings.
34-
COMPATIBLE_VERSION = "0.16.0"
34+
COMPATIBLE_VERSION = "0.17.0"
3535

3636

3737
def release_zip_url(version: str | None = None) -> str:

0 commit comments

Comments
 (0)