From 267e412663c952e35556333a499580fa292c6602 Mon Sep 17 00:00:00 2001 From: Miguel Jacq Date: Thu, 6 Nov 2025 15:54:18 +1100 Subject: [PATCH] Bugfix --- CHANGELOG.md | 4 ++++ bouquin/main_window.py | 1 - pyproject.toml | 2 +- 3 files changed, 5 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 55af76b..81f4a05 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,7 @@ +# 0.1.10.1 + + * Small bugfix for a debug message left in + # 0.1.10 * Improve search results window and highlight in calendar when there are matches. diff --git a/bouquin/main_window.py b/bouquin/main_window.py index 9243177..04c0690 100644 --- a/bouquin/main_window.py +++ b/bouquin/main_window.py @@ -487,7 +487,6 @@ class MainWindow(QMainWindow): self._dirty = True self._save_date(date_iso, True) - print("end") except Exception as e: QMessageBox.critical(self, "Read Error", str(e)) return diff --git a/pyproject.toml b/pyproject.toml index 301b86d..8bf0770 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "bouquin" -version = "0.1.10" +version = "0.1.10.1" description = "Bouquin is a simple, opinionated notebook application written in Python, PyQt and SQLCipher." authors = ["Miguel Jacq "] readme = "README.md"