Release note for v0.1.2 release

Dropped integrations

The following features were dropped in recent versions of dataset and that is now reflected in py_dataset.

Dropped functions

Changed function names

Changes in return values

For functions that returned only an error message the return values have changed to True for success and False otherwise. You can retrieve the error text using the error_message() function. This was a simplification.

Old code shape

    err = dataset.init('things.ds')
    if err != '':
        print(err)

New code shape

    if dataset.init('things.ds') == False:
        print(dataset.error_message())

Changed functions include init(), create(), update(), delete(), detach(), prune(), join(), frame_reframe(), frame_refresh(),

Functions that returned a touple of object and err string will work the same as before (e.g. read(), read_list(), frame_objects()).