Skip to content

Commit a4d247b

Browse files
committed
0.9.19
1 parent e77e6bf commit a4d247b

7 files changed

Lines changed: 18 additions & 6 deletions

File tree

CHANGELOG.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,15 @@
1+
## [0.9.19](https://github.com/debba/tabularis/compare/v0.9.18...v0.9.19) (2026-04-16)
2+
3+
4+
### Features
5+
6+
* **connections:** backfill database on single to multi-db transition ([bbaf3d9](https://github.com/debba/tabularis/commit/bbaf3d98b054467fa0a69b1e68585cca93a28d0c))
7+
* **explorer-sidebar:** add single-click selection highlighting for ([4502e04](https://github.com/debba/tabularis/commit/4502e045c21eb4d43977fb945a9a448e0807b03f))
8+
* **i18n:** add fr and de locales, language helper and READMEs ([c5fab4a](https://github.com/debba/tabularis/commit/c5fab4aa9b04beeb4c540a445443086e9ac9f5b9))
9+
* **query-history:** include database in query history and re-run ([7144184](https://github.com/debba/tabularis/commit/7144184a6bf32c18f1331a5ed9619d7880337b0a))
10+
* **saved-queries:** persist and show database for saved queries ([36eb69c](https://github.com/debba/tabularis/commit/36eb69c536c2f1ffb08be6dffaf4e328b3079a9e))
11+
* **sidebar:** add SQL preview highlighting and grouped favorites in ([90ae3aa](https://github.com/debba/tabularis/commit/90ae3aa26a8f2e7afc45bab289e0d745b0ab90e2))
12+
113
## [0.9.18](https://github.com/debba/tabularis/compare/v0.9.17...v0.9.18) (2026-04-16)
214

315

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ An open-source desktop client for modern databases. Supports PostgreSQL, MySQL/M
4545
4646
## Release Download:
4747

48-
[![Windows](https://img.shields.io/badge/Windows-Download-blue?logo=windows)](https://github.com/debba/tabularis/releases/download/v0.9.18/tabularis_0.9.18_x64-setup.exe) [![macOS](https://img.shields.io/badge/macOS-Download-black?logo=apple)](https://github.com/debba/tabularis/releases/download/v0.9.18/tabularis_0.9.18_x64.dmg) [![Linux AppImage](https://img.shields.io/badge/Linux-AppImage-green?logo=linux)](https://github.com/debba/tabularis/releases/download/v0.9.18/tabularis_0.9.18_amd64.AppImage) [![Linux .deb](https://img.shields.io/badge/Linux-.deb-orange?logo=debian)](https://github.com/debba/tabularis/releases/download/v0.9.18/tabularis_0.9.18_amd64.deb) [![Linux .rpm](https://img.shields.io/badge/Linux-.rpm-red?logo=redhat)](https://github.com/debba/tabularis/releases/download/v0.9.18/tabularis-0.9.7-1.x86_64.rpm)
48+
[![Windows](https://img.shields.io/badge/Windows-Download-blue?logo=windows)](https://github.com/debba/tabularis/releases/download/v0.9.19/tabularis_0.9.19_x64-setup.exe) [![macOS](https://img.shields.io/badge/macOS-Download-black?logo=apple)](https://github.com/debba/tabularis/releases/download/v0.9.19/tabularis_0.9.19_x64.dmg) [![Linux AppImage](https://img.shields.io/badge/Linux-AppImage-green?logo=linux)](https://github.com/debba/tabularis/releases/download/v0.9.19/tabularis_0.9.19_amd64.AppImage) [![Linux .deb](https://img.shields.io/badge/Linux-.deb-orange?logo=debian)](https://github.com/debba/tabularis/releases/download/v0.9.19/tabularis_0.9.19_amd64.deb) [![Linux .rpm](https://img.shields.io/badge/Linux-.rpm-red?logo=redhat)](https://github.com/debba/tabularis/releases/download/v0.9.19/tabularis-0.9.7-1.x86_64.rpm)
4949

5050
<!-- SPONSORS:START -->
5151

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "tabularis",
33
"private": true,
4-
"version": "0.9.18",
4+
"version": "0.9.19",
55
"type": "module",
66
"links": {
77
"discord": "https://discord.gg/YrZPHAwMSG",

src-tauri/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "tabularis"
3-
version = "0.9.18"
3+
version = "0.9.19"
44
description = "tabularis - A database manager for developers"
55
authors = ["Debba"]
66
edition = "2021"

src-tauri/tauri.conf.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"$schema": "../node_modules/@tauri-apps/cli/config.schema.json",
33
"productName": "tabularis",
4-
"version": "0.9.18",
4+
"version": "0.9.19",
55
"identifier": "tabularis",
66
"build": {
77
"frontendDist": "../dist",

src/version.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
export const APP_VERSION = "0.9.18";
1+
export const APP_VERSION = "0.9.19";

website/src/lib/version.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,4 @@
55
* This file is auto-generated by scripts/sync-version.js
66
* To update, run: pnpm version <new-version> && pnpm sync-version
77
*/
8-
export const APP_VERSION = "0.9.18";
8+
export const APP_VERSION = "0.9.19";

0 commit comments

Comments
 (0)