Skip to content

Commit b8c652f

Browse files
committed
update 5 proposals which have been resolved.
1 parent 3ad7581 commit b8c652f

7 files changed

+10
-10
lines changed

README.md

+5
Original file line numberDiff line numberDiff line change
@@ -153,12 +153,15 @@ subsequent release.
153153
* [SE-0047: Defaulting non-Void functions so they warn on unused results](proposals/0047-nonvoid-warn.md)
154154
* [SE-0048: Generic Type Aliases](proposals/0048-generic-typealias.md)
155155
* [SE-0052: Change IteratorType post-nil guarantee](proposals/0052-iterator-post-nil-guarantee.md)
156+
* [SE-0060: Enforcing order of defaulted parameters](proposals/0060-defaulted-parameter-order.md)
156157
* [SE-0062: Referencing Objective-C key-paths](proposals/0062-objc-keypaths.md)
157158
* [SE-0063: SwiftPM System Module Search Paths](proposals/0063-swiftpm-system-module-search-paths.md)
158159
* [SE-0064: Referencing the Objective-C selector of property getters and setters](proposals/0064-property-selectors.md)
159160
* [SE-0066: Standardize function type argument syntax to require parentheses](proposals/0066-standardize-function-type-syntax.md)
160161
* [SE-0067: Enhanced Floating Point Protocols](proposals/0067-floating-point-protocols.md)
161162
* [SE-0068: Expanding Swift `Self` to class members and value types](proposals/0068-universal-self.md)
163+
* [SE-0076: Add overrides taking an UnsafePointer source to non-destructive copying methods on UnsafeMutablePointer](proposals/0076-copying-to-unsafe-mutable-pointer-with-unsafe-pointer-source.md)
164+
* [SE-0080: Failable Numeric Conversion Initializers](proposals/0080-failable-numeric-initializers.md)
162165
* [SE-0082: Package Manager Editable Packages](proposals/0082-swiftpm-package-edit.md)
163166

164167
## Swift 2.2 - Released on March 21, 2016
@@ -195,6 +198,8 @@ as practical with Swift 2.0.
195198
* [SE-0024: Optional Value Setter `??=`](proposals/0024-optional-value-setter.md)
196199
* [SE-0027: Expose code unit initializers on String](proposals/0027-string-from-code-units.md)
197200
* [SE-0056: Allow trailing closures in `guard` conditions](proposals/0056-trailing-closures-in-guard.md)
201+
* [SE-0073: Marking closures as executing exactly once](proposals/0073-noescape-once.md)
202+
* [SE-0074: Implementation of Binary Search functions](proposals/0074-binary-search.md)
198203

199204
## Review
200205
[Swift Evolution Review Schedule](https://github.com/apple/swift-evolution/blob/master/schedule.md)

proposals/0060-defaulted-parameter-order.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
* Proposal: [SE-0060](0060-defaulted-parameter-order.md)
44
* Author: [Joe Groff](https://github.com/jckarter)
5-
* Status: **Active review May 3...9, 2016**
5+
* Status: **Accepted for Swift 3** ([Bug](https://bugs.swift.org/browse/SR-1489))
66
* Review manager: [Chris Lattner](http://github.com/lattner)
77

88
## Introduction

proposals/0073-noescape-once.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
* Proposal: [SE-0073](0073-noescape-once.md)
44
* Authors: [Félix Cloutier](https://github.com/zneak), [Gwendal Roué](https://github.com/groue)
5-
* Status: **Active review May 3...9, 2016**
5+
* Status: **Rejected for Swift 3**
66
* Review manager: [Chris Lattner](http://github.com/lattner)
77

88
## Introduction

proposals/0074-binary-search.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
* Proposal: [SE-0074](0074-binary-search.md)
44
* Authors: [Lorenzo Racca](https://github.com/lorenzoracca), [Jeff Hajewski](https://github.com/j-haj), [Nate Cook](https://github.com/natecook1000)
5-
* Status: **Active review May 3...9, 2016**
5+
* Status: **Rejected for Swift 3**
66
* Review manager: [Chris Lattner](http://github.com/lattner)
77

88
## Introduction

proposals/0076-copying-to-unsafe-mutable-pointer-with-unsafe-pointer-source.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
* Proposal: [SE-0076](0076-copying-to-unsafe-mutable-pointer-with-unsafe-pointer-source.md)
44
* Author: [Janosch Hildebrand](https://github.com/Jnosh)
5-
* Status: **Active review May 3...9, 2016**
5+
* Status: **Accepted with Revisions for Swift 3** ([Bug](https://bugs.swift.org/browse/SR-1490))
66
* Review manager: [Chris Lattner](http://github.com/lattner)
77

88
## Introduction

proposals/0080-failable-numeric-initializers.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
* Proposal: [SE-0080](0080-failable-numeric-initializers.md)
44
* Author: [Matthew Johnson](https://github.com/anandabits)
5-
* Status: **Active review May 3...9, 2016**
5+
* Status: **Accepted with Revisions for Swift 3** ([Bug](https://bugs.swift.org/browse/SR-1491))
66
* Review manager: [Chris Lattner](http://github.com/lattner)
77

88
## Introduction

schedule.md

-5
Original file line numberDiff line numberDiff line change
@@ -6,12 +6,7 @@ proposals in that process.
66

77
## Active reviews
88

9-
* May 3...9, 2016 [SE-0060: Enforcing order of defaulted parameters](proposals/0060-defaulted-parameter-order.md)
10-
* May 3...9, 2016 [SE-0073: Marking closures as executing exactly once](proposals/0073-noescape-once.md)
11-
* May 3...9, 2016 [SE-0074: Implementation of Binary Search functions](proposals/0074-binary-search.md)
12-
* May 3...9, 2016 [SE-0076: Add overrides taking an UnsafePointer source to non-destructive copying methods on UnsafeMutablePointer](proposals/0076-copying-to-unsafe-mutable-pointer-with-unsafe-pointer-source.md)
139
* May 3...9, 2016 [SE-0078: Implement a rotate algorithm, equivalent to std::rotate() in C++](proposals/0078-rotate-algorithm.md)
14-
* May 3...9, 2016 [SE-0080: Failable Numeric Conversion Initializers](proposals/0080-failable-numeric-initializers.md)
1510
* May 9...16, 2016 [SE-0086: Drop NS Prefix in Swift Foundation](proposals/0086-drop-foundation-ns.md)
1611
* May 10...16, 2016 [SE-0041: Updating Protocol Naming Conventions for Conversions](proposals/0041-conversion-protocol-conventions.md)
1712
* May 10...16, 2016 [SE-0075: Adding a Build Configuration Import Test](proposals/0075-import-test.md)

0 commit comments

Comments
 (0)