Skip to content

Commit a070f00

Browse files
committed
chore: bump version to 0.1.1
1 parent 69c7af6 commit a070f00

3 files changed

Lines changed: 30 additions & 8 deletions

File tree

CHANGELOG.md

Lines changed: 25 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,28 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10-
## [1.0.0] - 2026-02-05
10+
## [0.1.1] - 2026-02-09
11+
12+
### Added
13+
14+
- Migrate SQL editor to CodeEditSourceEditor (tree-sitter powered)
15+
- Multi-statement SQL execution support
16+
- "Show Structure" context menu for sidebar tables
17+
- Improved filter panel UI/UX
18+
- SwiftUI EditorTabBar (replacing AppKit NativeTabBarView)
19+
20+
### Fixed
21+
22+
- Fix Delete key on data grid row from marking table as deleted
23+
- Code review fixes for multi-statement execution
24+
25+
### Changed
26+
27+
- Add SPM Package.resolved for CodeEditSourceEditor dependencies
28+
- Add Claude Code project settings
29+
- Update build/test commands with `-skipPackagePluginValidation`
30+
31+
## [0.1.0] - 2026-02-05
1132

1233
### Initial Public Release
1334

@@ -52,4 +73,6 @@ TablePro is a native macOS database client built with SwiftUI and AppKit, design
5273
- Custom SQL query templates
5374
- Performance optimized for large datasets
5475

55-
[1.0.0]: https://github.com/datlechin/tablepro/releases/tag/v1.0.0
76+
[Unreleased]: https://github.com/datlechin/tablepro/compare/v0.1.1...HEAD
77+
[0.1.1]: https://github.com/datlechin/tablepro/compare/v0.1.0...v0.1.1
78+
[0.1.0]: https://github.com/datlechin/tablepro/releases/tag/v0.1.0

TablePro.xcodeproj/project.pbxproj

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -272,15 +272,14 @@
272272
5A1091D32EF17EDD0055EA7C /* Debug */ = {
273273
isa = XCBuildConfiguration;
274274
buildSettings = {
275-
ARCHS = arm64;
276275
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
277276
ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor;
278277
ASSETCATALOG_COMPILER_INCLUDE_ALL_APPICON_ASSETS = YES;
279278
AUTOMATION_APPLE_EVENTS = NO;
280279
CODE_SIGN_IDENTITY = "Apple Development";
281280
"CODE_SIGN_IDENTITY[sdk=macosx*]" = "Apple Development";
282281
CODE_SIGN_STYLE = Automatic;
283-
CURRENT_PROJECT_VERSION = 1;
282+
CURRENT_PROJECT_VERSION = 2;
284283
DEVELOPMENT_TEAM = D7HJ5TFYCU;
285284
ENABLE_APP_SANDBOX = NO;
286285
ENABLE_HARDENED_RUNTIME = NO;
@@ -310,7 +309,7 @@
310309
"LD_RUNPATH_SEARCH_PATHS[sdk=macosx*]" = "@executable_path/../Frameworks";
311310
LIBRARY_SEARCH_PATHS = "$(PROJECT_DIR)/Libs";
312311
MACOSX_DEPLOYMENT_TARGET = 15.0;
313-
MARKETING_VERSION = 0.1.0;
312+
MARKETING_VERSION = 0.1.1;
314313
"OTHER_LDFLAGS[arch=arm64]" = (
315314
"-force_load",
316315
"$(PROJECT_DIR)/Libs/libmariadb.a",
@@ -360,7 +359,6 @@
360359
5A1091D42EF17EDD0055EA7C /* Release */ = {
361360
isa = XCBuildConfiguration;
362361
buildSettings = {
363-
ARCHS = arm64;
364362
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
365363
ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor;
366364
ASSETCATALOG_COMPILER_INCLUDE_ALL_APPICON_ASSETS = YES;
@@ -369,7 +367,7 @@
369367
"CODE_SIGN_IDENTITY[sdk=macosx*]" = "Apple Development";
370368
CODE_SIGN_STYLE = Automatic;
371369
COPY_PHASE_STRIP = YES;
372-
CURRENT_PROJECT_VERSION = 1;
370+
CURRENT_PROJECT_VERSION = 2;
373371
DEAD_CODE_STRIPPING = YES;
374372
DEPLOYMENT_POSTPROCESSING = YES;
375373
DEVELOPMENT_TEAM = D7HJ5TFYCU;
@@ -401,7 +399,7 @@
401399
"LD_RUNPATH_SEARCH_PATHS[sdk=macosx*]" = "@executable_path/../Frameworks";
402400
LIBRARY_SEARCH_PATHS = "$(PROJECT_DIR)/Libs";
403401
MACOSX_DEPLOYMENT_TARGET = 15.0;
404-
MARKETING_VERSION = 0.1.0;
402+
MARKETING_VERSION = 0.1.1;
405403
"OTHER_LDFLAGS[arch=arm64]" = (
406404
"-force_load",
407405
"$(PROJECT_DIR)/Libs/libmariadb.a",

scripts/build-release.sh

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -78,6 +78,7 @@ build_for_arch() {
7878
CODE_SIGN_IDENTITY="" \
7979
CODE_SIGNING_REQUIRED=NO \
8080
CODE_SIGNING_ALLOWED=NO \
81+
-skipPackagePluginValidation \
8182
clean build 2>&1 | tee "build-${arch}.log"; then
8283
echo "❌ FATAL: xcodebuild failed for $arch"
8384
echo "Check build-${arch}.log for details"

0 commit comments

Comments
 (0)