Changed - https://github.com/evinism/mistql/pull/182, https://github.com/evinism/mistql/pull/181 Bumped many dependencies to latest versions. - https://github.com/evinism/mistql/pull/183 Removed EOL'd Python3.7 support.
0.4.11
Changed - https://github.com/evinism/mistql/pull/161 Established `null` as unsortable.
Fixed - https://github.com/evinism/mistql/pull/161 Made uncomparable types uncomparable when using `<`, `>`, `<=`, and `>=`, as before behavior was platform-specific.
0.4.10
Added - https://github.com/evinism/mistql/pull/149 Tests establishing expected behavior for unicode characters and indexing.
Changed - https://github.com/evinism/mistql/pull/150 Modified JS implementation `#index` and `split` functions to match the expected unicode behavior as established above.
Fixed - https://github.com/evinism/mistql/pull/152 Allowed numbers to end in bare decimal points - https://github.com/evinism/mistql/pull/158 Dramatically improved JS parser and lexer performance. - https://github.com/evinism/mistql/pull/157 Dramatically improved indexing performance on unicode strings.
0.4.9
Added - https://github.com/evinism/mistql/pull/135 Tests establishing expected behavior for sorting a single-element array with an unsortable function.
Changed - https://github.com/evinism/mistql/pull/135 Made it so that sorting single-element arrays with unsortable contents in Python and Javascript implementations.
Fixed - https://github.com/evinism/mistql/pull/136 Resolves issue wherein we were able to return non-external values in JS if the values were nested within an array or object. - https://github.com/evinism/mistql/pull/142 Resolves broken behavior for piping to functions that use the $ variable, e.g. `[] | $.count`