Skip to content

Commit

Permalink
Merge pull request #129 from zydmayday/release-0.2.0
Browse files Browse the repository at this point in the history
release 0.2.0
  • Loading branch information
zydmayday authored Jun 6, 2022
2 parents 823d1da + 7b0c550 commit ea3c0a9
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ R.add(date(1,2,3), date(1,2,3)) # float('nan)
- [ ] ascend
- [ ] assoc
- [ ] assocPath
- [x] binary
- [x] 0.2.0 binary
- [ ] bind
- [ ] both
- [ ] call
Expand Down Expand Up @@ -276,7 +276,7 @@ R.keys(c) # ['c'], because c does not call super().__init__()
R.keys({'a': 1, 'b': 2}) # ['a', 'b']
```

- [x] keysIn
- [x] 0.2.0 keysIn

Different from `keys`, `keysIn` will return all attributes of the object, including super class attributes and class static variables.

Expand Down Expand Up @@ -365,7 +365,7 @@ Python modulo on negative numbers has different behavior than JS.

- [ ] move
- [x] 0.1.2 multiply
- [x] nAry
- [x] 0.2.0 nAry
- [ ] negate
- [ ] none
- [x] 0.1.2 not
Expand Down Expand Up @@ -540,7 +540,7 @@ Partially supported
- [ ] tryCatch
- [ ] type
- [ ] unapply
- [x] unary
- [x] 0.2.0 unary
- [ ] uncurryN
- [ ] unfold
- [x] 0.1.2 union
Expand All @@ -567,7 +567,7 @@ R.values(obj) # [1, 2]
R.values({'a': 1, 'b': 2}) # [1, 2]
```

- [x] valuesIn
- [x] 0.2.0 valuesIn

Use `R.keysIn` to get the keys of an object.

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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.1.4",
version="0.2.0",

# The packages that constitute your project.
# For my project, I have only one - "pydash".
Expand Down

0 comments on commit ea3c0a9

Please sign in to comment.