From bdeaf5453e9832e3c3612bd52dc55bf7bf7f3ec0 Mon Sep 17 00:00:00 2001 From: "Mikhail A.Z." Date: Wed, 18 Jun 2025 11:54:30 +0700 Subject: [PATCH] FIXED: logger access modifier --- APPROBATION.md | 2 +- CHANGELOG.md | 6 ++++++ PGKStar.swift | 2 +- PGKSupportingStar.swift | 2 +- Package.swift | 2 +- README.md | 2 +- Sources/PerseusGeoKit/CPLStar.swift | 2 +- 7 files changed, 12 insertions(+), 6 deletions(-) diff --git a/APPROBATION.md b/APPROBATION.md index 2cf36c9..2b2a4b6 100644 --- a/APPROBATION.md +++ b/APPROBATION.md @@ -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. diff --git a/CHANGELOG.md b/CHANGELOG.md index 8b6eaff..6932ee6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 diff --git a/PGKStar.swift b/PGKStar.swift index f40bae1..eef37b1 100644 --- a/PGKStar.swift +++ b/PGKStar.swift @@ -1,6 +1,6 @@ // // PerseusGeoKitStar.swift -// Version: 1.0.2 +// Version: 1.0.3 // // Standalone PerseusGeoKit // diff --git a/PGKSupportingStar.swift b/PGKSupportingStar.swift index 2e57fa1..1203ee1 100644 --- a/PGKSupportingStar.swift +++ b/PGKSupportingStar.swift @@ -1,6 +1,6 @@ // // PGKSupportingStar.swift -// Version: 1.0.2 +// Version: 1.0.3 // // PerseusGeoKit Support Code // diff --git a/Package.swift b/Package.swift index 34d8879..2b8bd6b 100644 --- a/Package.swift +++ b/Package.swift @@ -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. diff --git a/README.md b/README.md index 2127665..81ae3d9 100644 --- a/README.md +++ b/README.md @@ -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) diff --git a/Sources/PerseusGeoKit/CPLStar.swift b/Sources/PerseusGeoKit/CPLStar.swift index 9e05b5a..572dbd6 100644 --- a/Sources/PerseusGeoKit/CPLStar.swift +++ b/Sources/PerseusGeoKit/CPLStar.swift @@ -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)