gota v0.3.0 Release Notes

Release Date: 2016-02-18 // about 8 years ago
  • โž• Added in 0.3.0

    • Getter and setter methods for the column names of a DataFrame
    • Bool column type has been made available
    • ๐Ÿ†• New Bool() interface
    • A column now can now if any of it's elements is NA and a list of said NA elements ([]bool).

    ๐Ÿ”„ Changed in 0.3.0

    • ๐Ÿ“‡ Renamed cell interface elements to be more idiomatic:
      • ToInteger() is now Int()
      • ToFloat() is now Float()
    • The cell interface has changed. Int() and Float() now return pointers instead of values to prevent future conflicts when returning an error.
    • The cell interface has changed. Checksum() [16]byte added.
    • Using cell.Checksum() for identification of unique elements instead of raw strings.
    • The cell interface has changed, now also requires ToBool() method.
    • String type now does not contain a string, but a pointer to a string.

    ๐Ÿ›  Fixed in 0.3.0

    • ๐Ÿ“œ Bool type constructor function Bools now parses bool and []bool elements correctly.
    • ๐Ÿ“œ Int type constructor function Ints now parses bool and []bool elements correctly.
    • ๐Ÿ“œ Float type constructor function Floats now parses bool and []bool elements correctly.
    • ๐Ÿ“œ String type constructor function Strings now parses bool and []bool elements correctly.