Skip to content

Commit e8359e9

Browse files
committed
release: v0.39.1
1 parent 6f8a4a8 commit e8359e9

4 files changed

Lines changed: 23 additions & 6 deletions

File tree

CHANGELOG.md

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

88
## [Unreleased]
99

10+
## [0.39.1] - 2026-05-08
11+
12+
### Fixed
13+
14+
- App fails to launch on 0.39.0 with errno 163 "Launchd job spawn failed". Production entitlements shipped a literal `$(AppIdentifierPrefix)` placeholder in `keychain-access-groups` because `codesign --entitlements` does not expand Xcode build variables. Reverted to the hardcoded team prefix; personal-team contributors still use `TablePro.Debug.entitlements` (#1104)
15+
1016
## [0.39.0] - 2026-05-08
1117

1218
### Added
@@ -1656,7 +1662,8 @@ TablePro is a native macOS database client built with SwiftUI and AppKit, design
16561662
- Custom SQL query templates
16571663
- Performance optimized for large datasets
16581664

1659-
[Unreleased]: https://github.com/TableProApp/TablePro/compare/v0.39.0...HEAD
1665+
[Unreleased]: https://github.com/TableProApp/TablePro/compare/v0.39.1...HEAD
1666+
[0.39.1]: https://github.com/TableProApp/TablePro/compare/v0.39.0...v0.39.1
16601667
[0.39.0]: https://github.com/TableProApp/TablePro/compare/v0.38.0...v0.39.0
16611668
[0.38.0]: https://github.com/TableProApp/TablePro/compare/v0.37.0...v0.38.0
16621669
[0.37.0]: https://github.com/TableProApp/TablePro/compare/v0.36.0...v0.37.0

TablePro.xcodeproj/project.pbxproj

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2286,7 +2286,7 @@
22862286
CODE_SIGN_IDENTITY = "Apple Development";
22872287
"CODE_SIGN_IDENTITY[sdk=macosx*]" = "Apple Development";
22882288
CODE_SIGN_STYLE = Automatic;
2289-
CURRENT_PROJECT_VERSION = 78;
2289+
CURRENT_PROJECT_VERSION = 79;
22902290
DEAD_CODE_STRIPPING = YES;
22912291
DEVELOPMENT_TEAM = D7HJ5TFYCU;
22922292
ENABLE_APP_SANDBOX = NO;
@@ -2318,7 +2318,7 @@
23182318
);
23192319
LIBRARY_SEARCH_PATHS = "$(PROJECT_DIR)/Libs/dylibs";
23202320
MACOSX_DEPLOYMENT_TARGET = 14.0;
2321-
MARKETING_VERSION = 0.39.0;
2321+
MARKETING_VERSION = 0.39.1;
23222322
OTHER_LDFLAGS = (
23232323
"-Wl,-w",
23242324
"-force_load",
@@ -2363,7 +2363,7 @@
23632363
"CODE_SIGN_IDENTITY[sdk=macosx*]" = "Apple Development";
23642364
CODE_SIGN_STYLE = Automatic;
23652365
COPY_PHASE_STRIP = YES;
2366-
CURRENT_PROJECT_VERSION = 78;
2366+
CURRENT_PROJECT_VERSION = 79;
23672367
DEAD_CODE_STRIPPING = YES;
23682368
DEPLOYMENT_POSTPROCESSING = YES;
23692369
DEVELOPMENT_TEAM = D7HJ5TFYCU;
@@ -2396,7 +2396,7 @@
23962396
);
23972397
LIBRARY_SEARCH_PATHS = "$(PROJECT_DIR)/Libs/dylibs";
23982398
MACOSX_DEPLOYMENT_TARGET = 14.0;
2399-
MARKETING_VERSION = 0.39.0;
2399+
MARKETING_VERSION = 0.39.1;
24002400
OTHER_LDFLAGS = (
24012401
"-Wl,-w",
24022402
"-force_load",

TablePro/TablePro.entitlements

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
33
<plist version="1.0">
44
<dict>
5+
<key>com.apple.application-identifier</key>
6+
<string>D7HJ5TFYCU.com.TablePro</string>
57
<key>com.apple.developer.icloud-container-identifiers</key>
68
<array>
79
<string>iCloud.com.TablePro</string>
@@ -12,13 +14,15 @@
1214
</array>
1315
<key>com.apple.developer.icloud-container-environment</key>
1416
<string>Production</string>
17+
<key>com.apple.developer.team-identifier</key>
18+
<string>D7HJ5TFYCU</string>
1519
<key>com.apple.security.app-sandbox</key>
1620
<false/>
1721
<key>com.apple.security.cs.disable-library-validation</key>
1822
<true/>
1923
<key>keychain-access-groups</key>
2024
<array>
21-
<string>$(AppIdentifierPrefix)com.TablePro.shared</string>
25+
<string>D7HJ5TFYCU.com.TablePro.shared</string>
2226
</array>
2327
</dict>
2428
</plist>

docs/changelog.mdx

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,12 @@ description: "Product updates and announcements for TablePro"
44
rss: true
55
---
66

7+
<Update label="May 8, 2026" description="v0.39.1">
8+
### Bug Fixes
9+
10+
- **Launch Failure on 0.39.0**: App failed to open with "The application can't be opened" / errno 163. Production entitlements shipped a literal `$(AppIdentifierPrefix)` placeholder for the keychain access group because `codesign --entitlements` does not expand Xcode build variables. Reverted to the hardcoded team prefix (#1104)
11+
</Update>
12+
713
<Update label="May 8, 2026" description="v0.39.0">
814
### New Features
915

0 commit comments

Comments
 (0)