Skip to content

Commit

Permalink
Remove deprecated extensions
Browse files Browse the repository at this point in the history
  • Loading branch information
guykogus committed Oct 13, 2023
1 parent 42d1ca4 commit b2d91e7
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 203 deletions.
13 changes: 12 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,17 @@ The changelog for **SwifterSwift**. Also see the [releases](https://github.com/S
- **String**
- Reversed the parameters for the `~=` operator in order to not break the default implementation, which causes issues in `switch` statements, for example. [#1113](https://github.com/SwifterSwift/SwifterSwift/issues/1113) by [guykogus](https://github.com/guykogus)

### Removed
[#1145](https://github.com/SwifterSwift/SwifterSwift/issues/1145) by [guykogus](https://github.com/guykogus)
- **Array**:
- `sorted(by:ascending:)`, `sort(by:ascending:)`
- **Sequence**:
- `map(by:)`, `compactMap(by:)`, `filter(by:)`, `last(where:)`
- **String**
- `init(randomOfLength:)`
- **UIDatePicker**
- `textColor`

### Deprecated
- **String**
- `init(randomOfLength:)` deprecated in favor of `String.random(ofLength:)`. [#1115](https://github.com/SwifterSwift/SwifterSwift/issues/1115) by [guykogus](https://github.com/guykogus)
Expand Down Expand Up @@ -376,7 +387,7 @@ The changelog for **SwifterSwift**. Also see the [releases](https://github.com/S
### Deprecated

- **Array**:
- Deprecated `sorted(by:, ascending)` and `sort(by:ascending)` in favor of `sorted(by:with:)` and `sort(by:with:)` [#712](https://github.com/SwifterSwift/SwifterSwift/pull/712) by [LucianoPAlmeida](https://github.com/LucianoPAlmeida)
- Deprecated `sorted(by:ascending:)` and `sort(by:ascending:)` in favor of `sorted(by:with:)` and `sort(by:with:)` [#712](https://github.com/SwifterSwift/SwifterSwift/pull/712) by [LucianoPAlmeida](https://github.com/LucianoPAlmeida)

### Removed

Expand Down
116 changes: 0 additions & 116 deletions Sources/SwifterSwift/SwiftStdlib/Deprecated/StdlibDeprecated.swift

This file was deleted.

23 changes: 0 additions & 23 deletions Sources/SwifterSwift/SwiftStdlib/Deprecated/StringDeprecated.swift

This file was deleted.

23 changes: 0 additions & 23 deletions Sources/SwifterSwift/UIKit/Deprecated/UIDatePickerExtensions.swift

This file was deleted.

Loading

0 comments on commit b2d91e7

Please sign in to comment.