From 34434a02fefcbf975a2efff1672250f3c9e0ea8c Mon Sep 17 00:00:00 2001 From: zyd Date: Thu, 7 Jul 2022 11:46:59 +0900 Subject: [PATCH] release 0.6.0 --- README.md | 8 ++++---- setup.py | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 51a0878..3826f20 100644 --- a/README.md +++ b/README.md @@ -122,7 +122,7 @@ isinstance(clone, Obj) # True - [x] 0.1.2 compose - [ ] composeWith - [x] 0.1.2 concat -- [x] cond +- [x] 0.6.0 cond Please notice the number of given arguments should match functions. Otherwise Python will complain about the mis-matching arguments. @@ -162,7 +162,7 @@ fn = R.cond([ - [x] 0.1.2 curry - [x] 0.1.2 curryN - [ ] dec -- [x] defaultTo +- [x] 0.6.0 defaultTo - [ ] descend - [x] 0.1.2 difference - [x] 0.1.2 differenceWith @@ -566,7 +566,7 @@ R.propEq(1, 'v1', {'v1': 1}) # True ``` - [ ] propIs -- [x] propOr +- [x] 0.6.0 propOr - [x] 0.1.2 props - [ ] propSatisfies - [x] 0.1.2 range @@ -675,7 +675,7 @@ Partially supported - [ ] transduce - [ ] transpose - [ ] traverse -- [x] trim +- [x] 0.6.0 trim - [ ] tryCatch - [ ] type - [ ] unapply diff --git a/setup.py b/setup.py index c93b34c..a68880a 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.4.1", + version="0.6.0", # The packages that constitute your project. # For my project, I have only one - "pydash".