Skip to content

Commit a5dd39d

Browse files
committed
0.9.21
1 parent efabf6e commit a5dd39d

6 files changed

Lines changed: 24 additions & 5 deletions

File tree

CHANGELOG.md

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,22 @@
1+
## [0.9.21](https://github.com/debba/tabularis/compare/v0.9.20...v0.9.21) (2026-04-22)
2+
3+
4+
### Bug Fixes
5+
6+
* **ci:** correct release packaging to zip staging contents ([8f2849d](https://github.com/debba/tabularis/commit/8f2849da5310e86bcd9cffd03fe4ee43644009f3))
7+
8+
9+
### Features
10+
11+
* **create-tabularis-plugin:** add plugin scaffolder package with CLI, ([2cdff1b](https://github.com/debba/tabularis/commit/2cdff1b7bed72ebf4a1b2d1bf6c2708fa6c7a885))
12+
* **plugin-api:** add @tabularis/plugin-api package ([e3b228b](https://github.com/debba/tabularis/commit/e3b228b43b50c69c1d10d854636b4ffe8fe9d096))
13+
* **plugin-api:** add defineSlot helper and remove google sheets plugin ([28e9758](https://github.com/debba/tabularis/commit/28e9758f2affc88f8d94671a10476640e0a82403))
14+
* **plugins:** add google-sheets plugin to registry ([e81a68b](https://github.com/debba/tabularis/commit/e81a68b3c96cb837cb1cf05b06869b307e1cb071))
15+
* **plugins:** add google-sheets plugin to registry ([0ec0d7b](https://github.com/debba/tabularis/commit/0ec0d7b93649112db1d332f336524b483509677a))
16+
* **plugins:** add plugin center UI, search/filter, and cleanup on ([67a41ad](https://github.com/debba/tabularis/commit/67a41ad20fa3b8c925249093502f61a3d72a0dc5))
17+
* **rust-driver:** add optional UI build and cross-platform dev-install ([278b2f4](https://github.com/debba/tabularis/commit/278b2f40048d34758ceb1c8e2b8168831639f1b4))
18+
* **settings:** persist and respect activeExternalDrivers in settings UI ([efabf6e](https://github.com/debba/tabularis/commit/efabf6e997f74445f9408c9e6b5c4b3f2ff08bb8))
19+
120
## [0.9.20](https://github.com/debba/tabularis/compare/v0.9.19...v0.9.20) (2026-04-21)
221

322

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.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)
47+
[![Windows](https://img.shields.io/badge/Windows-Download-blue?logo=windows)](https://github.com/TabularisDB/tabularis/releases/download/v0.9.21/tabularis_0.9.21_x64-setup.exe) [![macOS](https://img.shields.io/badge/macOS-Download-black?logo=apple)](https://github.com/TabularisDB/tabularis/releases/download/v0.9.21/tabularis_0.9.21_x64.dmg) [![Linux AppImage](https://img.shields.io/badge/Linux-AppImage-green?logo=linux)](https://github.com/TabularisDB/tabularis/releases/download/v0.9.21/tabularis_0.9.21_amd64.AppImage) [![Linux .deb](https://img.shields.io/badge/Linux-.deb-orange?logo=debian)](https://github.com/TabularisDB/tabularis/releases/download/v0.9.21/tabularis_0.9.21_amd64.deb) [![Linux .rpm](https://img.shields.io/badge/Linux-.rpm-red?logo=redhat)](https://github.com/TabularisDB/tabularis/releases/download/v0.9.21/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.20",
4+
"version": "0.9.21",
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.20"
3+
version = "0.9.21"
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.20",
4+
"version": "0.9.21",
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.20";
1+
export const APP_VERSION = "0.9.21";

0 commit comments

Comments
 (0)