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"