Skip to content

Commit 74a4786

Browse files
Release 0.1.2 (#15)
1 parent f862163 commit 74a4786

3 files changed

Lines changed: 17 additions & 2 deletions

File tree

CHANGELOG.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,21 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8+
## [v0.1.2](https://github.com/dashbitco/table/tree/v0.1.2) (2022-06-29)
9+
10+
### Added
11+
12+
* Support for custom metadata in `Table.Reader.init/1`, it is now advised to include `:count` if available ([#8](https://github.com/dashbitco/table/pull/8))
13+
* Support for passing the result of `Table.Reader.init/1` as an argument in `to_rows/2` and `to_columns/2` ([#12](https://github.com/dashbitco/table/pull/12))
14+
15+
### Changed
16+
17+
* The result of `to_rows/2` to retain enumeration properties (counting/slicing) of the underlying data ([#9](https://github.com/dashbitco/table/pull/9), [#14](https://github.com/dashbitco/table/pull/14))
18+
19+
### Deprecated
20+
21+
* The `to_rows_with_info/2` and `to_columns_with_info/2` functions in favour of using `Table.Reader.init/1` directly ([#12](https://github.com/dashbitco/table/pull/12))
22+
823
## [v0.1.1](https://github.com/dashbitco/table/tree/v0.1.1) (2022-05-04)
924

1025
### Changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ You can add the `:table` dependency to your `mix.exs`:
1212
```elixir
1313
def deps do
1414
[
15-
{:table, "~> 0.1.1"}
15+
{:table, "~> 0.1.2"}
1616
]
1717
end
1818
```

mix.exs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
defmodule Table.MixProject do
22
use Mix.Project
33

4-
@version "0.1.1"
4+
@version "0.1.2"
55
@description "Unified access to tabular data"
66

77
def project do

0 commit comments

Comments
 (0)