Skip to content

Commit fcd174f

Browse files
committed
Release v0.6.0
1 parent a3ac4ed commit fcd174f

3 files changed

Lines changed: 11 additions & 6 deletions

File tree

CHANGELOG.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [0.6.0] - 2026-02-22
11+
1012
### Added
1113
- Inline AI suggestions (ghost text) in the SQL editor — auto-triggers on typing pause, Tab to accept, Escape to dismiss
1214
- Schema-aware inline suggestions — AI now uses actual table/column names from the connected database (cached with 30s TTL, respects `includeSchema` and `maxSchemaTables` settings)
@@ -292,7 +294,8 @@ TablePro is a native macOS database client built with SwiftUI and AppKit, design
292294
- Custom SQL query templates
293295
- Performance optimized for large datasets
294296

295-
[Unreleased]: https://github.com/datlechin/tablepro/compare/v0.5.0...HEAD
297+
[Unreleased]: https://github.com/datlechin/tablepro/compare/v0.6.0...HEAD
298+
[0.6.0]: https://github.com/datlechin/tablepro/compare/v0.5.0...v0.6.0
296299
[0.5.0]: https://github.com/datlechin/tablepro/compare/v0.4.0...v0.5.0
297300
[0.4.0]: https://github.com/datlechin/tablepro/compare/v0.3.2...v0.4.0
298301
[0.3.2]: https://github.com/datlechin/tablepro/compare/v0.3.1...v0.3.2

TablePro.xcodeproj/project.pbxproj

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -381,7 +381,7 @@
381381
CODE_SIGN_IDENTITY = "Apple Development";
382382
"CODE_SIGN_IDENTITY[sdk=macosx*]" = "Apple Development";
383383
CODE_SIGN_STYLE = Automatic;
384-
CURRENT_PROJECT_VERSION = 8;
384+
CURRENT_PROJECT_VERSION = 9;
385385
DEAD_CODE_STRIPPING = YES;
386386
DEVELOPMENT_TEAM = D7HJ5TFYCU;
387387
ENABLE_APP_SANDBOX = NO;
@@ -412,7 +412,7 @@
412412
"LD_RUNPATH_SEARCH_PATHS[sdk=macosx*]" = "@executable_path/../Frameworks";
413413
LIBRARY_SEARCH_PATHS = "$(PROJECT_DIR)/Libs";
414414
MACOSX_DEPLOYMENT_TARGET = 14.0;
415-
MARKETING_VERSION = 0.5.0;
415+
MARKETING_VERSION = 0.6.0;
416416
"OTHER_LDFLAGS[arch=arm64]" = (
417417
"-force_load",
418418
"$(PROJECT_DIR)/Libs/libmariadb.a",
@@ -471,7 +471,7 @@
471471
"CODE_SIGN_IDENTITY[sdk=macosx*]" = "Apple Development";
472472
CODE_SIGN_STYLE = Automatic;
473473
COPY_PHASE_STRIP = YES;
474-
CURRENT_PROJECT_VERSION = 8;
474+
CURRENT_PROJECT_VERSION = 9;
475475
DEAD_CODE_STRIPPING = YES;
476476
DEPLOYMENT_POSTPROCESSING = YES;
477477
DEVELOPMENT_TEAM = D7HJ5TFYCU;
@@ -503,7 +503,7 @@
503503
"LD_RUNPATH_SEARCH_PATHS[sdk=macosx*]" = "@executable_path/../Frameworks";
504504
LIBRARY_SEARCH_PATHS = "$(PROJECT_DIR)/Libs";
505505
MACOSX_DEPLOYMENT_TARGET = 14.0;
506-
MARKETING_VERSION = 0.5.0;
506+
MARKETING_VERSION = 0.6.0;
507507
"OTHER_LDFLAGS[arch=arm64]" = (
508508
"-force_load",
509509
"$(PROJECT_DIR)/Libs/libmariadb.a",

TablePro/Core/AI/AIPromptTemplates+InlineSuggest.swift

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,9 @@ extension AIPromptTemplates {
2121
- Keep completions concise (1-2 lines preferred). \
2222
- If no meaningful completion exists, return an empty string. \
2323
- Match the SQL dialect and style of the existing query. \
24-
- The completion must continue EXACTLY from the cursor position — if the cursor is mid-word (e.g., "SE[CURSOR]"), complete the word without adding spaces (e.g., "LECT * FROM ..."). \
24+
- The completion must continue EXACTLY from the cursor position — \
25+
if the cursor is mid-word (e.g., "SE[CURSOR]"), \
26+
complete the word without adding spaces (e.g., "LECT * FROM ..."). \
2527
- Only include a leading space when the cursor is after a complete token followed by no space.
2628
"""
2729

0 commit comments

Comments
 (0)