Skip to content

Commit aa35dad

Browse files
authored
Fix update (#60)
1 parent 69c6886 commit aa35dad

8 files changed

Lines changed: 16 additions & 6 deletions

File tree

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@ npm-debug.log*
2424

2525
# Tauri
2626
src-tauri/target/
27+
.tauri_signing_key
2728

2829
# Coverage
2930
coverage/

.tauri_signing_key.pub

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
dW50cnVzdGVkIGNvbW1lbnQ6IG1pbmlzaWduIHB1YmxpYyBrZXk6IDVCMERFQUJCNTkwNEREMUYKUldRZjNRUlp1K29OVzh5aVBZV28zR01Ea2pzWWxvZGRwVFdWdnM5VTJvTmVMS3B4ZHVETVlzcHgK

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,14 @@
22

33
All notable changes to dbfordevs are documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/), and this project adheres to [Semantic Versioning](https://semver.org/).
44

5+
## [0.3.8] - 2026-01-17
6+
7+
8+
### Added
9+
- **feat**: implement connection grouping and tagging functionality (#59)
10+
11+
### Fixed
12+
- **fix**: update signing key for auto-updater
513
## [0.3.7] - 2026-01-17
614

715

Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ members = [
55
]
66

77
[workspace.package]
8-
version = "0.3.7"
8+
version = "0.3.8"
99
edition = "2021"
1010
authors = ["Daniels"]
1111
license = "MIT"

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "dbfordevs",
33
"private": true,
4-
"version": "0.3.7",
4+
"version": "0.3.8",
55
"license": "MIT",
66
"type": "module",
77
"scripts": {

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 = "dbfordevs"
3-
version = "0.3.7"
3+
version = "0.3.8"
44
description = "A modern cross-platform database management application for developers"
55
authors = ["Daniels"]
66
license = "MIT"

src-tauri/tauri.conf.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"$schema": "https://schema.tauri.app/config/2",
33
"productName": "dbfordevs",
4-
"version": "0.3.7",
4+
"version": "0.3.8",
55
"identifier": "com.dbfordevs.app",
66
"build": {
77
"beforeDevCommand": "bun run dev",
@@ -14,7 +14,7 @@
1414
"endpoints": [
1515
"https://github.com/danielss-dev/dbfordevs/releases/latest/download/latest.json"
1616
],
17-
"pubkey": "dW50cnVzdGVkIGNvbW1lbnQ6IG1pbmlzaWduIHB1YmxpYyBrZXk6IEM1QkQwQTcxNDhERDNCQzEKUldUQk85MUljUXE5eGFzMCsxYlhGeWpjb244eFdrVlV0Z01jY3djNnBaNUZnR2d1RjlRMUw3TEgK",
17+
"pubkey": "dW50cnVzdGVkIGNvbW1lbnQ6IG1pbmlzaWduIHB1YmxpYyBrZXk6IDVCMERFQUJCNTkwNEREMUYKUldRZjNRUlp1K29OVzh5aVBZV28zR01Ea2pzWWxvZGRwVFdWdnM5VTJvTmVMS3B4ZHVETVlzcHgK",
1818
"windows": {
1919
"installMode": "passive"
2020
}

0 commit comments

Comments
 (0)