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

Filter by extension

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: 1 addition & 1 deletion APPROBATION.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Approbation Matrix / PerseusGeoLocationKit 1.0.0 & 1.0.1 & 1.0.2
# Approbation Matrix / PerseusGeoLocationKit 1.0.0 && 1.0.1 && 1.0.2 && 1.0.2

> NOTE: To catch all log messages Mac Console should be started first then after a little while the logged app.

Expand Down
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

Dates in this file meets Gregorian calendar. Date in format YYYY-MM-DD.

## [1.0.3] - [2025-06-18], PGK

### Fixed

- Logger access modifier, typealias `log` must be not public.

## [1.0.2] - [2025-06-17], PGK

### Upgraded
Expand Down
2 changes: 1 addition & 1 deletion PGKStar.swift
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
//
// PerseusGeoKitStar.swift
// Version: 1.0.2
// Version: 1.0.3
//
// Standalone PerseusGeoKit
//
Expand Down Expand Up @@ -980,7 +980,7 @@
return
}

UIApplication.shared.open(settingsURL) { (opened) in

Check warning on line 983 in PGKStar.swift

View workflow job for this annotation

GitHub Actions / SwiftLint

Unused Closure Parameter (unused_closure_parameter)

Unused parameter in a closure should be replaced with _
// Status opened.
}
}
Expand Down
2 changes: 1 addition & 1 deletion PGKSupportingStar.swift
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
//
// PGKSupportingStar.swift
// Version: 1.0.2
// Version: 1.0.3
//
// PerseusGeoKit Support Code
//
Expand Down
2 changes: 1 addition & 1 deletion Package.swift
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
// swift-tools-version:5.7

/* Package.swift
Version: 1.0.2
Version: 1.0.3

For iOS and macOS only. Use Stars to adopt for the specifics you need.

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@

[![Actions Status](https://github.com/perseusrealdeal/PerseusGeoKit/actions/workflows/main.yml/badge.svg)](https://github.com/perseusrealdeal/PerseusGeoKit/actions/workflows/main.yml)
[![Style](https://github.com/perseusrealdeal/PerseusGeoKit/actions/workflows/swiftlint.yml/badge.svg)](https://github.com/perseusrealdeal/PerseusGeoKit/actions/workflows/swiftlint.yml)
[![Version](https://img.shields.io/badge/Version-1.0.2-green.svg)](/CHANGELOG.md)
[![Version](https://img.shields.io/badge/Version-1.0.3-green.svg)](/CHANGELOG.md)
[![Platforms](https://img.shields.io/badge/Platforms-macOS%2010.13+Cocoa_|_iOS%2011.0+UIKit-orange.svg)](https://en.wikipedia.org/wiki/List_of_Apple_products)
[![Xcode 14.2](https://img.shields.io/badge/Xcode-14.2+-red.svg)](https://en.wikipedia.org/wiki/Xcode)
[![Swift 5.7](https://img.shields.io/badge/Swift-5.7-red.svg)](https://www.swift.org)
Expand Down
2 changes: 1 addition & 1 deletion Sources/PerseusGeoKit/CPLStar.swift
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ import Foundation
import os

// swiftlint:disable type_name
public typealias log = PerseusLogger // In SPM package should be not public except TheOne.
typealias log = PerseusLogger // In SPM package should be not public except TheOne.
// swiftlint:enable type_name

public typealias ConsoleObject = (subsystem: String, category: String)
Expand Down