Skip to content

v1.4.0

Compare
Choose a tag to compare
@mpsonntag mpsonntag released this 19 Sep 11:59
· 11 commits to v1.4 since this release
  • With this release, the nix Matlab bindings can be considered nix v1.4 feature complete.

  • API breaking change: All method names on the Matlab side are converted from snake case to camel case.

  • API breaking change: The following method names have been changed:

      v1.3                                v1.4
      -----------------------------------------------------------
      File.find_filtered_sections         File.filterFindSections
      Block.get_group                     Block.openGroup
      Block.data_array                    Block.openDataArray
      Block.find_filtered_sources         Block.filterFindSources
      DataArray.read_all                  DataArray.readAllData
      DataArray.write_all                 DataArray.writeAllData
      Group.get_tag                       Group.openTag
      Group.get_multi_tag                 Group.openMultiTag
      Source.find_filtered_sources        Source.filterFindSources
      Tag.add_feature                     Tag.createFeature
      MultiTag.add_positions              MultiTag.setPositions
      Section.find_filtered_sections      Section.filterFindSections
      Property.values_delete              Property.deleteValues
    
  • API breaking change: The following features have been removed from the API and are no longer available:

      Section.mapping
      Property.mapping
      Value.checksum
      Value.encoder
      Value.filename
      Value.reference
    
  • API breaking change: replaced allProperties and allPropertiesMap with properties.

  • The release adds documentation and basic usage examples for all classes and methods.