From c6f551d5faf9f2d970b64b21e77e89ba7c80824f Mon Sep 17 00:00:00 2001 From: pwwang Date: Wed, 28 Apr 2021 14:07:27 -0700 Subject: [PATCH] 0.0.2 --- datar/__init__.py | 2 +- docs/CHANGELOG.md | 2 ++ pyproject.toml | 2 +- setup.py | 2 +- 4 files changed, 5 insertions(+), 3 deletions(-) diff --git a/datar/__init__.py b/datar/__init__.py index dcf239f8..d37d98fb 100644 --- a/datar/__init__.py +++ b/datar/__init__.py @@ -3,4 +3,4 @@ from .core import operator as _datar_operator from .core.defaults import f -__version__ = '0.0.1' +__version__ = '0.0.2' diff --git a/docs/CHANGELOG.md b/docs/CHANGELOG.md index e69de29b..1da76ff9 100644 --- a/docs/CHANGELOG.md +++ b/docs/CHANGELOG.md @@ -0,0 +1,2 @@ +## 0.0.2 +- Port verbs and functions from tidyverse/dplyr and test them with original cases diff --git a/pyproject.toml b/pyproject.toml index 16002fc2..097d04f4 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "datar" -version = "0.0.1" +version = "0.0.2" description = "Probably the closest port of tidyr, dplyr and tibble in python" authors = ["pwwang "] license = "MIT" diff --git a/setup.py b/setup.py index 27c579a3..166cdc71 100644 --- a/setup.py +++ b/setup.py @@ -15,7 +15,7 @@ setup( long_description=readme, name='datar', - version='0.0.1', + version='0.0.2', description='Probably the closest port of tidyr, dplyr and tibble in python', python_requires='==3.*,>=3.7.1', author='pwwang',