From aaca4f3ae6870a2b53de699a9f43c4c8242b4d1a Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 18 May 2023 16:36:40 -0600 Subject: [PATCH] v0.0.11 (#68) * feat: add read-only option * chore: update docs, readme * fix: improve error formatting * Bumps version to 0.0.11 * chore: add project metadata --------- Co-authored-by: Ted Conbeer --- CHANGELOG.md | 7 ++++++- pyproject.toml | 6 ++++-- 2 files changed, 10 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 9dedd36a..08631037 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,9 +4,12 @@ All notable changes to this project will be documented in this file. ## [Unreleased] +## [0.0.11] - 2023-05-18 + - adds a command-line option (`-r`, `-readonly`, or `--read-only`) for opening the database file in read-only mode. - after a query is executed and the data is loaded, the focus shifts to the data table. + ## [0.0.10] - 2023-05-17 - upgrades duckdb to v0.8.0, which includes some breaking changes around types. Harlequin can no longer support earlier versions of duckdb. @@ -65,7 +68,9 @@ All notable changes to this project will be documented in this file. - Use the DuckDB CLI. -[Unreleased]: https://github.com/tconbeer/harlequin/compare/0.0.10...HEAD +[Unreleased]: https://github.com/tconbeer/harlequin/compare/0.0.11...HEAD + +[0.0.11]: https://github.com/tconbeer/harlequin/compare/0.0.10...0.0.11 [0.0.10]: https://github.com/tconbeer/harlequin/compare/0.0.9...0.0.10 diff --git a/pyproject.toml b/pyproject.toml index d989ef07..564cdfbd 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,9 +1,11 @@ [tool.poetry] name = "harlequin" -version = "0.0.10" -description = "A Text User Interface for DuckDB" +version = "0.0.11" +description = "A terminal-based SQL IDE for DuckDB" authors = ["Ted Conbeer "] license = "MIT" +homepage = "https://harlequin.sh" +repository = "https://github.com/tconbeer/harlequin" readme = "README.md" packages = [ { include = "harlequin", from = "src" },