Skip to content

Commit 892f7e7

Browse files
committed
chore: Bump version and update changelog.
1 parent 42c02ff commit 892f7e7

4 files changed

Lines changed: 8 additions & 6 deletions

File tree

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
# Revision history for dataframe
22

3+
## 0.3.3.6
4+
* Fix bug where doubles were parsing as ints
5+
* Fix bugs where optionals were left in boxed column (instead of optionals)
6+
* Change syntax for conditional operations so it doesn't clash with regular operations.
7+
38
## 0.3.3.5
49
* Fix parsing logic for doubles. Entire parsing logic is still a work in progress.
510
* Speed up index selection by using backPermute.

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,4 +31,4 @@ A fast, safe, and intuitive DataFrame library.
3131
* Designed for interactivity: expressive syntax, helpful error messages, and sensible defaults.
3232
* Works seamlessly in both command-line and notebook environments—great for exploration and scripting alike.
3333

34-
For an installation guide and tutorials checkout the [project documentation](https://dataframe.readthedocs.io/) and for an API reference checkout the [hackage documentation](https://hackage-content.haskell.org/package/dataframe-0.3.3.5/docs/DataFrame.html).
34+
For an installation guide and tutorials checkout the [project documentation](https://dataframe.readthedocs.io/) and for an API reference checkout the [hackage documentation](https://hackage-content.haskell.org/package/dataframe-0.3.3.6/docs/DataFrame.html).

dataframe-persistent/dataframe-persistent.cabal

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -55,18 +55,15 @@ test-suite dataframe-persistent-tests
5555
build-depends: base >= 4 && < 5,
5656
dataframe ^>= 0.3,
5757
dataframe-persistent,
58-
-- directory >= 1.3.0.0 && < 2,
5958
HUnit ^>= 1.6,
6059
monad-logger >= 0.3 && < 0.4,
6160
persistent >= 2.14 && < 3,
6261
persistent-sqlite >= 2.13 && < 3,
63-
-- persistent-template >= 2.12 && < 3,
6462
resourcet >= 0.1 && < 2,
6563
temporary >= 1.3 && < 2,
6664
text >= 2.0 && < 3,
6765
time >= 1.12 && < 2,
6866
transformers >= 0.5 && < 0.7,
69-
vector ^>= 0.13,
70-
-- unliftio-core >= 0.2 && < 0.3
67+
vector ^>= 0.13
7168
hs-source-dirs: tests
7269
default-language: Haskell2010

dataframe.cabal

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
cabal-version: 2.4
22
name: dataframe
3-
version: 0.3.3.5
3+
version: 0.3.3.6
44

55
synopsis: A fast, safe, and intuitive DataFrame library.
66

0 commit comments

Comments
 (0)