Skip to content

Commit badf1ec

Browse files
committed
Release 0.6.9
1 parent 74893ab commit badf1ec

File tree

6 files changed

+23
-16
lines changed

6 files changed

+23
-16
lines changed

.changeset/0dc29ce6.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# Changelog
22

3+
## 0.6.9
4+
5+
### Patch Changes
6+
7+
- 74893ab: Support escape sequences (\n, \t, \\) in word remappings for newlines, tabs, and literal backslashes (#140)
8+
39
## 0.6.8
410

511
### Patch Changes

Hex.xcodeproj/project.pbxproj

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -275,10 +275,10 @@
275275
buildSettings = {
276276
BUNDLE_LOADER = "$(TEST_HOST)";
277277
CODE_SIGN_STYLE = Automatic;
278-
CURRENT_PROJECT_VERSION = 77;
278+
CURRENT_PROJECT_VERSION = 78;
279279
DEAD_CODE_STRIPPING = YES;
280280
GENERATE_INFOPLIST_FILE = YES;
281-
MARKETING_VERSION = 0.6.8;
281+
MARKETING_VERSION = 0.6.9;
282282
PRODUCT_BUNDLE_IDENTIFIER = com.kitlangton.HexTests;
283283
PRODUCT_NAME = "$(TARGET_NAME)";
284284
SWIFT_EMIT_LOC_STRINGS = NO;
@@ -292,10 +292,10 @@
292292
buildSettings = {
293293
BUNDLE_LOADER = "$(TEST_HOST)";
294294
CODE_SIGN_STYLE = Automatic;
295-
CURRENT_PROJECT_VERSION = 77;
295+
CURRENT_PROJECT_VERSION = 78;
296296
DEAD_CODE_STRIPPING = YES;
297297
GENERATE_INFOPLIST_FILE = YES;
298-
MARKETING_VERSION = 0.6.8;
298+
MARKETING_VERSION = 0.6.9;
299299
PRODUCT_BUNDLE_IDENTIFIER = com.kitlangton.HexTests;
300300
PRODUCT_NAME = "$(TARGET_NAME)";
301301
SWIFT_EMIT_LOC_STRINGS = NO;
@@ -438,7 +438,7 @@
438438
"CODE_SIGN_IDENTITY[sdk=macosx*]" = "Apple Development";
439439
CODE_SIGN_STYLE = Automatic;
440440
COMBINE_HIDPI_IMAGES = YES;
441-
CURRENT_PROJECT_VERSION = 77;
441+
CURRENT_PROJECT_VERSION = 78;
442442
DEAD_CODE_STRIPPING = YES;
443443
DEVELOPMENT_ASSET_PATHS = "\"Hex/Preview Content\"";
444444
DEVELOPMENT_TEAM = QC99C9JE59;
@@ -465,7 +465,7 @@
465465
"@executable_path/../Frameworks",
466466
);
467467
MACOSX_DEPLOYMENT_TARGET = 15.0;
468-
MARKETING_VERSION = 0.6.8;
468+
MARKETING_VERSION = 0.6.9;
469469
OTHER_LDFLAGS = (
470470
"-Xlinker",
471471
"-interposable",
@@ -493,7 +493,7 @@
493493
"CODE_SIGN_IDENTITY[sdk=macosx*]" = "Apple Development";
494494
CODE_SIGN_STYLE = Automatic;
495495
COMBINE_HIDPI_IMAGES = YES;
496-
CURRENT_PROJECT_VERSION = 77;
496+
CURRENT_PROJECT_VERSION = 78;
497497
DEAD_CODE_STRIPPING = YES;
498498
DEVELOPMENT_ASSET_PATHS = "\"Hex/Preview Content\"";
499499
DEVELOPMENT_TEAM = QC99C9JE59;
@@ -519,7 +519,7 @@
519519
"@executable_path/../Frameworks",
520520
);
521521
MACOSX_DEPLOYMENT_TARGET = 15.0;
522-
MARKETING_VERSION = 0.6.8;
522+
MARKETING_VERSION = 0.6.9;
523523
PRODUCT_BUNDLE_IDENTIFIER = com.kitlangton.Hex;
524524
PRODUCT_NAME = "$(TARGET_NAME)";
525525
RUNTIME_EXCEPTION_ALLOW_DYLD_ENVIRONMENT_VARIABLES = NO;

Hex/Info.plist

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,9 @@
77
<key>CFBundleIconName</key>
88
<string>AppIcon</string>
99
<key>CFBundleShortVersionString</key>
10-
<string>0.6.8</string>
10+
<string>0.6.9</string>
1111
<key>CFBundleVersion</key>
12-
<string>77</string>
12+
<string>78</string>
1313
<key>NSAccessibilityUsageDescription</key>
1414
<string>Hex needs accessibility access to monitor keyboard events for hotkey detection.</string>
1515
<key>NSAppTransportSecurity</key>

Hex/Resources/changelog.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# Changelog
22

3+
## 0.6.9
4+
5+
### Patch Changes
6+
7+
- 74893ab: Support escape sequences (\n, \t, \\) in word remappings for newlines, tabs, and literal backslashes (#140)
8+
39
## 0.6.8
410

511
### Patch Changes

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "hex-app",
3-
"version": "0.6.8",
3+
"version": "0.6.9",
44
"description": "Release metadata + changelog automation for the Hex macOS app.",
55
"private": true,
66
"license": "MIT",

0 commit comments

Comments
 (0)