Skip to content

Commit 4c2f5bc

Browse files
committed
0.9.3
1 parent f766141 commit 4c2f5bc

7 files changed

Lines changed: 25 additions & 6 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.3](https://github.com/debba/tabularis/compare/v0.9.2...v0.9.3) (2026-03-01)
2+
3+
4+
### Bug Fixes
5+
6+
* open graph image ([12696a0](https://github.com/debba/tabularis/commit/12696a0db8ce00f227b2bc02b38d701601d69f2e))
7+
* **plugins:** resolve plugin executable lookup on Windows ([f766141](https://github.com/debba/tabularis/commit/f766141a48673d2bb816d7d462232e929b4ba5bd))
8+
9+
10+
### Features
11+
12+
* **settings:** add downgrade flow and translations for older versions ([77ebbb3](https://github.com/debba/tabularis/commit/77ebbb3ee5b856f1b0d73030484e6a5ed753790d))
13+
* **site-header:** smooth scroll to top when clicking logo on home ([a83b765](https://github.com/debba/tabularis/commit/a83b76555967677f63812229e24200b6e259cf0d))
14+
* website - create latests-post.json ([081c7e5](https://github.com/debba/tabularis/commit/081c7e5a47349d2672cdead08504288f6b290616))
15+
* **website:** add blog post for plugins evolved and plugin card ([d12b24f](https://github.com/debba/tabularis/commit/d12b24fd2fdca282dda449f843758860271f1ed4))
16+
* **website:** add install links and update installation docs ([ee0c597](https://github.com/debba/tabularis/commit/ee0c597eebf37325927bb76b831947bed6a6c19a))
17+
18+
19+
120
## [0.9.2](https://github.com/debba/tabularis/compare/v0.9.1...v0.9.2) (2026-02-26)
221

322

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ A lightweight, developer-focused database management tool, built with Tauri and
3232

3333
## Release Download:
3434

35-
[![Windows](https://img.shields.io/badge/Windows-Download-blue?logo=windows)](https://github.com/debba/tabularis/releases/download/v0.9.2/tabularis_0.9.2_x64-setup.exe) [![macOS](https://img.shields.io/badge/macOS-Download-black?logo=apple)](https://github.com/debba/tabularis/releases/download/v0.9.2/tabularis_0.9.2_x64.dmg) [![Linux](https://img.shields.io/badge/Linux-Download-green?logo=linux)](https://github.com/debba/tabularis/releases/download/v0.9.2/tabularis_0.9.2_amd64.AppImage)
35+
[![Windows](https://img.shields.io/badge/Windows-Download-blue?logo=windows)](https://github.com/debba/tabularis/releases/download/v0.9.3/tabularis_0.9.3_x64-setup.exe) [![macOS](https://img.shields.io/badge/macOS-Download-black?logo=apple)](https://github.com/debba/tabularis/releases/download/v0.9.3/tabularis_0.9.3_x64.dmg) [![Linux](https://img.shields.io/badge/Linux-Download-green?logo=linux)](https://github.com/debba/tabularis/releases/download/v0.9.3/tabularis_0.9.3_amd64.AppImage)
3636

3737
## Table of Contents
3838

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

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.2";
8+
export const APP_VERSION = "0.9.3";

0 commit comments

Comments
 (0)