Skip to content

Commit

Permalink
πŸ”– 0.14.0
Browse files Browse the repository at this point in the history
  • Loading branch information
pwwang committed Oct 7, 2023
1 parent 8cd090b commit f75a4cb
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 5 deletions.
2 changes: 1 addition & 1 deletion datar/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
from .core.defaults import f
from .core.options import options, get_option, options_context

__version__ = "0.13.1"
__version__ = "0.14.0"


def get_versions(prnt: bool = True) -> _Mapping[str, str]:
Expand Down
11 changes: 11 additions & 0 deletions docs/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,16 @@
# Change Log

## 0.14.0

- ⬆️ Bump pipda to 0.13
- 🍱 Support dplyr up to 1.1.3
- πŸ‘½οΈ Align `rows_*()` verbs to align with dplyr 1.1.3 (#188)
- πŸ”§ Update pyproject.toml to generate setup.py for poetry

## 0.13.1

- 🎨 Allow `datar.all.filter` regardless of `allow_conflict_names` (#184)

## 0.13.0

- πŸ‘· Add scripts for codesandbox
Expand Down
8 changes: 4 additions & 4 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "datar"
version = "0.13.1"
version = "0.14.0"
description = "A Grammar of Data Manipulation in python"
authors = ["pwwang <pwwang@pwwang.com>"]
license = "MIT"
Expand All @@ -13,10 +13,10 @@ python = "^3.8"
simplug = "^0.3"
pipda = "^0.13"
python-simpleconf = {version = "^0.6", extras = ["toml"]}
datar-numpy = {version = "^0.2", optional = true}
datar-pandas = {version = "^0.3", optional = true}
datar-numpy = {version = "^0.3", optional = true}
datar-pandas = {version = "^0.4", optional = true}
# datar-polars = {version = "^0.0.0", optional = true}
datar-arrow = {version = "^0.0", optional = true}
datar-arrow = {version = "^0.1", optional = true}

[tool.poetry.build]
generate-setup-file = true
Expand Down

0 comments on commit f75a4cb

Please sign in to comment.