Skip to content

Commit aac1ed7

Browse files
committed
Release 2.5.0
1 parent f8a7f31 commit aac1ed7

File tree

5 files changed

+19
-6
lines changed

5 files changed

+19
-6
lines changed

CHANGELOG.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,20 @@
66

77
##### Enhancements
88

9+
- None.
10+
11+
##### Bug Fixes
12+
13+
- None.
14+
15+
## 2.5.0 (2021-05-27)
16+
17+
##### Breaking
18+
19+
- None.
20+
21+
##### Enhancements
22+
923
- Add redundant public accessibility analysis.
1024
- Add arm64 support.
1125
- Add `--retain-assign-only-property-types` option to retain assign-only properties based on their type.

Periphery.podspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Pod::Spec.new do |spec|
22
spec.name = "Periphery"
3-
spec.version = "2.4.3"
3+
spec.version = "2.5.0"
44
spec.summary = "Eliminate Unused Swift Code."
55
spec.homepage = "https://github.com/peripheryapp/periphery"
66
spec.license = { :type => 'MIT', :file => 'LICENSE.md' }

Sources/Frontend/Version.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
let PeripheryVersion = "2.4.3"
1+
let PeripheryVersion = "2.5.0"

scripts/Version.swift.template

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
public let PeripheryVersion = "__VERSION__"
1+
let PeripheryVersion = "__VERSION__"

scripts/release

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,6 @@ green () {
2020
}
2121

2222
signature="Developer ID Application: Ian Leitch (8L8F8HSTR4)"
23-
2423
password="@keychain:PeripheryNotarize"
2524
bundle_id="com.github.peripheryapp"
2625

@@ -54,13 +53,13 @@ codesign --force --options=runtime --sign "$signature" periphery
5453
zip_filename="periphery-v${version}.zip"
5554
zip "${zip_filename}" periphery LICENSE.md lib_InternalSwiftSyntaxParser.dylib
5655
codesign --force --options=runtime --sign "$signature" "${zip_filename}"
57-
xcrun altool --notarize-app --primary-bundle-id "${bundle_id}" --username "${username}" --password "${password}" --file "${zip_filename}"
56+
xcrun altool --notarize-app --primary-bundle-id "${bundle_id}" --password "${password}" --file "${zip_filename}"
5857

5958
echo "Checksum:"
6059
sha256=$( shasum -a 256 ${zip_filename} | awk '{print $1}' )
6160
echo ${sha256}
6261

63-
echo -e "\nWait for notarization approval: xcrun altool --notarization-history 0 -u \"$username\" -p \"$password\""
62+
echo -e "\nWait for notarization approval: xcrun altool --notarization-history 0 -p \"$password\""
6463
confirm "Continue?"
6564

6665
# GitHub

0 commit comments

Comments
 (0)