Skip to content

Commit ecf2187

Browse files
v2.0.3 (#38)
FIXED: logger access modifier
1 parent 9d1be85 commit ecf2187

7 files changed

Lines changed: 13 additions & 7 deletions

File tree

APPROBATION.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Approbation Matrix / PerseusDarkMode 2.0.0 && 2.0.1 && 2.0.2
1+
# Approbation Matrix / PerseusDarkMode 2.0.0 && 2.0.1 && 2.0.2 && 2.0.3
22

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

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
55

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

8+
## [2.0.3] - [2025-06-18], PerseusDarkMode
9+
10+
### Fixed
11+
12+
- Logger access modifier, typealias `log` must be not public.
13+
814
## [2.0.2] - [2025-06-17], PerseusDarkMode
915

1016
### Upgraded

PDMStar.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
//
22
// PDMStar.swift
3-
// Version: 2.0.1
3+
// Version: 2.0.3
44
//
55
// Standalone PerseusDarkMode.
66
//

PDMSupportingStar.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
//
22
// PDMSupportingStar.swift
3-
// Version: 2.0.1
3+
// Version: 2.0.3
44
//
55
// The Darkness Support (PerseusUISystemKit previously)
66
//

Package.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
// swift-tools-version:5.7
22

33
/* Package.swift
4-
Version: 2.0.2
4+
Version: 2.0.3
55

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

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
1212
[![Actions Status](https://github.com/perseusrealdeal/PerseusDarkMode/actions/workflows/main.yml/badge.svg)](https://github.com/perseusrealdeal/PerseusDarkMode/actions/workflows/main.yml)
1313
[![Style](https://github.com/perseusrealdeal/PerseusDarkMode/actions/workflows/swiftlint.yml/badge.svg)](https://github.com/perseusrealdeal/PerseusDarkMode/actions/workflows/swiftlint.yml)
14-
[![Version](https://img.shields.io/badge/Version-2.0.2-green.svg)](/CHANGELOG.md)
14+
[![Version](https://img.shields.io/badge/Version-2.0.3-green.svg)](/CHANGELOG.md)
1515
[![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)
1616
[![Xcode 14.2](https://img.shields.io/badge/Xcode-14.2+-red.svg)](https://en.wikipedia.org/wiki/Xcode)
1717
[![Swift 5.7](https://img.shields.io/badge/Swift-5.7-red.svg)](https://www.swift.org)
@@ -62,7 +62,7 @@
6262
</table>
6363

6464
> [!IMPORTANT]
65-
> Screenshots above had been taken from Approbation Apps [`iOS`](https://github.com/perseusrealdeal/TheOneRing) and [`macOS`](https://github.com/perseusrealdeal/Arkenstone).
65+
> Screenshots taken from Approbation Apps [`iOS`](https://github.com/perseusrealdeal/TheOneRing) and [`macOS`](https://github.com/perseusrealdeal/Arkenstone).
6666
6767
## Build requirements
6868

Sources/PerseusDarkMode/CPLStar.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ import Foundation
5252
import os
5353

5454
// swiftlint:disable type_name
55-
public typealias log = PerseusLogger // In SPM package should be not public except TheOne.
55+
typealias log = PerseusLogger // In SPM package should be not public except TheOne.
5656
// swiftlint:enable type_name
5757

5858
public typealias ConsoleObject = (subsystem: String, category: String)

0 commit comments

Comments
 (0)