From f92c5bc6709108bd5abdbcbb63fc2708b44129e2 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Sat, 14 Feb 2026 19:05:10 +0000 Subject: [PATCH 1/5] Initial plan From 40e1bbe78ee43a06a6e76c6f4bd7d472597a35e8 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Sat, 14 Feb 2026 19:07:43 +0000 Subject: [PATCH 2/5] docs: add MIT license for release Co-authored-by: atdrendel <202402+atdrendel@users.noreply.github.com> --- LICENSE | 21 +++++++++++++++++++++ README.md | 4 ++++ 2 files changed, 25 insertions(+) create mode 100644 LICENSE diff --git a/LICENSE b/LICENSE new file mode 100644 index 0000000..850c11c --- /dev/null +++ b/LICENSE @@ -0,0 +1,21 @@ +MIT License + +Copyright (c) 2026 Shareup + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. diff --git a/README.md b/README.md index 73cc312..90c2fc8 100644 --- a/README.md +++ b/README.md @@ -43,3 +43,7 @@ let package = Package( ``` _Linux is not currently supported_ + +## License + +MIT From 9aa8c4898b8302fe374b147fbd0e37d94db701d7 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Sat, 14 Feb 2026 22:46:17 +0000 Subject: [PATCH 3/5] ci: run workflow on latest macOS and Xcode Co-authored-by: atdrendel <202402+atdrendel@users.noreply.github.com> --- .github/workflows/ci.yml | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 9e1184b..1a71b83 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -4,11 +4,12 @@ on: push jobs: test: - runs-on: macos-12 + runs-on: macos-latest steps: - uses: actions/checkout@v3 - - name: Select Xcode 14 - run: sudo xcode-select -s /Applications/Xcode_14.1.app + - uses: maxim-lobanov/setup-xcode@v1 + with: + xcode-version: latest-stable - name: Test run: swift test From 21ac054f80bebf252d8d4c3c3ee1a24c17a6a8af Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Sat, 14 Feb 2026 22:47:18 +0000 Subject: [PATCH 4/5] ci: add least-privilege token permissions Co-authored-by: atdrendel <202402+atdrendel@users.noreply.github.com> --- .github/workflows/ci.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 1a71b83..3858dd6 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -5,6 +5,8 @@ on: push jobs: test: runs-on: macos-latest + permissions: + contents: read steps: - uses: actions/checkout@v3 From ce9bee2b2344e180f4aa26c0434a57e6c2f31470 Mon Sep 17 00:00:00 2001 From: Anthony Drendel Date: Sun, 15 Feb 2026 00:22:23 +0100 Subject: [PATCH 5/5] Update CI workflow to use latest checkout action --- .github/workflows/ci.yml | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 3858dd6..9e87511 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -5,13 +5,10 @@ on: push jobs: test: runs-on: macos-latest - permissions: - contents: read steps: - - uses: actions/checkout@v3 - - uses: maxim-lobanov/setup-xcode@v1 - with: - xcode-version: latest-stable + - uses: actions/checkout@v4 + - name: Select Xcode 26 + run: sudo xcode-select -s /Applications/Xcode_26.3.app - name: Test run: swift test