From 4adbc575c292a146d779e4e1221ebf613a125f55 Mon Sep 17 00:00:00 2001 From: Fabio Di Stasio Date: Fri, 14 Feb 2025 20:33:55 +0100 Subject: [PATCH 1/2] chore(release): 0.7.34 --- CHANGELOG.md | 7 +++++++ package-lock.json | 4 ++-- package.json | 2 +- 3 files changed, 10 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index e9b059c1..50e27895 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,13 @@ All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines. +### [0.7.34](https://github.com/antares-sql/antares/compare/v0.7.33...v0.7.34) (2025-02-14) + + +### Bug Fixes + +* issue with some SSH connections, definitely ([eb706c3](https://github.com/antares-sql/antares/commit/eb706c3e51e9cb7577febd291a33594c0650a34a)) + ### [0.7.33](https://github.com/antares-sql/antares/compare/v0.7.32...v0.7.33) (2025-02-14) diff --git a/package-lock.json b/package-lock.json index dec33e73..3ec04b19 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "antares", - "version": "0.7.33", + "version": "0.7.34", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "antares", - "version": "0.7.33", + "version": "0.7.34", "hasInstallScript": true, "license": "MIT", "dependencies": { diff --git a/package.json b/package.json index 9f583a27..12de9d26 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "antares", "productName": "Antares", - "version": "0.7.33", + "version": "0.7.34", "description": "A modern, fast and productivity driven SQL client with a focus in UX.", "license": "MIT", "repository": "https://github.com/antares-sql/antares.git", From 8eb4d2e1141caa6c32b27b69e912233cbca573c8 Mon Sep 17 00:00:00 2001 From: Fabio Di Stasio Date: Mon, 31 Mar 2025 11:00:01 +0200 Subject: [PATCH 2/2] chore: update GitHub Actions runner to Ubuntu 22.04 --- .github/workflows/create-artifact-linux.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/create-artifact-linux.yml b/.github/workflows/create-artifact-linux.yml index ea9bc810..71e36fc4 100644 --- a/.github/workflows/create-artifact-linux.yml +++ b/.github/workflows/create-artifact-linux.yml @@ -5,7 +5,7 @@ on: jobs: build: - runs-on: ubuntu-latest + runs-on: ubuntu-22.04 steps: - name: Check out Git repository uses: actions/checkout@v4