Skip to content

Commit 532371b

Browse files
leogdionclaude
andauthored
docs: update version references to alpha releases (#72)
* docs: update version references to alpha releases [skip ci] Update all documentation and demo package dependencies to reference the correct alpha versions: - SundialKit: 2.0.0-alpha.1 - SundialKitStream: 1.0.0-alpha.1 - SundialKitCombine: 1.0.0-alpha.1 Changes: - README.md: Update installation examples to use alpha versions - SundialKit.docc/Documentation.md: Update DocC installation example - Examples/Sundial/Package.swift: Convert from branch refs to version tags - Examples/Sundial/README.md: Update version in project description This ensures users understand they're working with pre-release software and demo builds use stable version references instead of branch heads. Note: Waiting for SundialKitStream and SundialKitCombine tags to be created before enabling CI. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com> * chore: trigger CI run --------- Co-authored-by: Claude <noreply@anthropic.com>
1 parent ff0e3f2 commit 532371b

4 files changed

Lines changed: 7 additions & 7 deletions

File tree

Examples/Sundial/Package.swift

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -35,17 +35,17 @@ let package = Package(
3535
// SundialKit core (parent package)
3636
.package(
3737
url: "https://github.com/brightdigit/SundialKit.git",
38-
branch: "v2.0.0"
38+
from: "2.0.0-alpha.1"
3939
),
4040
// SundialKitCombine plugin
4141
.package(
4242
url: "https://github.com/brightdigit/SundialKitCombine.git",
43-
branch: "v1.0.0"
43+
from: "1.0.0-alpha.1"
4444
),
4545
// SundialKitStream plugin
4646
.package(
4747
url: "https://github.com/brightdigit/SundialKitStream.git",
48-
branch: "v1.0.0"
48+
from: "1.0.0-alpha.1"
4949
)
5050
],
5151
targets: [

Examples/Sundial/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Sundial Demo Application
22

3-
A comprehensive iOS/watchOS demonstration of SundialKit v2.0.0 capabilities, with focus on:
3+
A comprehensive iOS/watchOS demonstration of SundialKit v2.0.0-alpha.1 capabilities, with focus on:
44
- **Binary protobuf messaging** with `BinaryMessagable`
55
- **Latency measurement** across different transport methods
66
- **Transport route comparison** (sendMessage vs updateApplicationContext)

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -73,8 +73,8 @@ let package = Package(
7373
name: "YourPackage",
7474
platforms: [.iOS(.v16), .watchOS(.v9), .tvOS(.v16), .macOS(.v13)],
7575
dependencies: [
76-
.package(url: "https://github.com/brightdigit/SundialKit.git", from: "2.0.0"),
77-
.package(url: "https://github.com/brightdigit/SundialKitStream.git", from: "1.0.0")
76+
.package(url: "https://github.com/brightdigit/SundialKit.git", from: "2.0.0-alpha.1"),
77+
.package(url: "https://github.com/brightdigit/SundialKitStream.git", from: "1.0.0-alpha.1")
7878
],
7979
targets: [
8080
.target(

Sources/SundialKit/SundialKit.docc/Documentation.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ Add SundialKit to your `Package.swift`:
4343

4444
```swift
4545
dependencies: [
46-
.package(url: "https://github.com/brightdigit/SundialKit.git", from: "2.0.0")
46+
.package(url: "https://github.com/brightdigit/SundialKit.git", from: "2.0.0-alpha.1")
4747
]
4848
```
4949

0 commit comments

Comments
 (0)