rambda 7.1.0 → 7.1.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -1,3 +1,7 @@
1
+ 7.1.1
2
+
3
+ `R.mergeRight` not found on `Deno` import - [Issue #633](https://github.com/selfrefactor/rambda/issues/633)
4
+
1
5
  7.1.0
2
6
 
3
7
  - Add `R.mergeRight` - introduced by Ramda's latest release. While Ramda renames `R.merge`, Rambda will keep `R.merge`.
package/README.md CHANGED
@@ -18413,6 +18413,10 @@ describe('R.zipWith', () => {
18413
18413
 
18414
18414
  ## ❯ CHANGELOG
18415
18415
 
18416
+ 7.1.1
18417
+
18418
+ `R.mergeRight` not found on `Deno` import - [Issue #633](https://github.com/selfrefactor/rambda/issues/633)
18419
+
18416
18420
  7.1.0
18417
18421
 
18418
18422
  - Add `R.mergeRight` - introduced by Ramda's latest release. While Ramda renames `R.merge`, Rambda will keep `R.merge`.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "rambda",
3
- "version": "7.1.0",
3
+ "version": "7.1.1",
4
4
  "scripts": {
5
5
  "populatedocs": "cd ../rambda-scripts && yarn populate:docs",
6
6
  "populatedocs:x": "cd ../rambda-scripts && yarn populate:docs:rambdax",
package/src/merge.js CHANGED
@@ -1 +1 @@
1
- export {mergeRight as merge} from './mergeRight'
1
+ export {mergeRight as merge} from './mergeRight.js'