From f75a4cbac63970fcbbc0b44f438f59415a5af566 Mon Sep 17 00:00:00 2001 From: pwwang Date: Sat, 7 Oct 2023 18:37:28 -0500 Subject: [PATCH] =?UTF-8?q?=F0=9F=94=96=200.14.0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- datar/__init__.py | 2 +- docs/CHANGELOG.md | 11 +++++++++++ pyproject.toml | 8 ++++---- 3 files changed, 16 insertions(+), 5 deletions(-) diff --git a/datar/__init__.py b/datar/__init__.py index 84dd86ae..d5503973 100644 --- a/datar/__init__.py +++ b/datar/__init__.py @@ -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]: diff --git a/docs/CHANGELOG.md b/docs/CHANGELOG.md index b09eea5f..d02f45c5 100644 --- a/docs/CHANGELOG.md +++ b/docs/CHANGELOG.md @@ -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 diff --git a/pyproject.toml b/pyproject.toml index 8e97fac2..d0d7059e 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -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 "] license = "MIT" @@ -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