Skip to content

Commit

Permalink
Merge pull request #87 from YOCKOW/development
Browse files Browse the repository at this point in the history
Update dependencies.
  • Loading branch information
YOCKOW authored May 2, 2024
2 parents bc890c2 + 4ad70ad commit bb11360
Show file tree
Hide file tree
Showing 6 changed files with 121 additions and 102 deletions.
14 changes: 10 additions & 4 deletions .github/workflows/check-samples.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,18 +21,24 @@ jobs:
matrix:
os:
- ubuntu-22.04
- macOS-13
- macOS-14
swift-version:
- '5.9'
- '5.10'
- '5.9.2'
swift-compat-ver:
- '5'
# - '4.2'
# - '4'
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- name: Install libcurl headers
if: runner.os == 'Linux'
run: |
sudo apt update
sudo apt install libcurl4-openssl-dev
- name: Use a cache for ".build" directory.
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: .build
key: build-${{ github.workspace }}-${{ runner.os }}-${{ matrix.swift-version }}-${{ matrix.swift-compat-ver }}-${{ hashFiles('**/*.swift') }}
Expand Down Expand Up @@ -63,4 +69,4 @@ jobs:
if: steps.release_test.outcome == 'failure'
run: |
rm -rf $(cd .build/release && pwd -P)
swift test --configuration release -Xswiftc -swift-version -Xswiftc ${{ matrix.swift-compat-ver }}
swift test --configuration release -Xswiftc -swift-version -Xswiftc ${{ matrix.swift-compat-ver }}
14 changes: 10 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,18 +21,24 @@ jobs:
matrix:
os:
- ubuntu-22.04
- macOS-13
- macOS-14
swift-version:
- '5.9'
- '5.10'
- '5.9.2'
swift-compat-ver:
- '5'
# - '4.2'
# - '4'
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- name: Install libcurl headers
if: runner.os == 'Linux'
run: |
sudo apt update
sudo apt install libcurl4-openssl-dev
- name: Use a cache for ".build" directory.
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: .build
key: build-${{ github.workspace }}-${{ runner.os }}-${{ matrix.swift-version }}-${{ matrix.swift-compat-ver }}-${{ hashFiles('**/*.swift') }}
Expand Down Expand Up @@ -63,4 +69,4 @@ jobs:
if: steps.release_test.outcome == 'failure'
run: |
rm -rf $(cd .build/release && pwd -P)
swift test --configuration release -Xswiftc -swift-version -Xswiftc ${{ matrix.swift-compat-ver }}
swift test --configuration release -Xswiftc -swift-version -Xswiftc ${{ matrix.swift-compat-ver }}
2 changes: 1 addition & 1 deletion LICENSE.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
The MIT License (MIT)
Copyright (c) 2017-2023 YOCKOW
Copyright (c) 2017-2024 YOCKOW

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,
Expand Down
4 changes: 2 additions & 2 deletions Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -17,11 +17,11 @@ let package = Package(
],
dependencies: [
// Dependencies declare other packages that this package depends on.
.package(url:"https://github.com/YOCKOW/SwiftNetworkGear.git", "0.16.0"..<"2.0.0"),
.package(url:"https://github.com/YOCKOW/SwiftNetworkGear.git", "0.18.0"..<"2.0.0"),
.package(url:"https://github.com/YOCKOW/SwiftTemporaryFile.git", from: "4.0.7"),
.package(url:"https://github.com/YOCKOW/SwiftTimeSpecification.git", from: "3.3.0"),
.package(url:"https://github.com/YOCKOW/SwiftXHTML.git", from: "2.7.0"),
.package(url:"https://github.com/YOCKOW/ySwiftExtensions.git", from: "1.9.1"),
.package(url:"https://github.com/YOCKOW/ySwiftExtensions.git", from: "1.10.1"),
],
targets: [
// Targets are the basic building blocks of a package. A target can define a module or a test suite.
Expand Down
3 changes: 2 additions & 1 deletion Sources/CGIResponder/Environment.swift
Original file line number Diff line number Diff line change
@@ -1,10 +1,11 @@
/* *************************************************************************************************
Environment.swift
© 2017-2021,2023 YOCKOW.
© 2017-2021,2023,2024 YOCKOW.
Licensed under MIT License.
See "LICENSE.txt" for more information.
************************************************************************************************ */

import CNetworkGear
import Foundation
import NetworkGear
import TemporaryFile
Expand Down
Loading

0 comments on commit bb11360

Please sign in to comment.