Skip to content

Commit

Permalink
v1.23.1 (#608)
Browse files Browse the repository at this point in the history
* Bumps version to 1.23.1

* chore: update changelog

---------

Co-authored-by: tconbeer <[email protected]>
  • Loading branch information
github-actions[bot] and tconbeer authored Jul 23, 2024
1 parent 66cc308 commit ed75fb5
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 3 deletions.
9 changes: 8 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -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 <[email protected]>"]
license = "MIT"
Expand Down
2 changes: 1 addition & 1 deletion tests/functional_tests/test_app.py
Original file line number Diff line number Diff line change
Expand Up @@ -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(
Expand Down

0 comments on commit ed75fb5

Please sign in to comment.