Skip to content

Commit

Permalink
v0.3.3 - fix distribution metadata
Browse files Browse the repository at this point in the history
  • Loading branch information
apjanke committed Jan 28, 2020
1 parent a2d363f commit d8dae04
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 18 deletions.
4 changes: 3 additions & 1 deletion CHANGES.txt
Original file line number Diff line number Diff line change
@@ -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)
-----------------------------

Expand Down
4 changes: 2 additions & 2 deletions DESCRIPTION
Original file line number Diff line number Diff line change
@@ -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 <floss@apjanke.net>
Maintainer: Andrew Janke <floss@apjanke.net>
Expand Down
29 changes: 14 additions & 15 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
Tablicious for GNU Octave
=========================
# Tablicious for GNU Octave

Tablicious provides tabular data structures for Octave.

Expand All @@ -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.

Expand All @@ -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
```

Expand Down

0 comments on commit d8dae04

Please sign in to comment.