Skip to content

Commit

Permalink
Hotfix: fixed bug which causes malformat of issues
Browse files Browse the repository at this point in the history
  • Loading branch information
Alex da Franca committed Oct 16, 2024
1 parent ad453c7 commit 8135494
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 3 deletions.
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,17 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## Version 1.8.1 - 2024-10-16
### CHANGES:
- fixed bug which causes malformat of issues

## Version 1.8.0 - 2024-10-06
### CHANGES:
Add new parameter '--excluded-path' in order to exclude specified paths for coverage and warnings-and-errors
Add unit tests for the new feature
Read submission ID from notarization call in order to echo the entire command for 'notarytool' info and 'notarytool log', so we can copy and paste it into the terminal
Add new xcresult file to test xcresult with errors

## Version 1.7.2 - 2024-07-31
### CHANGES:
- Swift 5.9 is better choice over 5.10 in terms of compatibility
Expand Down
2 changes: 1 addition & 1 deletion CommandlineTool/main.swift
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import ArgumentParser
import Foundation
import XcresultparserLib

private let marketingVersion = "1.8.0"
private let marketingVersion = "1.8.1"

struct xcresultparser: ParsableCommand {
static let configuration = CommandConfiguration(
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ You should see the tool respond like this:
```
Error: Missing expected argument '<xcresult-file>'
OVERVIEW: xcresultparser 1.8.0
OVERVIEW: xcresultparser 1.8.1
Interpret binary .xcresult files and print summary in different formats: txt,
xml, html or colored cli output.
Expand Down
1 change: 0 additions & 1 deletion Sources/xcresultparser/Models/CodeClimate/Issue.swift
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,6 @@ extension Issue {

private extension Set<String> {
func isPathExcluded(_ path: String) -> Bool {
print("Checking path: \(path)")
for excludedPath in self where path.contains(excludedPath) {
return true
}
Expand Down

0 comments on commit 8135494

Please sign in to comment.