Skip to content
This repository has been archived by the owner on Nov 24, 2021. It is now read-only.

Releases: 3lvis/DATAStack

DATAStack — 4.2.4

21 Apr 12:42
Compare
Choose a tag to compare
  • Clean up a few forced unwrapped optionals

DATAStack — 4.2.3

14 Apr 12:10
Compare
Choose a tag to compare
  • Add support for Carthage

DATAStack — 4.2.2

12 Apr 08:48
Compare
Choose a tag to compare
  • Fix TestCheck failing under Xcode 7.3 (possibly because UI tests being enabled)

Thanks @wh33ler, you rock!

DATAStack — 4.2.1

23 Mar 08:59
Compare
Choose a tag to compare
  • Updated for Swift 2.2
  • Removed TestCheck dependency

DATAStack — 4.2.0

04 Mar 10:30
Compare
Choose a tag to compare
  • #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

08 Feb 12:39
Compare
Choose a tag to compare
  • Added support for having your data stores with different names, before if your model was Model.momd then your data store would have been Model.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

11 Nov 13:58
Compare
Choose a tag to compare
  • Update TestCheck dependency

DATAStack — 4.0.2

03 Nov 14:07
Compare
Choose a tag to compare
  • Fix crash when running on Apple TV

DATAStack — 4.0.1

21 Oct 13:52
Compare
Choose a tag to compare
  • 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

19 Oct 19:50
Compare
Choose a tag to compare
  • 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