Skip to content

Commit

Permalink
Merge pull request #14 from dastrobu/swift-5.7
Browse files Browse the repository at this point in the history
Swift 5.7
  • Loading branch information
dastrobu authored Dec 8, 2022
2 parents 4750973 + d75c558 commit 11915b2
Show file tree
Hide file tree
Showing 5 changed files with 2,486 additions and 2,569 deletions.
14 changes: 8 additions & 6 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,24 +6,26 @@ jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- uses: norio-nomura/action-swiftlint@3.2.1
macos-test:
strategy:
matrix:
swift-version:
- "5.5"
- "5.7"
runs-on: macos-latest
steps:
- uses: actions/checkout@v2
- uses: fwal/setup-swift@v1
- uses: actions/checkout@v3
- uses: swift-actions/setup-swift@v1
with:
swift-version: ${{ matrix.swift-version }}
- run: swift test
linux-test:
strategy:
matrix:
swift-version:
- "5.7"
- "5.6"
- "5.5"
- "5.4"
- "5.3"
Expand All @@ -33,10 +35,10 @@ jobs:
runs-on: ubuntu-latest
container: swift:${{ matrix.swift-version }}
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- run: swift test
ios-build:
runs-on: macos-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- run: xcodebuild -scheme geodesic -destination 'platform=iOS Simulator,name=iPhone 13'
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
# geodesic

[![Swift Version](https://img.shields.io/badge/swift-5.5-blue.svg)](https://swift.org)
[![Swift Version](https://img.shields.io/badge/swift-5.7-blue.svg)](https://swift.org)
![Platform](https://img.shields.io/badge/platform-macOS|linux--64-lightgray.svg)
![Build](https://github.com/dastrobu/geodesic/actions/workflows/ci.yaml/badge.svg)
[![GeographicLib Version](https://img.shields.io/badge/GeographicLib-1.52.0-blue.svg)](https://geographiclib.sourceforge.io/)
[![GeographicLib Version](https://img.shields.io/badge/GeographicLib-2.0-blue.svg)](https://github.com/geographiclib/geographiclib-c/releases/tag/v2.0)

Solver for the inverse geodesic problem in Swift.

Expand Down Expand Up @@ -54,7 +54,7 @@ let package = Package(
This Swift package is a wrapper for the
[C library for Geodesics](https://geographiclib.sourceforge.io/html/C/). The author of this library is Charles Karney (
charles@karney.com). The goal of this Swift package is to make some algorithms from
[GeographicLib](https://geographiclib.sourceforge.io/) available to the Swift world. Alternatively one can employ the
[GeographicLib](https://github.com/geographiclib/geographiclib-c) available to the Swift world. Alternatively one can employ the
package
[vincenty](https://github.com/dastrobu/vincenty)
which is a much simpler solver for the inverse geodesic problem, completely written in Swift. Vincenty's formulae does,
Expand Down
5 changes: 2 additions & 3 deletions Sources/geographiclib/LICENSE.txt
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
The MIT License (MIT); this license applies to GeographicLib,
versions 1.12 and later.
The MIT License (MIT).

Copyright (c) 2008-2021, Charles Karney
Copyright (c) 2012-2022, Charles Karney

Permission is hereby granted, free of charge, to any person
obtaining a copy of this software and associated documentation
Expand Down
Loading

0 comments on commit 11915b2

Please sign in to comment.