All Versions
16
Latest Version
Avg Release Cycle
101 days
Latest Release
1865 days ago
Changelog History
Page 1
Changelog History
Page 1
-
v3.2 Changes
February 17, 2020๐ Changed
- โก๏ธ Update Package.swift to latest syntax, fix Xcode 11.3 warnings (PR #54)
-
v3.1.1 Changes
October 13, 2018 -
v3.1 Changes
March 14, 2018โ Added
- ๐ Support custom comparator function for comparing collection elements (defaults to
==
)
- ๐ Support custom comparator function for comparing collection elements (defaults to
-
v3.0 Changes
November 03, 2017๐ Changed
- โก๏ธ Update to Swift 4; most noticeably,
String
is now aCollection
- ๐ Make
Edit
a subtype ofChangeset
so that it inherits the same generic constraints - ๐ Make
Operation
a subtype ofEdit
- ๐ Use offsets on changeset collections, as opposed to indices
- ๐ Use labels on all initializer parameters (per Swift convention)
- โ 100% code coverage on unit tests
- โก๏ธ Update to Swift 4; most noticeably,
-
v2.1.2 Changes
March 27, 2017- ๐ Fixed
- Reduce space complexity to O(m)
- Expand variable names for readability
- ๐ Fixed
-
v2.1.1 Changes
March 21, 2017๐ Fixed
- ๐ Allow Changeset to be used from within a framework, and outside of an application target.
-
v2.1 Changes
November 23, 2016- โ Added
- UIKit extensions for
UITableView
andUICollectionView
for easy updating (were previously only included in the test app)
- UIKit extensions for
- โ Added
-
v2.0.1 Changes
October 20, 2016- ๐ Changed
- Framework target set to automatically manage code signing.
- ๐ Changed
-
v2.0 Changes
October 12, 2016- ๐ Changed
- Project defaults to Swift 3 (use the
swift-2
tag to stay on Swift 2). - Renamed
editDistance(source:target:)
onChangeset
to the Swift 3-friendlyedits(from:to:)
. - Updated Quick Help documentation slightly.
- Project defaults to Swift 3 (use the
- ๐ Changed
-
v1.0.6 Changes
October 12, 2016- โ Added
- Support tvOS.
- โ Added