File tree Expand file tree Collapse file tree 3 files changed +4
-18
lines changed
Retries/DefaultRetryStrategy Expand file tree Collapse file tree 3 files changed +4
-18
lines changed Original file line number Diff line number Diff line change 1- // swift-tools-version:5.5
1+ // swift-tools-version:5.7
22
33import PackageDescription
44
@@ -13,9 +13,9 @@ let package = Package(
1313 . library( name: " SmithyTestUtil " , targets: [ " SmithyTestUtil " ] )
1414 ] ,
1515 dependencies: [
16- . package ( url: " https://github.com/awslabs/aws-crt-swift.git " , . exact( " 0.13.0 " ) ) ,
16+ . package ( url: " https://github.com/awslabs/aws-crt-swift.git " , exact: " 0.13.0 " ) ,
1717 . package ( url: " https://github.com/apple/swift-log.git " , from: " 1.0.0 " ) ,
18- . package ( url: " https://github.com/MaxDesiatov/XMLCoder.git " , . exact( " 0.17.0 " ) )
18+ . package ( url: " https://github.com/MaxDesiatov/XMLCoder.git " , exact: " 0.17.0 " )
1919 ] ,
2020 targets: [
2121 . target(
Original file line number Diff line number Diff line change @@ -55,7 +55,7 @@ final actor RetryQuota {
5555
5656 /// Creates a new quota with settings from the passed options.
5757 /// - Parameter options: The retry strategy options from which to configure this retry quota
58- convenience init ( options: RetryStrategyOptions ) {
58+ init ( options: RetryStrategyOptions ) {
5959 self . init (
6060 availableCapacity: options. availableCapacity,
6161 maxCapacity: options. maxCapacity,
Original file line number Diff line number Diff line change @@ -49,20 +49,6 @@ private func swift5Version() -> String? {
4949 return " 5.8 "
5050 #elseif swift(>=5.7)
5151 return " 5.7 "
52- #elseif swift(>=5.6)
53- return " 5.6 "
54- #elseif swift(>=5.5)
55- return " 5.5 "
56- #elseif swift(>=5.4)
57- return " 5.4 "
58- #elseif swift(>=5.3)
59- return " 5.3 "
60- #elseif swift(>=5.2)
61- return " 5.2 "
62- #elseif swift(>=5.1)
63- return " 5.1 "
64- #elseif swift(>=5.0)
65- return " 5.0 "
6652 #else
6753 return nil
6854 #endif
You can’t perform that action at this time.
0 commit comments