From 96a08d859c8cb46a6b6318dc8b216bc9b04b4dc0 Mon Sep 17 00:00:00 2001 From: zyd Date: Thu, 23 Jun 2022 14:36:13 +0900 Subject: [PATCH] release 0.4.0 --- README.md | 8 ++++---- setup.py | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 28185e9..084d035 100644 --- a/README.md +++ b/README.md @@ -123,8 +123,8 @@ isinstance(clone, Obj) # True - [ ] composeWith - [x] 0.1.2 concat - [ ] cond -- [x] construct -- [x] constructN +- [x] 0.4.0 construct +- [x] 0.4.0 constructN - [x] 0.1.4 converge - [ ] count - [x] 0.1.2 countBy @@ -590,7 +590,7 @@ R.subtract(date(1,2,3), date(1,2,3)) # float('nan) - [ ] thunkify - [x] 0.1.4 times - [ ] toLower -- [x] toPairs +- [x] 0.4.0 toPairs ```python R.toPairs({'a': 1, 'b': 2}) # [['a', 1], ['b', 2]] @@ -612,7 +612,7 @@ b = B('v2', 'v4') R.toPairs(b) # [['v2', 'v2'], ['v4', 'v4']] ``` -- [x] toPairsIn +- [x] 0.4.0 toPairsIn ```python R.toPairsIn({'a': 1, 'b': 2}) # [['a', 1], ['b', 2]] diff --git a/setup.py b/setup.py index 7b7a869..301c2e1 100644 --- a/setup.py +++ b/setup.py @@ -21,7 +21,7 @@ # eg: 1.0.0, 1.0.1, 3.0.2, 5.0-beta, etc. # You CANNOT upload two versions of your package with the same version number # This field is REQUIRED - version="0.3.0", + version="0.4.0", # The packages that constitute your project. # For my project, I have only one - "pydash".