This repository has been archived by the owner on Nov 24, 2021. It is now read-only.
Releases: 3lvis/DATAStack
Releases · 3lvis/DATAStack
DATAStack — 4.2.4
- Clean up a few forced unwrapped optionals
DATAStack — 4.2.3
- Add support for Carthage
DATAStack — 4.2.2
- Fix TestCheck failing under Xcode 7.3 (possibly because UI tests being enabled)
Thanks @wh33ler, you rock!
DATAStack — 4.2.1
- Updated for Swift 2.2
- Removed TestCheck dependency
DATAStack — 4.2.0
- #34 included a nice change but sadly introduced a performance decrease for projects with Several Core Data Models, this release aims to fix the performance decrease while keeping the same functionality.
DATAStack — 4.1.0
- Added support for having your data stores with different names, before if your model was
Model.momd
then your data store would have beenModel.sqlite
. This one comes thanks to @gfpacheco 👏 👏! #32
Use the following initalizer to make use of this feature:
public init(modelName: String, bundle: NSBundle, storeType: DATAStackStoreType, storeName: String)
- Added support for versioning out of the box, and also fix a crash when there is no
.momd
file but a single.mom
file. #34
Thanks again @stephanecopin, kicking ass 👊
DATAStack — 4.0.3
- Update TestCheck dependency
DATAStack — 4.0.2
- Fix crash when running on Apple TV
DATAStack — 4.0.1
- Improved support for multiple platforms
Previously on 4.0.0
- Rewritten in Swift
Breaking changes
- Now you should use modules, so instead of
#import "DATASource.h
you would do@import DATASource;
use_frameworks!
pod 'DATAStack'
- Renamed Enum + Improved Swift compatibility
Objective-C:
DATAStackInMemoryStoreType => DATAStackStoreTypeInMemory
DATAStackSQLiteStoreType => DATAStackStoreTypeSQLite
Swift:
DATAStackInMemoryStoreType => .InMemory
DATAStackSQLiteStoreType => .SQLite
DATAStack — 4.0.0
- Rewritten in Swift
Breaking changes
- Now you should use modules, so instead of
#import "DATASource.h
you would do@import DATASource;
use_frameworks!
pod 'DATAStack'
- Renamed Enum + Improved Swift compatibility
Objective-C:
DATAStackInMemoryStoreType => DATAStackStoreTypeInMemory
DATAStackSQLiteStoreType => DATAStackStoreTypeSQLite
Swift:
DATAStackInMemoryStoreType => .InMemory
DATAStackSQLiteStoreType => .SQLite