Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -14,3 +14,5 @@ DerivedData/

# Xcode 11
.swiftpm/

.claude
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
FROM swift:5.5
FROM swift:6.0
RUN apt-get update && apt-get install -y zlib1g-dev ruby
CMD cd xclogparser && swift build
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -513,8 +513,8 @@ xclogparser parse --file path/to/log.xcactivitylog --reporter html --output buil

| Environment | Version |
| ----------- |-------------|
| 🛠 Xcode | 13.0 |
| 🐦 Language | Swift 5.5 |
| 🛠 Xcode | 16.4 |
| 🐦 Language | Swift 6.0 |

## Status

Expand Down
2 changes: 1 addition & 1 deletion Rakefile
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ end

desc 'Create a release zip'
task :archive do
Rake::Task["build"].invoke('release', ['macos'], 'true')
Rake::Task["build"].invoke('release', nil, ['macos'], 'true')
end

desc 'Generates a Swift class with the file content from Resources'
Expand Down
Loading