Skip to content

Commit

Permalink
Release 2.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
ileitch committed Dec 5, 2020
1 parent 8d5c06b commit 189717a
Show file tree
Hide file tree
Showing 5 changed files with 18 additions and 4 deletions.
14 changes: 14 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,20 @@

##### Breaking

- None.

##### Enhancements

- None.

##### Bug Fixes

- None.

## 2.3.0 (2020-12-05)

##### Breaking

- JSON and CSV output formats have changed to reflect the fact that declarations can have multiple IDs if they're members of multiple build targets.
- Declarations accessible by the Objective-C runtime are no longer retained by default. The `--no-retain-objc-annotated` option has been removed, and `--retain-objc-accessible` added.

Expand Down
2 changes: 1 addition & 1 deletion Periphery.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |spec|
spec.name = "Periphery"
spec.version = "2.2.2"
spec.version = "2.3.0"
spec.summary = "Eliminate Unused Swift Code."
spec.homepage = "https://github.com/peripheryapp/periphery"
spec.license = { :type => 'MIT', :file => 'LICENSE.md' }
Expand Down
2 changes: 1 addition & 1 deletion Sources/Frontend/Version.swift
Original file line number Diff line number Diff line change
@@ -1 +1 @@
public let PeripheryVersion = "2.2.2"
public let PeripheryVersion = "2.3.0"
2 changes: 1 addition & 1 deletion Sources/PeripheryKit/Indexer/SourceGraph.swift
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,11 @@ import Shared

public final class SourceGraph {
private(set) public var allDeclarations: Set<Declaration> = []
private(set) public var reachableDeclarations: Set<Declaration> = []

private(set) var rootDeclarations: Set<Declaration> = []
private(set) var rootReferences: Set<Reference> = []
private(set) var allReferences: Set<Reference> = []
private(set) var reachableDeclarations: Set<Declaration> = []
private(set) var redundantDeclarations: Set<Declaration> = []
private(set) var retainedDeclarations: Set<Declaration> = []

Expand Down
2 changes: 1 addition & 1 deletion Tests/Shared/SourceGraphTestCase.swift
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import XCTest
import PathKit
@testable import PeripheryKit
import PeripheryKit

open class SourceGraphTestCase: XCTestCase {
open var graph: SourceGraph!
Expand Down

0 comments on commit 189717a

Please sign in to comment.