Skip to content

Commit 5129f4e

Browse files
authored
Merge pull request #62 from ealeksandrov/v2-rebase
2 parents 9ff3104 + 172fe8a commit 5129f4e

File tree

75 files changed

+4056
-1982
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

75 files changed

+4056
-1982
lines changed

.github/workflows/build.yml

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

.github/workflows/lint.yml

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
name: Lint
2+
3+
on:
4+
pull_request:
5+
push:
6+
branches:
7+
- main
8+
9+
jobs:
10+
SwiftFormat:
11+
runs-on: ubuntu-latest
12+
steps:
13+
- uses: actions/checkout@v4
14+
- uses: jdx/mise-action@v2
15+
- name: Run SwiftFormat
16+
run: swiftformat . --verbose --lint --reporter github-actions-log

.github/workflows/test.yml

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
name: Build and Test
2+
3+
on:
4+
pull_request:
5+
push:
6+
branches:
7+
- main
8+
9+
jobs:
10+
build-and-test:
11+
runs-on: macos-latest
12+
steps:
13+
- uses: actions/checkout@v4
14+
15+
- name: Build project
16+
run: |
17+
xcodebuild -quiet -project ProvisionQL.xcodeproj -scheme ProvisionQL CODE_SIGN_IDENTITY="" CODE_SIGNING_REQUIRED=NO
18+
19+
- name: Run tests
20+
run: |
21+
cd ProvisionQLCore
22+
swift test

.gitignore

Lines changed: 1 addition & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -1,29 +1,7 @@
1-
# OS noise
2-
.DS_Store
3-
._*
4-
*~
5-
6-
# Other CSM
7-
.hg
8-
.svn
9-
CVS
10-
111
# Xcode settings
122
xcuserdata/
133

14-
# Xcode noise
15-
*.log
16-
*~.nib
17-
*.moved-aside
18-
*.xccheckout
19-
*.xcscmblueprint
20-
214
# Build generated
225
[Bb]uild/
6+
.build/
237
DerivedData/
24-
25-
# Obj-C/Swift specific
26-
*.hmap
27-
*.ipa
28-
*.dSYM.zip
29-
*.dSYM

.mise.toml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
[tools]
2+
swiftformat = "0.57.2"
3+
4+
[tasks.lint]
5+
description = "Run SwiftFormat in lint mode"
6+
run = "swiftformat --lint --lenient ."
7+
8+
[tasks.format]
9+
description = "Run SwiftFormat"
10+
run = "swiftformat ."

.swiftformat

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
# SwiftFormat configuration
2+
--swiftversion 6.0
3+
--languagemode 6
4+
5+
# Options
6+
--maxwidth 120
7+
8+
# Disabled rules
9+
--disable hoistPatternLet
10+
--disable trailingCommas

CHANGELOG.md

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

3+
## Version 2.0.0
4+
5+
* WIP: macOS 15 compatibility
6+
37
## Version 1.6.4
48

59
* Adds error handling to entitlements parsing ([#47](https://github.com/ealeksandrov/ProvisionQL/pull/47))

LICENSE.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
MIT License
22

3-
Copyright (c) 2013-2023 Evgeny Aleksandrov
3+
Copyright (c) 2013-2025 Evgeny Aleksandrov
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

NSBezierPath+IOS7RoundedRect/NSBezierPath+IOS7RoundedRect.h

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

NSBezierPath+IOS7RoundedRect/NSBezierPath+IOS7RoundedRect.m

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

0 commit comments

Comments
 (0)