Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

v2.0.0 #727

Merged
merged 5 commits into from
Jan 22, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ jobs:
uses: actions/cache@v4
with:
path: ~/.local
key: ${{ runner.os }}-poetry-171 # increment to reset cache
key: ${{ runner.os }}-poetry-184

- name: Add cached Poetry to PATH
if: steps.cached-poetry-install.outputs.cache-hit == 'true'
Expand All @@ -45,7 +45,7 @@ jobs:
if: steps.cached-poetry-install.outputs.cache-hit != 'true'
uses: snok/install-poetry@v1
with:
version: 1.7.1
version: 1.8.4

- name: Get harlequin Version
id: harlequin_version
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ jobs:
uses: actions/cache@v4
with:
path: ~/.local
key: ${{ runner.os }}-poetry-171 # increment to reset cache
key: ${{ runner.os }}-poetry-184

- name: Add cached Poetry to PATH
if: steps.cached-poetry-install.outputs.cache-hit == 'true'
Expand All @@ -44,7 +44,7 @@ jobs:
if: steps.cached-poetry-install.outputs.cache-hit != 'true'
uses: snok/install-poetry@v1
with:
version: 1.7.1
version: 1.8.4

- name: Create release branch
run: |
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/static.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ jobs:
uses: actions/cache@v4
with:
path: ~/.local
key: ${{ runner.os }}-poetry-171 # increment to reset cache
key: ${{ runner.os }}-poetry-184

- name: Add cached Poetry to PATH
if: steps.cached-poetry-install.outputs.cache-hit == 'true'
Expand All @@ -43,7 +43,7 @@ jobs:
if: steps.cached-poetry-install.outputs.cache-hit != 'true'
uses: snok/install-poetry@v1
with:
version: 1.7.1
version: 1.8.4

- name: Load cached venv
id: cached-poetry-dependencies
Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ jobs:
uses: actions/cache@v4
with:
path: ~\.local
key: ${{ runner.os }}-poetry-171
key: ${{ runner.os }}-poetry-184

- name: Add cached Poetry to PATH
if: steps.cached-poetry-install.outputs.cache-hit == 'true'
Expand All @@ -50,7 +50,7 @@ jobs:
if: steps.cached-poetry-install.outputs.cache-hit != 'true'
uses: snok/install-poetry@v1
with:
version: 1.7.1
version: 1.8.4

- name: Install python dependencies
run: |
Expand Down Expand Up @@ -99,7 +99,7 @@ jobs:
uses: actions/cache@v4
with:
path: ~/.local
key: ${{ runner.os }}-poetry-171
key: ${{ runner.os }}-poetry-184

- name: Add cached Poetry to PATH
if: steps.cached-poetry-install.outputs.cache-hit == 'true'
Expand All @@ -109,7 +109,7 @@ jobs:
if: steps.cached-poetry-install.outputs.cache-hit != 'true'
uses: snok/install-poetry@v1
with:
version: 1.7.1
version: 1.8.4

- name: Load cached venv
id: cached-poetry-dependencies
Expand Down Expand Up @@ -171,7 +171,7 @@ jobs:
uses: actions/cache@v4
with:
path: ~/.local
key: ${{ runner.os }}-poetry-171-1
key: ${{ runner.os }}-poetry-184

- name: Add cached Poetry to PATH
if: steps.cached-poetry-install.outputs.cache-hit == 'true'
Expand All @@ -181,7 +181,7 @@ jobs:
if: steps.cached-poetry-install.outputs.cache-hit != 'true'
uses: snok/install-poetry@v1
with:
version: 1.7.1
version: 1.8.4

- name: Load cached venv
id: cached-poetry-dependencies
Expand Down
13 changes: 10 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,18 @@ All notable changes to this project will be documented in this file.

## [Unreleased]

## [2.0.0] - 2025-01-07

### Breaking Changes

- Drops support for Python 3.8.
- Drops support for Pygments themes in favor of Textual themes.
- Drops support for Pygments themes in favor of Textual themes. Use `harlequin --config` to update your config files with a new theme. The default theme, `harlequin`, remains unchanged.
- Removes the `cassandra` and `nebulagraph` extras, due to package compatibility issues.

### Features
- Fuzzy matching for autocomplete ([#671](https://github.com/tconbeer/harlequin/pull/671))

- Adds fuzzy matching for autocomplete ([#671](https://github.com/tconbeer/harlequin/pull/671)).
- Adds support for Python 3.13.

## [1.25.2] - 2024-10-31

Expand Down Expand Up @@ -755,7 +761,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.25.2...HEAD
[unreleased]: https://github.com/tconbeer/harlequin/compare/2.0.0...HEAD
[2.0.0]: https://github.com/tconbeer/harlequin/compare/1.25.2...2.0.0
[1.25.2]: https://github.com/tconbeer/harlequin/compare/1.25.1...1.25.2
[1.25.1]: https://github.com/tconbeer/harlequin/compare/1.25.0...1.25.1
[1.25.0]: https://github.com/tconbeer/harlequin/compare/1.24.1...1.25.0
Expand Down
Loading
Loading