Skip to content

Commit a413ddb

Browse files
Bumps version to 0.0.26 (#183)
Co-authored-by: tconbeer <tconbeer@users.noreply.github.com>
1 parent 9eb9467 commit a413ddb

2 files changed

Lines changed: 9 additions & 2 deletions

File tree

CHANGELOG.md

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,8 @@ All notable changes to this project will be documented in this file.
44

55
## [Unreleased]
66

7+
## [0.0.26] - 2023-08-21
8+
79
### New Features
810

911
- Harlequin supports multiple buffers (for tabbed editing). Create a new tab with <kbd>ctrl+n</kbd>, close a tab with <kbd>ctrl+w</kbd>, and switch to the next tab with <kbd>ctrl+k</kbd>. Opening, saving, and running queries are operations on the current buffer and have no effect on the other buffers.
@@ -17,6 +19,7 @@ All notable changes to this project will be documented in this file.
1719
- <kbd>ctrl+e</kbd> exports the data from the current (visible) data table.
1820

1921
### Bug Fixes
22+
2023
- Fixes issues with the loading state when loading large result sets.
2124

2225
## [0.0.24] - 2023-08-04
@@ -37,13 +40,15 @@ All notable changes to this project will be documented in this file.
3740
## [0.0.23] - 2023-08-03
3841

3942
### Features
43+
4044
- Changes the behavior of the "Run Query" button and <kbd>ctrl+enter</kbd>:
4145
- If text is selected, and that text does not contain parsing errors, the "Run Query" button will show "Run Selection", and <kbd>ctrl+enter</kbd> will run the selected text. If multiple queries are selected (separated by semicolons), they will all be run; if multiple `select` statements are selected, only data from the first selected `select` statement will be loaded into the Results Viewer (or exported).
4246
- If no text is selected, Harlequin will run the single query where the cursor is active. Other queries before and after semicolons will not be run.
4347
- To "Run All", first select all text with <kbd>ctrl+a</kbd>, and then run selection with <kbd>ctrl+enter</kbd>
4448
- Adds path autocomplete and validation to the file save/open and export data inputs.
4549

4650
### Other Changes
51+
4752
- Lowers the maximum number of records loaded into the results viewer to 10,000. (All records can be exported with <kbd>ctrl+e</kbd>)
4853

4954
## [0.0.22] - 2023-08-02
@@ -214,7 +219,9 @@ All notable changes to this project will be documented in this file.
214219
215220
- Use the DuckDB CLI.
216221
217-
[Unreleased]: https://github.com/tconbeer/harlequin/compare/0.0.25...HEAD
222+
[Unreleased]: https://github.com/tconbeer/harlequin/compare/0.0.26...HEAD
223+
224+
[0.0.26]: https://github.com/tconbeer/harlequin/compare/0.0.25...0.0.26
218225
219226
[0.0.25]: https://github.com/tconbeer/harlequin/compare/0.0.24...0.0.25
220227

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "harlequin"
3-
version = "0.0.25"
3+
version = "0.0.26"
44
description = "A terminal-based SQL IDE for DuckDB"
55
authors = ["Ted Conbeer <tconbeer@users.noreply.github.com>"]
66
license = "MIT"

0 commit comments

Comments
 (0)