diff --git a/CHANGES.txt b/CHANGES.txt index 655c7c36..d7904ac0 100644 --- a/CHANGES.txt +++ b/CHANGES.txt @@ -1,9 +1,11 @@ Tablicious Changelog ==================== -Version ??? (???) +Version 0.3.3 (2020-01-28) ----------------------------- +* Fix version metadata in the distribution + Version 0.3.2 (2020-01-28) ----------------------------- diff --git a/DESCRIPTION b/DESCRIPTION index 1c1ea73c..976996bb 100644 --- a/DESCRIPTION +++ b/DESCRIPTION @@ -1,6 +1,6 @@ Name: tablicious -Version: 0.3.2 -Date: 2020-01-27 +Version: 0.3.3 +Date: 2020-01-28 Title: Tablicious - Tabular/Relational data for Octave Author: Andrew Janke Maintainer: Andrew Janke diff --git a/README.md b/README.md index d4030cf7..fe6fd008 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,4 @@ -Tablicious for GNU Octave -========================= +# Tablicious for GNU Octave Tablicious provides tabular data structures for Octave. @@ -9,20 +8,20 @@ Tablicious provides tabular data structures for Octave. This package attempts to provide a set of mostly-Matlab-compatible implementation of the table class and related structures and functions. It provides: - * `table` and related construction/conversion functions - * Missing Data support - * `ismissing` and friends: `rmmissing`, `standardizeMissing` - * `@missing` - * `fillmissing` is not implemented yet, because that requires some actual math. - * `eqn` and `isnannish` - * These are experimental Octave extensions for dealing with NaN-like values. They are used by `table`, `ismissing`, and friends, but should be generally useful, and need to be global so they can be overridden by user-defined classes. - * `string` - * `categorical` +* `table` and related construction/conversion functions +* Missing Data support + * `ismissing` and friends: `rmmissing`, `standardizeMissing` + * `@missing` + * `fillmissing` is not implemented yet, because that requires some actual math. +* `eqn` and `isnannish` + * These are experimental Octave extensions for dealing with NaN-like values. They are used by `table`, `ismissing`, and friends, but should be generally useful, and need to be global so they can be overridden by user-defined classes. +* `string` +* `categorical` It currently does not provide, but we would like to add: - * `timetable` - * Table I/O, such as `readtable`, `writetable`, and `csvread`/`dlmread` `table` support +* `timetable` +* Table I/O, such as `readtable`, `writetable`, and `csvread`/`dlmread` `table` support The `string` and `categorical` support are incomplete, and less mature than the rest of the package. @@ -32,8 +31,8 @@ The `string` and `categorical` support are incomplete, and less mature than the To get started using or testing this project, install it using Octave's `pkg` function: -``` -pkg install https://github.com/apjanke/octave-tablicious/releases/download/v0.3.1/tablicious-0.3.1.tar.gz +```octave +pkg install https://github.com/apjanke/octave-tablicious/releases/download/v0.3.3/tablicious-0.3.3.tar.gz pkg load tablicious ```