From ed75fb54d6289a118975dbafda757d9d96664b2e Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 23 Jul 2024 15:50:19 +0000 Subject: [PATCH] v1.23.1 (#608) * Bumps version to 1.23.1 * chore: update changelog --------- Co-authored-by: tconbeer --- CHANGELOG.md | 9 ++++++++- pyproject.toml | 2 +- tests/functional_tests/test_app.py | 2 +- 3 files changed, 10 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 76ab3dc0..c74c96fc 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,12 @@ All notable changes to this project will be documented in this file. ## [Unreleased] +## [1.23.1] - 2024-07-23 + +### Bug Fixes + +- Harlequin no longer crashes when attempting to display negative datetime values ([#568](https://github.com/tconbeer/harlequin/issues/568)). + ## [1.23.0] - 2024-07-11 ### Features @@ -686,7 +692,8 @@ All notable changes to this project will be documented in this file. - Use the DuckDB CLI. -[unreleased]: https://github.com/tconbeer/harlequin/compare/1.23.0...HEAD +[unreleased]: https://github.com/tconbeer/harlequin/compare/1.23.1...HEAD +[1.23.1]: https://github.com/tconbeer/harlequin/compare/1.23.0...1.23.1 [1.23.0]: https://github.com/tconbeer/harlequin/compare/1.22.2...1.23.0 [1.22.2]: https://github.com/tconbeer/harlequin/compare/1.22.1...1.22.2 [1.22.1]: https://github.com/tconbeer/harlequin/compare/1.22.0...1.22.1 diff --git a/pyproject.toml b/pyproject.toml index b90c690c..ba26bf6c 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "harlequin" -version = "1.23.0" +version = "1.23.1" description = "The SQL IDE for Your Terminal." authors = ["Ted Conbeer "] license = "MIT" diff --git a/tests/functional_tests/test_app.py b/tests/functional_tests/test_app.py index b1898a7a..5f7d2595 100644 --- a/tests/functional_tests/test_app.py +++ b/tests/functional_tests/test_app.py @@ -131,7 +131,7 @@ async def test_queries_do_not_crash_all_adapters( "SELECT ['duck', 'goose', NULL, 'heron'];", # list "SELECT [['duck', 'goose', 'heron'], NULL, ['frog', 'toad'], []];", # list "set timezone = 'America/New_York'; select '2024-01-01'::timestamptz;", - "select '1-1-1T00:00:00Z'::timestamptz", + "set timezone = 'America/New_York'; select '1-1-1T00:00:00Z'::timestamptz", ], ) async def test_queries_do_not_crash(