Skip to content

Commit

Permalink
πŸ”– 0.13.0
Browse files Browse the repository at this point in the history
  • Loading branch information
pwwang committed Aug 10, 2023
1 parent 82eb12f commit dce636d
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 2 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.12.2"
__version__ = "0.13.0"


def get_versions(prnt: bool = True) -> _Mapping[str, str]:
Expand Down
14 changes: 14 additions & 0 deletions docs/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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 # <function datar.dplyr.filter_ at 0x7f62303c8940>
```

## 0.12.2

- βž• Add pyarrow backend
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -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 <[email protected]>"]
license = "MIT"
Expand Down

0 comments on commit dce636d

Please sign in to comment.