Skip to content

Commit bdf09db

Browse files
committed
0.9.20
1 parent 93927d2 commit bdf09db

6 files changed

Lines changed: 21 additions & 5 deletions

File tree

CHANGELOG.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,19 @@
1+
## [0.9.20](https://github.com/debba/tabularis/compare/v0.9.19...v0.9.20) (2026-04-21)
2+
3+
4+
### Bug Fixes
5+
6+
* **react:** correct hook deps and tooltip wrapper for low confidence ([eb26a63](https://github.com/debba/tabularis/commit/eb26a6306a1c6321db1a297991559bbe71e74d6d))
7+
8+
9+
### Features
10+
11+
* add demo videos ([8610ead](https://github.com/debba/tabularis/commit/8610eadf2ed520880f057eaedf29701dd2ffeb44))
12+
* **clipboard-import:** add clipboard data import flow ([f10e332](https://github.com/debba/tabularis/commit/f10e33219eea98e6d51c3ced256f51dff820e306))
13+
* **compare:** add comparison builder, tables, and assets ([7afffb7](https://github.com/debba/tabularis/commit/7afffb741dfe68de73d1ea4fedcbd8bf1b76e726))
14+
* **visual-explain:** add Visual Explain page and import support ([b75dc3c](https://github.com/debba/tabularis/commit/b75dc3c9dd273fb3de9c09461adee297927aab59))
15+
* **website:** switch logos to PNG and update compare styles ([6d6c2ad](https://github.com/debba/tabularis/commit/6d6c2ad68b42a008fbe08238ab6e623a329f1bae))
16+
117
## [0.9.19](https://github.com/TabularisDB/tabularis/compare/v0.9.18...v0.9.19) (2026-04-16)
218

319

README.md

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

47-
[![Windows](https://img.shields.io/badge/Windows-Download-blue?logo=windows)](https://github.com/TabularisDB/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/TabularisDB/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/TabularisDB/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/TabularisDB/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/TabularisDB/tabularis/releases/download/v0.9.19/tabularis-0.9.7-1.x86_64.rpm)
47+
[![Windows](https://img.shields.io/badge/Windows-Download-blue?logo=windows)](https://github.com/TabularisDB/tabularis/releases/download/v0.9.20/tabularis_0.9.20_x64-setup.exe) [![macOS](https://img.shields.io/badge/macOS-Download-black?logo=apple)](https://github.com/TabularisDB/tabularis/releases/download/v0.9.20/tabularis_0.9.20_x64.dmg) [![Linux AppImage](https://img.shields.io/badge/Linux-AppImage-green?logo=linux)](https://github.com/TabularisDB/tabularis/releases/download/v0.9.20/tabularis_0.9.20_amd64.AppImage) [![Linux .deb](https://img.shields.io/badge/Linux-.deb-orange?logo=debian)](https://github.com/TabularisDB/tabularis/releases/download/v0.9.20/tabularis_0.9.20_amd64.deb) [![Linux .rpm](https://img.shields.io/badge/Linux-.rpm-red?logo=redhat)](https://github.com/TabularisDB/tabularis/releases/download/v0.9.20/tabularis-0.9.7-1.x86_64.rpm)
4848

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

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.19",
4+
"version": "0.9.20",
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.19"
3+
version = "0.9.20"
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.19",
4+
"version": "0.9.20",
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.19";
1+
export const APP_VERSION = "0.9.20";

0 commit comments

Comments
 (0)