Skip to content

Commit 16041bf

Browse files
committed
Version 1.8.0
1 parent ddbbec2 commit 16041bf

File tree

4 files changed

+45
-1
lines changed

4 files changed

+45
-1
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -102,3 +102,4 @@ XCFrameworkOutput
102102
.idea
103103
.vscode
104104
.editorconfig
105+
/.index-build

.zed/debug.json

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
// Project-local debug tasks
2+
//
3+
// For more documentation on how to configure debug tasks,
4+
// see: https://zed.dev/docs/debugger
5+
[
6+
{
7+
"label": "Debug Tests",
8+
"build": {
9+
"command": "swift",
10+
"args": ["build", "--build-tests", "-Xswiftc", "-diagnostic-style=llvm"]
11+
},
12+
"program": "/Applications/Xcode.app/Contents/Developer/usr/bin/xctest",
13+
"args": [
14+
"-XCTest",
15+
"Segment_Tests.Analytics_Tests/testContext",
16+
"$ZED_WORKTREE_ROOT/.build/arm64-apple-macosx/debug/SegmentPackageTests.xctest"
17+
],
18+
"request": "launch",
19+
"adapter": "Swift" // GDB is available on non arm macs as well as linux
20+
}
21+
]

.zed/tasks.json

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
[
2+
{
3+
"label": "Build",
4+
"command": "swift build --build-tests",
5+
"use_new_terminal": false,
6+
"allow_concurrent_runs": false,
7+
"reveal": "no_focus",
8+
"reveal_target": "dock",
9+
"hide": "never",
10+
"shell": "system"
11+
},
12+
{
13+
"label": "Run Tests",
14+
"command": "swift test",
15+
"use_new_terminal": false,
16+
"allow_concurrent_runs": false,
17+
"reveal": "no_focus",
18+
"reveal_target": "dock",
19+
"hide": "never",
20+
"shell": "system"
21+
}
22+
]

Sources/Segment/Version.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,4 +15,4 @@
1515
// Use release.sh's automation.
1616

1717
// BREAKING.FEATURE.FIX
18-
internal let __segment_version = "1.7.3"
18+
internal let __segment_version = "1.8.0"

0 commit comments

Comments
 (0)