From dce636d4503fb032f5043df3e8ff6901d23136a4 Mon Sep 17 00:00:00 2001 From: justold <1188067+pwwang@users.noreply.github.com> Date: Thu, 10 Aug 2023 23:28:55 +0000 Subject: [PATCH] =?UTF-8?q?=F0=9F=94=96=200.13.0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- datar/__init__.py | 2 +- docs/CHANGELOG.md | 14 ++++++++++++++ pyproject.toml | 2 +- 3 files changed, 16 insertions(+), 2 deletions(-) diff --git a/datar/__init__.py b/datar/__init__.py index 9d26a1bf..0aba1407 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.12.2" +__version__ = "0.13.0" def get_versions(prnt: bool = True) -> _Mapping[str, str]: diff --git a/docs/CHANGELOG.md b/docs/CHANGELOG.md index a35c2c72..b09eea5f 100644 --- a/docs/CHANGELOG.md +++ b/docs/CHANGELOG.md @@ -1,5 +1,19 @@ # Change Log +## 0.13.0 + +- 👷 Add scripts for codesandbox +- 💥 Change the option for conflict names (#184) + + There is no more warning for conflict names (python reserved names). By default, those names are suffixed with `_` (ie `filter_` instead of `filter`). You can still use the original names by setting `allow_conflict_names` to `True` in `datar.options()`. + + ```python + from datar import options + options(allow_conflict_names=True) + from datar.all import * + filter # + ``` + ## 0.12.2 - ➕ Add pyarrow backend diff --git a/pyproject.toml b/pyproject.toml index e17ea5e6..0eba15e2 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "datar" -version = "0.12.2" +version = "0.13.0" description = "A Grammar of Data Manipulation in python" authors = ["pwwang "] license = "MIT"