Skip to content

[SE-0137] Update status, add mailing list threads #505

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Aug 20, 2016
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion proposals.xml
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,7 @@ just loads it via JavaScript. Hence, the following declaration isn't used.
<proposal id="0134" status="implemented" swift-version="3" name="Rename two UTF8-related properties on String" filename="0134-rename-string-properties.md"/>
<proposal id="0135" status="implemented" swift-version="3" name="Package Manager Support for Differentiating Packages by Swift version" filename="0135-package-manager-support-for-differentiating-packages-by-swift-version.md"/>
<proposal id="0136" status="implemented" swift-version="3" name="Memory Layout of Values" filename="0136-memory-layout-of-values.md"/>
<proposal id="0137" status="accepted" name="Avoiding Lock-In to Legacy Protocol Designs" filename="0137-avoiding-lock-in.md"/>
<proposal id="0137" status="implemented" swift-version="3" name="Avoiding Lock-In to Legacy Protocol Designs" filename="0137-avoiding-lock-in.md"/>

<!--
Recognized values for a proposal's status:
Expand Down
5 changes: 3 additions & 2 deletions proposals/0137-avoiding-lock-in.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,14 +3,15 @@
* Proposal: [SE-0137](0137-avoiding-lock-in.md)
* Author: [Dave Abrahams](https://github.com/dabrahams), [Dmitri Gribenko](https://github.com/gribozavr)
* Review Manager: [John McCall](https://github.com/rjmccall)
* Status: **Accepted**
* Status: **Implemented (Swift 3)**
* Decision Notes: [Rationale](https://lists.swift.org/pipermail/swift-evolution/Week-of-Mon-20160815/026300.html)

## Introduction

We propose to deprecate or move protocols that shouldn't be a part of
the standard library's public API going forward.

Swift-evolution thread: [Discussion thread topic for that proposal](https://lists.swift.org/pipermail/swift-evolution/)
Swift-evolution threads: [Late Pitch](https://lists.swift.org/pipermail/swift-evolution/Week-of-Mon-20160808/026071.html), [Review](https://lists.swift.org/pipermail/swift-evolution/Week-of-Mon-20160808/026103.html)

## Motivation

Expand Down