diff --git a/packages/array-cartesian-product/CHANGELOG.md b/packages/array-cartesian-product/CHANGELOG.md new file mode 100644 index 000000000..f781ddb98 --- /dev/null +++ b/packages/array-cartesian-product/CHANGELOG.md @@ -0,0 +1,6 @@ +# just-cartesian-product + +## 4.1.0 +### Minor Changes + +- package.json updates to fix #467 and #483 diff --git a/packages/array-cartesian-product/package.json b/packages/array-cartesian-product/package.json index 264901a59..65974eeee 100644 --- a/packages/array-cartesian-product/package.json +++ b/packages/array-cartesian-product/package.json @@ -1,6 +1,6 @@ { "name": "just-cartesian-product", - "version": "4.0.2", + "version": "4.1.0", "description": "Cartesian product of arrays", "main": "index.js", "module": "index.mjs", diff --git a/packages/array-compact/CHANGELOG.md b/packages/array-compact/CHANGELOG.md new file mode 100644 index 000000000..f705e1b5e --- /dev/null +++ b/packages/array-compact/CHANGELOG.md @@ -0,0 +1,6 @@ +# just-compact + +## 3.1.0 +### Minor Changes + +- package.json updates to fix #467 and #483 diff --git a/packages/array-compact/package.json b/packages/array-compact/package.json index a2bc57e11..9f7a1b795 100644 --- a/packages/array-compact/package.json +++ b/packages/array-compact/package.json @@ -1,6 +1,6 @@ { "name": "just-compact", - "version": "3.0.1", + "version": "3.1.0", "description": "returns a copy of an array with falsey values removed", "main": "index.js", "module": "index.mjs", diff --git a/packages/array-flatten/CHANGELOG.md b/packages/array-flatten/CHANGELOG.md new file mode 100644 index 000000000..4c91982f3 --- /dev/null +++ b/packages/array-flatten/CHANGELOG.md @@ -0,0 +1,6 @@ +# just-flatten-it + +## 5.1.0 +### Minor Changes + +- package.json updates to fix #467 and #483 diff --git a/packages/array-flatten/package.json b/packages/array-flatten/package.json index 7f90cc03e..1ddaec786 100644 --- a/packages/array-flatten/package.json +++ b/packages/array-flatten/package.json @@ -1,6 +1,6 @@ { "name": "just-flatten-it", - "version": "5.0.1", + "version": "5.1.0", "description": "return a flattened array", "main": "index.js", "module": "index.mjs", diff --git a/packages/array-group-by/CHANGELOG.md b/packages/array-group-by/CHANGELOG.md index 8384195fe..a69b60658 100644 --- a/packages/array-group-by/CHANGELOG.md +++ b/packages/array-group-by/CHANGELOG.md @@ -1,6 +1,13 @@ # just-group-by +## 2.1.0 + +### Minor Changes + +- package.json updates to fix #467 and #483 + ## 2.0.2 + ### Patch Changes - Improved TS definition diff --git a/packages/array-group-by/package.json b/packages/array-group-by/package.json index 2f0d9ba0c..e14731bbd 100644 --- a/packages/array-group-by/package.json +++ b/packages/array-group-by/package.json @@ -1,6 +1,6 @@ { "name": "just-group-by", - "version": "2.0.2", + "version": "2.1.0", "description": "return a grouped object from array", "main": "index.js", "module": "index.mjs", diff --git a/packages/array-index/CHANGELOG.md b/packages/array-index/CHANGELOG.md new file mode 100644 index 000000000..0d9734230 --- /dev/null +++ b/packages/array-index/CHANGELOG.md @@ -0,0 +1,6 @@ +# just-index + +## 4.1.0 +### Minor Changes + +- package.json updates to fix #467 and #483 diff --git a/packages/array-index/package.json b/packages/array-index/package.json index 4179ec5f7..5dff2e071 100644 --- a/packages/array-index/package.json +++ b/packages/array-index/package.json @@ -1,6 +1,6 @@ { "name": "just-index", - "version": "4.0.1", + "version": "4.1.0", "description": "return an object from an array, keyed by the value at the given id", "main": "index.js", "module": "index.mjs", diff --git a/packages/array-insert/CHANGELOG.md b/packages/array-insert/CHANGELOG.md new file mode 100644 index 000000000..2dc7f8f6c --- /dev/null +++ b/packages/array-insert/CHANGELOG.md @@ -0,0 +1,6 @@ +# just-insert + +## 3.1.0 +### Minor Changes + +- package.json updates to fix #467 and #483 diff --git a/packages/array-insert/package.json b/packages/array-insert/package.json index 810c069b8..7d00abbe1 100644 --- a/packages/array-insert/package.json +++ b/packages/array-insert/package.json @@ -1,6 +1,6 @@ { "name": "just-insert", - "version": "3.0.1", + "version": "3.1.0", "description": "Inserts a sub-array into an array starting at the given index. Returns a copy", "main": "index.js", "module": "index.mjs", diff --git a/packages/array-intersect/CHANGELOG.md b/packages/array-intersect/CHANGELOG.md index ba2774b9c..bb77bbe1c 100644 --- a/packages/array-intersect/CHANGELOG.md +++ b/packages/array-intersect/CHANGELOG.md @@ -1,5 +1,11 @@ # just-intersect +## 4.2.0 + +### Minor Changes + +- package.json updates to fix #467 and #483 + ## 4.1.1 ### Patch Changes diff --git a/packages/array-intersect/package.json b/packages/array-intersect/package.json index 79d6ff151..47c17af8d 100644 --- a/packages/array-intersect/package.json +++ b/packages/array-intersect/package.json @@ -1,6 +1,6 @@ { "name": "just-intersect", - "version": "4.1.1", + "version": "4.2.0", "description": "return the intersect of two arrays", "main": "index.js", "module": "index.mjs", diff --git a/packages/array-last/CHANGELOG.md b/packages/array-last/CHANGELOG.md new file mode 100644 index 000000000..c194929e1 --- /dev/null +++ b/packages/array-last/CHANGELOG.md @@ -0,0 +1,6 @@ +# just-last + +## 3.1.0 +### Minor Changes + +- package.json updates to fix #467 and #483 diff --git a/packages/array-last/package.json b/packages/array-last/package.json index af4070f3b..641d02798 100644 --- a/packages/array-last/package.json +++ b/packages/array-last/package.json @@ -1,6 +1,6 @@ { "name": "just-last", - "version": "3.0.1", + "version": "3.1.0", "description": "return the last member of an array", "main": "index.js", "module": "index.mjs", diff --git a/packages/array-mean/CHANGELOG.md b/packages/array-mean/CHANGELOG.md new file mode 100644 index 000000000..7801b70a0 --- /dev/null +++ b/packages/array-mean/CHANGELOG.md @@ -0,0 +1,6 @@ +# just-mean + +## 2.1.0 +### Minor Changes + +- package.json updates to fix #467 and #483 diff --git a/packages/array-mean/package.json b/packages/array-mean/package.json index 259c62243..eee567402 100644 --- a/packages/array-mean/package.json +++ b/packages/array-mean/package.json @@ -1,6 +1,6 @@ { "name": "just-mean", - "version": "2.0.1", + "version": "2.1.0", "description": "the mean (average) value in an array", "main": "index.js", "module": "index.mjs", diff --git a/packages/array-median/CHANGELOG.md b/packages/array-median/CHANGELOG.md new file mode 100644 index 000000000..3c53bd846 --- /dev/null +++ b/packages/array-median/CHANGELOG.md @@ -0,0 +1,6 @@ +# just-median + +## 2.1.0 +### Minor Changes + +- package.json updates to fix #467 and #483 diff --git a/packages/array-median/package.json b/packages/array-median/package.json index 94e2411f3..d11509a5d 100644 --- a/packages/array-median/package.json +++ b/packages/array-median/package.json @@ -1,6 +1,6 @@ { "name": "just-median", - "version": "2.0.1", + "version": "2.1.0", "description": "return the median value of an array of numbers", "main": "index.js", "module": "index.mjs", diff --git a/packages/array-mode/CHANGELOG.md b/packages/array-mode/CHANGELOG.md index 9a30e7da6..a55ff9ea6 100644 --- a/packages/array-mode/CHANGELOG.md +++ b/packages/array-mode/CHANGELOG.md @@ -1,6 +1,13 @@ # just-mode +## 2.1.0 + +### Minor Changes + +- package.json updates to fix #467 and #483 + ## 2.0.2 + ### Patch Changes - Types diff --git a/packages/array-mode/package.json b/packages/array-mode/package.json index bfbee0b75..97f786c3a 100644 --- a/packages/array-mode/package.json +++ b/packages/array-mode/package.json @@ -1,6 +1,6 @@ { "name": "just-mode", - "version": "2.0.2", + "version": "2.1.0", "description": "return the most frequently occuring number(s)", "main": "index.js", "module": "index.mjs", diff --git a/packages/array-partition/CHANGELOG.md b/packages/array-partition/CHANGELOG.md new file mode 100644 index 000000000..73bc78daf --- /dev/null +++ b/packages/array-partition/CHANGELOG.md @@ -0,0 +1,6 @@ +# just-partition + +## 2.1.0 +### Minor Changes + +- package.json updates to fix #467 and #483 diff --git a/packages/array-partition/package.json b/packages/array-partition/package.json index c0ea41ceb..93fb0d216 100644 --- a/packages/array-partition/package.json +++ b/packages/array-partition/package.json @@ -1,6 +1,6 @@ { "name": "just-partition", - "version": "2.0.1", + "version": "2.1.0", "description": "Elements satisfying predicate added to first array, remainder added to second", "main": "index.js", "module": "index.mjs", diff --git a/packages/array-percentile/CHANGELOG.md b/packages/array-percentile/CHANGELOG.md index 3767f78b4..1d17cd215 100644 --- a/packages/array-percentile/CHANGELOG.md +++ b/packages/array-percentile/CHANGELOG.md @@ -1,5 +1,11 @@ # just-percentile +## 4.1.0 + +### Minor Changes + +- package.json updates to fix #467 and #483 + ## 4.0.1 ### Patch Changes diff --git a/packages/array-percentile/package.json b/packages/array-percentile/package.json index 57af0dae7..afdef4520 100644 --- a/packages/array-percentile/package.json +++ b/packages/array-percentile/package.json @@ -1,6 +1,6 @@ { "name": "just-percentile", - "version": "4.0.1", + "version": "4.1.0", "description": "return the value at the given percentile (using linear interpolation)", "main": "index.js", "module": "index.mjs", diff --git a/packages/array-permutations/CHANGELOG.md b/packages/array-permutations/CHANGELOG.md new file mode 100644 index 000000000..a57733f67 --- /dev/null +++ b/packages/array-permutations/CHANGELOG.md @@ -0,0 +1,6 @@ +# just-permutations + +## 2.1.0 +### Minor Changes + +- package.json updates to fix #467 and #483 diff --git a/packages/array-permutations/package.json b/packages/array-permutations/package.json index ef38b9c8f..30cde52be 100644 --- a/packages/array-permutations/package.json +++ b/packages/array-permutations/package.json @@ -1,6 +1,6 @@ { "name": "just-permutations", - "version": "2.0.1", + "version": "2.1.0", "description": "Returns all permutations of the length N of the elements of the given Array", "main": "index.js", "module": "index.mjs", diff --git a/packages/array-random/CHANGELOG.md b/packages/array-random/CHANGELOG.md new file mode 100644 index 000000000..fbad36674 --- /dev/null +++ b/packages/array-random/CHANGELOG.md @@ -0,0 +1,6 @@ +# just-random + +## 3.1.0 +### Minor Changes + +- package.json updates to fix #467 and #483 diff --git a/packages/array-random/package.json b/packages/array-random/package.json index 1baf12d6e..09b515402 100644 --- a/packages/array-random/package.json +++ b/packages/array-random/package.json @@ -1,6 +1,6 @@ { "name": "just-random", - "version": "3.0.1", + "version": "3.1.0", "description": "return a randomly selected element in an array", "main": "index.js", "module": "index.mjs", diff --git a/packages/array-range/CHANGELOG.md b/packages/array-range/CHANGELOG.md new file mode 100644 index 000000000..3e960f29f --- /dev/null +++ b/packages/array-range/CHANGELOG.md @@ -0,0 +1,6 @@ +# just-range + +## 4.1.0 +### Minor Changes + +- package.json updates to fix #467 and #483 diff --git a/packages/array-range/package.json b/packages/array-range/package.json index 6fe2d3f18..f10cd515e 100644 --- a/packages/array-range/package.json +++ b/packages/array-range/package.json @@ -1,6 +1,6 @@ { "name": "just-range", - "version": "4.0.1", + "version": "4.1.0", "description": "Generate a range array for numbers", "main": "index.js", "module": "index.mjs", diff --git a/packages/array-remove/CHANGELOG.md b/packages/array-remove/CHANGELOG.md new file mode 100644 index 000000000..be7e0d73a --- /dev/null +++ b/packages/array-remove/CHANGELOG.md @@ -0,0 +1,6 @@ +# just-remove + +## 3.1.0 +### Minor Changes + +- package.json updates to fix #467 and #483 diff --git a/packages/array-remove/package.json b/packages/array-remove/package.json index e3a1a9fbf..bf7536df9 100644 --- a/packages/array-remove/package.json +++ b/packages/array-remove/package.json @@ -1,6 +1,6 @@ { "name": "just-remove", - "version": "3.0.1", + "version": "3.1.0", "description": "removes one array from another", "main": "index.js", "module": "index.mjs", diff --git a/packages/array-shuffle/CHANGELOG.md b/packages/array-shuffle/CHANGELOG.md new file mode 100644 index 000000000..f7602b82f --- /dev/null +++ b/packages/array-shuffle/CHANGELOG.md @@ -0,0 +1,6 @@ +# just-shuffle + +## 4.1.0 +### Minor Changes + +- package.json updates to fix #467 and #483 diff --git a/packages/array-shuffle/package.json b/packages/array-shuffle/package.json index 012f4c444..aa75c4071 100644 --- a/packages/array-shuffle/package.json +++ b/packages/array-shuffle/package.json @@ -1,6 +1,6 @@ { "name": "just-shuffle", - "version": "4.0.1", + "version": "4.1.0", "description": "return the elements of an array in random order", "main": "index.js", "module": "index.mjs", diff --git a/packages/array-skewness/CHANGELOG.md b/packages/array-skewness/CHANGELOG.md index 9ac65d3d1..2a0c17838 100644 --- a/packages/array-skewness/CHANGELOG.md +++ b/packages/array-skewness/CHANGELOG.md @@ -1,6 +1,13 @@ # just-skewness +## 2.1.0 + +### Minor Changes + +- package.json updates to fix #467 and #483 + ## 2.0.2 + ### Patch Changes - Types diff --git a/packages/array-skewness/package.json b/packages/array-skewness/package.json index e13db0ad7..606e7c298 100644 --- a/packages/array-skewness/package.json +++ b/packages/array-skewness/package.json @@ -1,6 +1,6 @@ { "name": "just-skewness", - "version": "2.0.2", + "version": "2.1.0", "description": "return the skewness of an array or numeric argument list using Pearson's second skewness coefficient", "main": "index.js", "module": "index.mjs", diff --git a/packages/array-sort-by/CHANGELOG.md b/packages/array-sort-by/CHANGELOG.md index 6a7174c9e..708b86511 100644 --- a/packages/array-sort-by/CHANGELOG.md +++ b/packages/array-sort-by/CHANGELOG.md @@ -1,6 +1,13 @@ # just-sort-by +## 3.1.0 + +### Minor Changes + +- package.json updates to fix #467 and #483 + ## 3.0.2 + ### Patch Changes - README fix diff --git a/packages/array-sort-by/package.json b/packages/array-sort-by/package.json index 45dda9eb7..26c943163 100644 --- a/packages/array-sort-by/package.json +++ b/packages/array-sort-by/package.json @@ -1,6 +1,6 @@ { "name": "just-sort-by", - "version": "3.0.2", + "version": "3.1.0", "description": "Produces a new array, sorted in ascending order", "main": "index.js", "module": "index.mjs", diff --git a/packages/array-split-at/CHANGELOG.md b/packages/array-split-at/CHANGELOG.md new file mode 100644 index 000000000..2bc074f1f --- /dev/null +++ b/packages/array-split-at/CHANGELOG.md @@ -0,0 +1,6 @@ +# just-split-at + +## 3.1.0 +### Minor Changes + +- package.json updates to fix #467 and #483 diff --git a/packages/array-split-at/package.json b/packages/array-split-at/package.json index 5e2f6f646..f2e4133bd 100644 --- a/packages/array-split-at/package.json +++ b/packages/array-split-at/package.json @@ -1,6 +1,6 @@ { "name": "just-split-at", - "version": "3.0.1", + "version": "3.1.0", "description": "splits an array into two at a given position", "main": "index.js", "module": "index.mjs", diff --git a/packages/array-split/CHANGELOG.md b/packages/array-split/CHANGELOG.md index fed08eb3b..4d6f39d7c 100644 --- a/packages/array-split/CHANGELOG.md +++ b/packages/array-split/CHANGELOG.md @@ -1,6 +1,13 @@ # just-split +## 3.1.0 + +### Minor Changes + +- package.json updates to fix #467 and #483 + ## 3.0.2 + ### Patch Changes - TS: accpet read-only arrays diff --git a/packages/array-split/package.json b/packages/array-split/package.json index 719ec778a..3fab2a461 100644 --- a/packages/array-split/package.json +++ b/packages/array-split/package.json @@ -1,6 +1,6 @@ { "name": "just-split", - "version": "3.0.2", + "version": "3.1.0", "description": "Splits array into groups of n items each", "main": "index.js", "module": "index.mjs", diff --git a/packages/array-standard-deviation/CHANGELOG.md b/packages/array-standard-deviation/CHANGELOG.md index 53ed34437..618182ed8 100644 --- a/packages/array-standard-deviation/CHANGELOG.md +++ b/packages/array-standard-deviation/CHANGELOG.md @@ -1,6 +1,13 @@ # just-standard-deviation +## 2.1.0 + +### Minor Changes + +- package.json updates to fix #467 and #483 + ## 2.0.2 + ### Patch Changes - Types diff --git a/packages/array-standard-deviation/package.json b/packages/array-standard-deviation/package.json index fe044ff9e..824504499 100644 --- a/packages/array-standard-deviation/package.json +++ b/packages/array-standard-deviation/package.json @@ -1,6 +1,6 @@ { "name": "just-standard-deviation", - "version": "2.0.2", + "version": "2.1.0", "description": "return the standard deviation of an array or numeric argument list", "main": "index.js", "module": "index.mjs", diff --git a/packages/array-tail/CHANGELOG.md b/packages/array-tail/CHANGELOG.md new file mode 100644 index 000000000..03c1fe4cd --- /dev/null +++ b/packages/array-tail/CHANGELOG.md @@ -0,0 +1,6 @@ +# just-tail + +## 3.1.0 +### Minor Changes + +- package.json updates to fix #467 and #483 diff --git a/packages/array-tail/package.json b/packages/array-tail/package.json index 8ef2f52ce..93668a7a9 100644 --- a/packages/array-tail/package.json +++ b/packages/array-tail/package.json @@ -1,6 +1,6 @@ { "name": "just-tail", - "version": "3.0.2", + "version": "3.1.0", "description": "return all but the first element of an array", "main": "index.js", "module": "index.mjs", diff --git a/packages/array-union/CHANGELOG.md b/packages/array-union/CHANGELOG.md new file mode 100644 index 000000000..7d2ee65b0 --- /dev/null +++ b/packages/array-union/CHANGELOG.md @@ -0,0 +1,6 @@ +# just-union + +## 3.1.0 +### Minor Changes + +- package.json updates to fix #467 and #483 diff --git a/packages/array-union/package.json b/packages/array-union/package.json index 8836f4ce0..7715d4cad 100644 --- a/packages/array-union/package.json +++ b/packages/array-union/package.json @@ -1,6 +1,6 @@ { "name": "just-union", - "version": "3.0.1", + "version": "3.1.0", "description": "returns the union of two arrays", "main": "index.js", "module": "index.mjs", diff --git a/packages/array-unique/CHANGELOG.md b/packages/array-unique/CHANGELOG.md new file mode 100644 index 000000000..280e64ab6 --- /dev/null +++ b/packages/array-unique/CHANGELOG.md @@ -0,0 +1,6 @@ +# just-unique + +## 4.1.0 +### Minor Changes + +- package.json updates to fix #467 and #483 diff --git a/packages/array-unique/package.json b/packages/array-unique/package.json index 0b53a5dd3..a44f76aed 100644 --- a/packages/array-unique/package.json +++ b/packages/array-unique/package.json @@ -1,6 +1,6 @@ { "name": "just-unique", - "version": "4.0.1", + "version": "4.1.0", "description": "dedupes an array", "main": "index.js", "module": "index.mjs", diff --git a/packages/array-variance/CHANGELOG.md b/packages/array-variance/CHANGELOG.md index d5cb9226a..655b1b727 100644 --- a/packages/array-variance/CHANGELOG.md +++ b/packages/array-variance/CHANGELOG.md @@ -1,6 +1,13 @@ # just-variance +## 2.1.0 + +### Minor Changes + +- package.json updates to fix #467 and #483 + ## 2.0.2 + ### Patch Changes - Types diff --git a/packages/array-variance/package.json b/packages/array-variance/package.json index baf8b0c35..1f9fa5848 100644 --- a/packages/array-variance/package.json +++ b/packages/array-variance/package.json @@ -1,6 +1,6 @@ { "name": "just-variance", - "version": "2.0.2", + "version": "2.1.0", "description": "return the standard deviation of an array or numeric argument list", "main": "index.js", "module": "index.mjs", diff --git a/packages/array-zip/CHANGELOG.md b/packages/array-zip/CHANGELOG.md index bd15b15fd..954bcac81 100644 --- a/packages/array-zip/CHANGELOG.md +++ b/packages/array-zip/CHANGELOG.md @@ -1,5 +1,11 @@ # just-zip-it +## 3.1.0 + +### Minor Changes + +- package.json updates to fix #467 and #483 + ## 3.0.6 ### Patch Changes diff --git a/packages/array-zip/package.json b/packages/array-zip/package.json index 9b0761b45..93440ae6a 100644 --- a/packages/array-zip/package.json +++ b/packages/array-zip/package.json @@ -1,6 +1,6 @@ { "name": "just-zip-it", - "version": "3.0.6", + "version": "3.1.0", "description": "returns an array of grouped elements, taking n-th element from every given array", "main": "index.js", "module": "index.mjs", diff --git a/packages/collection-clone/CHANGELOG.md b/packages/collection-clone/CHANGELOG.md index 15853af0b..639497f0c 100644 --- a/packages/collection-clone/CHANGELOG.md +++ b/packages/collection-clone/CHANGELOG.md @@ -1,5 +1,11 @@ # just-clone +## 6.1.0 + +### Minor Changes + +- package.json updates to fix #467 and #483 + ## 6.0.1 ### Patch Changes diff --git a/packages/collection-clone/package.json b/packages/collection-clone/package.json index cc755e9b3..80df9139e 100644 --- a/packages/collection-clone/package.json +++ b/packages/collection-clone/package.json @@ -1,6 +1,6 @@ { "name": "just-clone", - "version": "6.0.1", + "version": "6.1.0", "description": "deep copies objects and arrays", "main": "index.js", "module": "index.mjs", diff --git a/packages/collection-compare/CHANGELOG.md b/packages/collection-compare/CHANGELOG.md index 19a791c04..83d219887 100644 --- a/packages/collection-compare/CHANGELOG.md +++ b/packages/collection-compare/CHANGELOG.md @@ -1,5 +1,11 @@ # just-compare +## 2.2.0 + +### Minor Changes + +- package.json updates to fix #467 and #483 + ## 2.1.1 ### Patch Changes diff --git a/packages/collection-compare/package.json b/packages/collection-compare/package.json index 532dbabbb..dbc71040c 100644 --- a/packages/collection-compare/package.json +++ b/packages/collection-compare/package.json @@ -1,6 +1,6 @@ { "name": "just-compare", - "version": "2.1.1", + "version": "2.2.0", "description": "compare two collections", "main": "index.js", "module": "index.mjs", diff --git a/packages/collection-diff-apply/CHANGELOG.md b/packages/collection-diff-apply/CHANGELOG.md index 3b0867d44..506f998bf 100644 --- a/packages/collection-diff-apply/CHANGELOG.md +++ b/packages/collection-diff-apply/CHANGELOG.md @@ -1,5 +1,11 @@ # just-diff-apply +## 5.4.0 + +### Minor Changes + +- package.json updates to fix #467 and #483 + ## 5.3.1 ### Patch Changes diff --git a/packages/collection-diff-apply/package.json b/packages/collection-diff-apply/package.json index df52e33cb..5119d9ed0 100644 --- a/packages/collection-diff-apply/package.json +++ b/packages/collection-diff-apply/package.json @@ -1,6 +1,6 @@ { "name": "just-diff-apply", - "version": "5.3.1", + "version": "5.4.0", "description": "Apply a diff to an object. Optionally supports jsonPatch protocol", "main": "index.js", "module": "index.mjs", diff --git a/packages/collection-diff/CHANGELOG.md b/packages/collection-diff/CHANGELOG.md index 9ceccbec9..f5940c7dd 100644 --- a/packages/collection-diff/CHANGELOG.md +++ b/packages/collection-diff/CHANGELOG.md @@ -1,5 +1,11 @@ # just-diff +## 5.1.0 + +### Minor Changes + +- package.json updates to fix #467 and #483 + ## 5.0.3 ### Patch Changes diff --git a/packages/collection-diff/package.json b/packages/collection-diff/package.json index 0df316005..50218ebdb 100644 --- a/packages/collection-diff/package.json +++ b/packages/collection-diff/package.json @@ -1,6 +1,6 @@ { "name": "just-diff", - "version": "5.0.3", + "version": "5.1.0", "description": "Return an object representing the diffs between two objects. Supports jsonPatch protocol", "main": "index.js", "module": "index.mjs", diff --git a/packages/collection-flush/CHANGELOG.md b/packages/collection-flush/CHANGELOG.md index 675843de9..bf6cee39a 100644 --- a/packages/collection-flush/CHANGELOG.md +++ b/packages/collection-flush/CHANGELOG.md @@ -1,6 +1,13 @@ # just-flush +## 2.2.0 + +### Minor Changes + +- package.json updates to fix #467 and #483 + ## 2.1.1 + ### Patch Changes - Types diff --git a/packages/collection-flush/package.json b/packages/collection-flush/package.json index 3025139b9..adf9014f6 100644 --- a/packages/collection-flush/package.json +++ b/packages/collection-flush/package.json @@ -1,6 +1,6 @@ { "name": "just-flush", - "version": "2.1.1", + "version": "2.2.0", "description": "returns a copy of an array or object with null/undefined members removed", "main": "index.js", "types": "index.d.ts", diff --git a/packages/collection-pluck/CHANGELOG.md b/packages/collection-pluck/CHANGELOG.md index 7a8ff7027..16a019ae5 100644 --- a/packages/collection-pluck/CHANGELOG.md +++ b/packages/collection-pluck/CHANGELOG.md @@ -1,6 +1,13 @@ # just-pluck-it +## 2.2.0 + +### Minor Changes + +- package.json updates to fix #467 and #483 + ## 2.1.1 + ### Patch Changes - Types diff --git a/packages/collection-pluck/package.json b/packages/collection-pluck/package.json index 728d30a56..fefceb890 100644 --- a/packages/collection-pluck/package.json +++ b/packages/collection-pluck/package.json @@ -1,6 +1,6 @@ { "name": "just-pluck-it", - "version": "2.1.1", + "version": "2.2.0", "description": "pluck a property from each member of a collection", "main": "index.js", "types": "index.d.ts", diff --git a/packages/function-compose/CHANGELOG.md b/packages/function-compose/CHANGELOG.md index e20488c26..af6a65640 100644 --- a/packages/function-compose/CHANGELOG.md +++ b/packages/function-compose/CHANGELOG.md @@ -1,6 +1,13 @@ # just-compose +## 2.2.0 + +### Minor Changes + +- package.json updates to fix #467 and #483 + ## 2.1.1 + ### Patch Changes - Types diff --git a/packages/function-compose/package.json b/packages/function-compose/package.json index 6aae96bbd..5fb047342 100644 --- a/packages/function-compose/package.json +++ b/packages/function-compose/package.json @@ -1,6 +1,6 @@ { "name": "just-compose", - "version": "2.1.1", + "version": "2.2.0", "description": "return a function composed of 2 or more functions", "main": "index.js", "types": "index.d.ts", diff --git a/packages/function-curry/CHANGELOG.md b/packages/function-curry/CHANGELOG.md index 9c1bd71f5..34dd444b6 100644 --- a/packages/function-curry/CHANGELOG.md +++ b/packages/function-curry/CHANGELOG.md @@ -1,6 +1,13 @@ # just-curry-it +## 5.2.0 + +### Minor Changes + +- package.json updates to fix #467 and #483 + ## 5.1.0 + ### Minor Changes - Enhanced Type Defintions diff --git a/packages/function-curry/package.json b/packages/function-curry/package.json index 9e4aef7c9..cd333d43a 100644 --- a/packages/function-curry/package.json +++ b/packages/function-curry/package.json @@ -1,6 +1,6 @@ { "name": "just-curry-it", - "version": "5.1.0", + "version": "5.2.0", "description": "return a curried function", "main": "index.js", "module": "index.mjs", diff --git a/packages/function-debounce/CHANGELOG.md b/packages/function-debounce/CHANGELOG.md new file mode 100644 index 000000000..8a66e5bb3 --- /dev/null +++ b/packages/function-debounce/CHANGELOG.md @@ -0,0 +1,6 @@ +# just-debounce-it + +## 3.1.0 +### Minor Changes + +- package.json updates to fix #467 and #483 diff --git a/packages/function-debounce/package.json b/packages/function-debounce/package.json index 8fa1ec3de..0182859ff 100644 --- a/packages/function-debounce/package.json +++ b/packages/function-debounce/package.json @@ -1,6 +1,6 @@ { "name": "just-debounce-it", - "version": "3.0.1", + "version": "3.1.0", "description": "return a debounced function", "main": "index.js", "module": "index.mjs", diff --git a/packages/function-demethodize/CHANGELOG.md b/packages/function-demethodize/CHANGELOG.md new file mode 100644 index 000000000..a1a7df531 --- /dev/null +++ b/packages/function-demethodize/CHANGELOG.md @@ -0,0 +1,6 @@ +# just-demethodize + +## 3.1.0 +### Minor Changes + +- package.json updates to fix #467 and #483 diff --git a/packages/function-demethodize/package.json b/packages/function-demethodize/package.json index f92a52ff8..d77508313 100644 --- a/packages/function-demethodize/package.json +++ b/packages/function-demethodize/package.json @@ -1,6 +1,6 @@ { "name": "just-demethodize", - "version": "3.0.1", + "version": "3.1.0", "description": "turn a method into a standalone function; the first arg becomes `this`", "main": "index.js", "types": "index.d.ts", diff --git a/packages/function-flip/CHANGELOG.md b/packages/function-flip/CHANGELOG.md index 1f516157d..65d63bdbf 100644 --- a/packages/function-flip/CHANGELOG.md +++ b/packages/function-flip/CHANGELOG.md @@ -1,6 +1,13 @@ # just-flip +## 2.1.0 + +### Minor Changes + +- package.json updates to fix #467 and #483 + ## 2.0.2 + ### Patch Changes - Types diff --git a/packages/function-flip/package.json b/packages/function-flip/package.json index e0cb576e1..603f45ae6 100644 --- a/packages/function-flip/package.json +++ b/packages/function-flip/package.json @@ -1,6 +1,6 @@ { "name": "just-flip", - "version": "2.0.2", + "version": "2.1.0", "description": "flip first two arguments of a function", "main": "index.js", "types": "index.d.ts", diff --git a/packages/function-memoize-last/CHANGELOG.md b/packages/function-memoize-last/CHANGELOG.md new file mode 100644 index 000000000..c4b12fadc --- /dev/null +++ b/packages/function-memoize-last/CHANGELOG.md @@ -0,0 +1,6 @@ +# just-memoize-last + +## 3.1.0 +### Minor Changes + +- package.json updates to fix #467 and #483 diff --git a/packages/function-memoize-last/package.json b/packages/function-memoize-last/package.json index 85111f422..648a2afbc 100644 --- a/packages/function-memoize-last/package.json +++ b/packages/function-memoize-last/package.json @@ -1,6 +1,6 @@ { "name": "just-memoize-last", - "version": "3.0.1", + "version": "3.1.0", "description": "A memoize implementation that only caches the most recent evaluation", "main": "index.js", "module": "index.mjs", diff --git a/packages/function-memoize/CHANGELOG.md b/packages/function-memoize/CHANGELOG.md new file mode 100644 index 000000000..5989de9cc --- /dev/null +++ b/packages/function-memoize/CHANGELOG.md @@ -0,0 +1,6 @@ +# just-memoize + +## 2.1.0 +### Minor Changes + +- package.json updates to fix #467 and #483 diff --git a/packages/function-memoize/package.json b/packages/function-memoize/package.json index 44497aabd..db6a49daa 100644 --- a/packages/function-memoize/package.json +++ b/packages/function-memoize/package.json @@ -1,6 +1,6 @@ { "name": "just-memoize", - "version": "2.0.1", + "version": "2.1.0", "description": "An implementation of the memoize technique", "main": "index.js", "module": "index.mjs", diff --git a/packages/function-once/CHANGELOG.md b/packages/function-once/CHANGELOG.md new file mode 100644 index 000000000..57c3cb418 --- /dev/null +++ b/packages/function-once/CHANGELOG.md @@ -0,0 +1,6 @@ +# just-once + +## 2.1.0 +### Minor Changes + +- package.json updates to fix #467 and #483 diff --git a/packages/function-once/package.json b/packages/function-once/package.json index 007f73636..6c2d9c8a7 100644 --- a/packages/function-once/package.json +++ b/packages/function-once/package.json @@ -1,6 +1,6 @@ { "name": "just-once", - "version": "2.0.1", + "version": "2.1.0", "description": "create a function that can only be invoked once", "main": "index.js", "module": "index.mjs", diff --git a/packages/function-partial/CHANGELOG.md b/packages/function-partial/CHANGELOG.md index 7d8436981..c8b5cb1c3 100644 --- a/packages/function-partial/CHANGELOG.md +++ b/packages/function-partial/CHANGELOG.md @@ -1,5 +1,11 @@ # just-partial-it +## 3.2.0 + +### Minor Changes + +- package.json updates to fix #467 and #483 + ## 3.1.1 ### Patch Changes diff --git a/packages/function-partial/package.json b/packages/function-partial/package.json index 1649cea8f..f6c89ccae 100644 --- a/packages/function-partial/package.json +++ b/packages/function-partial/package.json @@ -1,6 +1,6 @@ { "name": "just-partial-it", - "version": "3.1.1", + "version": "3.2.0", "description": "return a partial function", "main": "index.js", "module": "index.mjs", diff --git a/packages/function-throttle/CHANGELOG.md b/packages/function-throttle/CHANGELOG.md new file mode 100644 index 000000000..7667b3b7c --- /dev/null +++ b/packages/function-throttle/CHANGELOG.md @@ -0,0 +1,6 @@ +# just-throttle + +## 4.1.0 +### Minor Changes + +- package.json updates to fix #467 and #483 diff --git a/packages/function-throttle/package.json b/packages/function-throttle/package.json index ada58ac80..8daf60259 100644 --- a/packages/function-throttle/package.json +++ b/packages/function-throttle/package.json @@ -1,6 +1,6 @@ { "name": "just-throttle", - "version": "4.0.1", + "version": "4.1.0", "description": "return a throttled function", "main": "index.js", "module": "index.mjs", diff --git a/packages/number-clamp/CHANGELOG.md b/packages/number-clamp/CHANGELOG.md new file mode 100644 index 000000000..3e28cccb0 --- /dev/null +++ b/packages/number-clamp/CHANGELOG.md @@ -0,0 +1,6 @@ +# just-clamp + +## 4.1.0 +### Minor Changes + +- package.json updates to fix #467 and #483 diff --git a/packages/number-clamp/package.json b/packages/number-clamp/package.json index 7a3d8966e..d9213f135 100644 --- a/packages/number-clamp/package.json +++ b/packages/number-clamp/package.json @@ -1,6 +1,6 @@ { "name": "just-clamp", - "version": "4.0.1", + "version": "4.1.0", "description": "restrict a number within a range", "main": "index.js", "module": "index.mjs", diff --git a/packages/number-in-range/CHANGELOG.md b/packages/number-in-range/CHANGELOG.md index 2d9021ae1..474e6ac0c 100644 --- a/packages/number-in-range/CHANGELOG.md +++ b/packages/number-in-range/CHANGELOG.md @@ -1,6 +1,13 @@ # just-in-range +## 1.1.0 + +### Minor Changes + +- package.json updates to fix #467 and #483 + ## 1.0.1 + ### Patch Changes - Keep ESMs in sync with commonJS modules diff --git a/packages/number-in-range/package.json b/packages/number-in-range/package.json index 6d26d57a3..189336de0 100644 --- a/packages/number-in-range/package.json +++ b/packages/number-in-range/package.json @@ -1,6 +1,6 @@ { "name": "just-in-range", - "version": "1.0.1", + "version": "1.1.0", "description": "Checks if number is within a given range", "main": "index.js", "module": "index.mjs", diff --git a/packages/number-is-prime/CHANGELOG.md b/packages/number-is-prime/CHANGELOG.md new file mode 100644 index 000000000..ff331709c --- /dev/null +++ b/packages/number-is-prime/CHANGELOG.md @@ -0,0 +1,6 @@ +# just-is-prime + +## 2.1.0 +### Minor Changes + +- package.json updates to fix #467 and #483 diff --git a/packages/number-is-prime/package.json b/packages/number-is-prime/package.json index 4f1e34ce8..c5ba7e85a 100644 --- a/packages/number-is-prime/package.json +++ b/packages/number-is-prime/package.json @@ -1,6 +1,6 @@ { "name": "just-is-prime", - "version": "2.0.1", + "version": "2.1.0", "description": "Check if number is prime", "main": "index.js", "module": "index.mjs", diff --git a/packages/number-modulo/CHANGELOG.md b/packages/number-modulo/CHANGELOG.md new file mode 100644 index 000000000..f4e2b3386 --- /dev/null +++ b/packages/number-modulo/CHANGELOG.md @@ -0,0 +1,6 @@ +# just-modulo + +## 2.1.0 +### Minor Changes + +- package.json updates to fix #467 and #483 diff --git a/packages/number-modulo/package.json b/packages/number-modulo/package.json index 359e21a24..60a7662a1 100644 --- a/packages/number-modulo/package.json +++ b/packages/number-modulo/package.json @@ -1,6 +1,6 @@ { "name": "just-modulo", - "version": "2.0.1", + "version": "2.1.0", "description": "modulo of a number and a divisor", "main": "index.js", "module": "index.mjs", diff --git a/packages/number-random-integer/CHANGELOG.md b/packages/number-random-integer/CHANGELOG.md index 62232360c..38b3ff77c 100644 --- a/packages/number-random-integer/CHANGELOG.md +++ b/packages/number-random-integer/CHANGELOG.md @@ -1,6 +1,12 @@ # just-random-integer +## 4.1.0 + +### Minor Changes + +- package.json updates to fix #467 and #483 + ## 4.0.0 - Rewritten logic. Results are now evenly distributed between entire range (inclusively). Also includes fixes for negative ranges and allows arguments to be added in either order. - See https://github.com/angus-c/just/pull/400 \ No newline at end of file + See https://github.com/angus-c/just/pull/400 diff --git a/packages/number-random-integer/package.json b/packages/number-random-integer/package.json index 1672092b8..6c1a0f7f3 100644 --- a/packages/number-random-integer/package.json +++ b/packages/number-random-integer/package.json @@ -1,6 +1,6 @@ { "name": "just-random-integer", - "version": "4.0.0", + "version": "4.1.0", "description": "Produces an integer between two values", "main": "index.js", "module": "index.mjs", diff --git a/packages/object-deep-map-values/CHANGELOG.md b/packages/object-deep-map-values/CHANGELOG.md new file mode 100644 index 000000000..fb1e852b7 --- /dev/null +++ b/packages/object-deep-map-values/CHANGELOG.md @@ -0,0 +1,6 @@ +# just-deep-map-values + +## 1.1.0 +### Minor Changes + +- package.json updates to fix #467 and #483 diff --git a/packages/object-deep-map-values/package.json b/packages/object-deep-map-values/package.json index d8880d5a3..6300a7b46 100644 --- a/packages/object-deep-map-values/package.json +++ b/packages/object-deep-map-values/package.json @@ -1,6 +1,6 @@ { "name": "just-deep-map-values", - "version": "1.0.0", + "version": "1.1.0", "description": "Returns an object with values at all depths mapped according to the provided function", "main": "index.js", "module": "index.mjs", diff --git a/packages/object-entries/CHANGELOG.md b/packages/object-entries/CHANGELOG.md index 3d3cdf6f4..a7d617b57 100644 --- a/packages/object-entries/CHANGELOG.md +++ b/packages/object-entries/CHANGELOG.md @@ -1,6 +1,13 @@ # just-entries +## 2.2.0 + +### Minor Changes + +- package.json updates to fix #467 and #483 + ## 2.1.0 + ### Minor Changes - Types diff --git a/packages/object-entries/package.json b/packages/object-entries/package.json index 8eb73de40..b4ba99e12 100644 --- a/packages/object-entries/package.json +++ b/packages/object-entries/package.json @@ -1,6 +1,6 @@ { "name": "just-entries", - "version": "2.1.0", + "version": "2.2.0", "description": "return object entries as an array of [key, value] pairs", "main": "index.js", "module": "index.mjs", diff --git a/packages/object-extend/CHANGELOG.md b/packages/object-extend/CHANGELOG.md new file mode 100644 index 000000000..2361dbc5f --- /dev/null +++ b/packages/object-extend/CHANGELOG.md @@ -0,0 +1,6 @@ +# just-extend + +## 6.1.0 +### Minor Changes + +- package.json updates to fix #467 and #483 diff --git a/packages/object-extend/package.json b/packages/object-extend/package.json index c84a9d1e1..5df3cab42 100644 --- a/packages/object-extend/package.json +++ b/packages/object-extend/package.json @@ -1,6 +1,6 @@ { "name": "just-extend", - "version": "6.0.1", + "version": "6.1.0", "description": "extend an object", "main": "index.js", "module": "index.mjs", diff --git a/packages/object-filter/CHANGELOG.md b/packages/object-filter/CHANGELOG.md new file mode 100644 index 000000000..8af46759f --- /dev/null +++ b/packages/object-filter/CHANGELOG.md @@ -0,0 +1,6 @@ +# just-filter-object + +## 3.1.0 +### Minor Changes + +- package.json updates to fix #467 and #483 diff --git a/packages/object-filter/package.json b/packages/object-filter/package.json index 17dfc0ced..48b9a9168 100644 --- a/packages/object-filter/package.json +++ b/packages/object-filter/package.json @@ -1,6 +1,6 @@ { "name": "just-filter-object", - "version": "3.0.1", + "version": "3.1.0", "description": "filter an object", "main": "index.js", "module": "index.mjs", diff --git a/packages/object-flip/CHANGELOG.md b/packages/object-flip/CHANGELOG.md index 0565bf484..fbbfa3b0d 100644 --- a/packages/object-flip/CHANGELOG.md +++ b/packages/object-flip/CHANGELOG.md @@ -1,7 +1,13 @@ # just-flip-object +## 2.2.0 + +### Minor Changes + +- package.json updates to fix #467 and #483 + ## 2.1.1 ### Patch Changes -- Fix types \ No newline at end of file +- Fix types diff --git a/packages/object-flip/package.json b/packages/object-flip/package.json index 597fbb1bd..c4cfbec7c 100644 --- a/packages/object-flip/package.json +++ b/packages/object-flip/package.json @@ -1,6 +1,6 @@ { "name": "just-flip-object", - "version": "2.1.1", + "version": "2.2.0", "description": "flip the keys and values", "main": "index.js", "module": "index.mjs", diff --git a/packages/object-has/CHANGELOG.md b/packages/object-has/CHANGELOG.md new file mode 100644 index 000000000..457f8fd6e --- /dev/null +++ b/packages/object-has/CHANGELOG.md @@ -0,0 +1,6 @@ +# just-has + +## 2.2.0 +### Minor Changes + +- package.json updates to fix #467 and #483 diff --git a/packages/object-has/package.json b/packages/object-has/package.json index 26673cb54..e212753b4 100644 --- a/packages/object-has/package.json +++ b/packages/object-has/package.json @@ -1,6 +1,6 @@ { "name": "just-has", - "version": "2.1.0", + "version": "2.2.0", "description": "return a boolen indicating the existence of a deep property, don't throw if parent is undefined", "main": "index.js", "module": "index.mjs", diff --git a/packages/object-is-circular/CHANGELOG.md b/packages/object-is-circular/CHANGELOG.md new file mode 100644 index 000000000..ec2595096 --- /dev/null +++ b/packages/object-is-circular/CHANGELOG.md @@ -0,0 +1,6 @@ +# just-is-circular + +## 2.1.0 +### Minor Changes + +- package.json updates to fix #467 and #483 diff --git a/packages/object-is-circular/package.json b/packages/object-is-circular/package.json index 2c99973ed..b8d57eee1 100644 --- a/packages/object-is-circular/package.json +++ b/packages/object-is-circular/package.json @@ -1,6 +1,6 @@ { "name": "just-is-circular", - "version": "2.0.1", + "version": "2.1.0", "description": "determine if an object contains a circular reference", "main": "index.js", "module": "index.mjs", diff --git a/packages/object-is-empty/CHANGELOG.md b/packages/object-is-empty/CHANGELOG.md index 6515bc32a..03e2b3e3b 100644 --- a/packages/object-is-empty/CHANGELOG.md +++ b/packages/object-is-empty/CHANGELOG.md @@ -1,6 +1,13 @@ # just-is-empty +## 3.2.0 + +### Minor Changes + +- package.json updates to fix #467 and #483 + ## 3.1.2 + ### Patch Changes - Types diff --git a/packages/object-is-empty/package.json b/packages/object-is-empty/package.json index c4b6e1513..b1af8c8eb 100644 --- a/packages/object-is-empty/package.json +++ b/packages/object-is-empty/package.json @@ -1,6 +1,6 @@ { "name": "just-is-empty", - "version": "3.1.2", + "version": "3.2.0", "description": "return true if object has no enumerable key values", "main": "index.js", "module": "index.mjs", diff --git a/packages/object-is-primitive/CHANGELOG.md b/packages/object-is-primitive/CHANGELOG.md index 3802d7ab0..6230d67b2 100644 --- a/packages/object-is-primitive/CHANGELOG.md +++ b/packages/object-is-primitive/CHANGELOG.md @@ -1,6 +1,13 @@ # just-is-primitive +## 2.2.0 + +### Minor Changes + +- package.json updates to fix #467 and #483 + ## 2.1.1 + ### Patch Changes - Types diff --git a/packages/object-is-primitive/package.json b/packages/object-is-primitive/package.json index 269e3a7f0..a3e8a1374 100644 --- a/packages/object-is-primitive/package.json +++ b/packages/object-is-primitive/package.json @@ -1,6 +1,6 @@ { "name": "just-is-primitive", - "version": "2.1.1", + "version": "2.2.0", "description": "determine if a value is a primitive value", "main": "index.js", "types": "index.d.ts", diff --git a/packages/object-map-keys/CHANGELOG.md b/packages/object-map-keys/CHANGELOG.md index 3a7f022af..a47ee2ab8 100644 --- a/packages/object-map-keys/CHANGELOG.md +++ b/packages/object-map-keys/CHANGELOG.md @@ -1,6 +1,13 @@ # just-map-keys +## 2.2.0 + +### Minor Changes + +- package.json updates to fix #467 and #483 + ## 2.1.2 + ### Patch Changes - Types diff --git a/packages/object-map-keys/package.json b/packages/object-map-keys/package.json index c27b11d25..b7a311a1a 100644 --- a/packages/object-map-keys/package.json +++ b/packages/object-map-keys/package.json @@ -1,6 +1,6 @@ { "name": "just-map-keys", - "version": "2.1.2", + "version": "2.2.0", "description": "map an object, predicate updates keys, receives (value, key, object)", "main": "index.js", "types": "index.d.ts", diff --git a/packages/object-map-values/CHANGELOG.md b/packages/object-map-values/CHANGELOG.md new file mode 100644 index 000000000..214e37eb6 --- /dev/null +++ b/packages/object-map-values/CHANGELOG.md @@ -0,0 +1,6 @@ +# just-map-values + +## 3.1.0 +### Minor Changes + +- package.json updates to fix #467 and #483 diff --git a/packages/object-map-values/package.json b/packages/object-map-values/package.json index a92c665d8..4adefbb65 100644 --- a/packages/object-map-values/package.json +++ b/packages/object-map-values/package.json @@ -1,6 +1,6 @@ { "name": "just-map-values", - "version": "3.0.2", + "version": "3.1.0", "description": "map an object, predicate updates values, receives (value, key, object)", "main": "index.js", "module": "index.mjs", diff --git a/packages/object-map/CHANGELOG.md b/packages/object-map/CHANGELOG.md index 32300598e..0eb7007ed 100644 --- a/packages/object-map/CHANGELOG.md +++ b/packages/object-map/CHANGELOG.md @@ -1,6 +1,13 @@ # just-map-object +## 2.2.0 + +### Minor Changes + +- package.json updates to fix #467 and #483 + ## 2.1.1 + ### Patch Changes - Types diff --git a/packages/object-map/package.json b/packages/object-map/package.json index 4e154a5e5..d807a235e 100644 --- a/packages/object-map/package.json +++ b/packages/object-map/package.json @@ -1,6 +1,6 @@ { "name": "just-map-object", - "version": "2.1.1", + "version": "2.2.0", "description": "map an object, passing key and value to predicates", "main": "index.js", "types": "index.d.ts", diff --git a/packages/object-merge/CHANGELOG.md b/packages/object-merge/CHANGELOG.md index 445dd9cdc..55250e1a7 100644 --- a/packages/object-merge/CHANGELOG.md +++ b/packages/object-merge/CHANGELOG.md @@ -1,6 +1,13 @@ # just-merge +## 3.1.0 + +### Minor Changes + +- package.json updates to fix #467 and #483 + ## 3.0.2 + ### Patch Changes - Add generics to type diff --git a/packages/object-merge/package.json b/packages/object-merge/package.json index 90318d911..943781399 100644 --- a/packages/object-merge/package.json +++ b/packages/object-merge/package.json @@ -1,6 +1,6 @@ { "name": "just-merge", - "version": "3.0.2", + "version": "3.1.0", "description": "shallow extend an object", "main": "index.js", "module": "index.mjs", diff --git a/packages/object-omit/CHANGELOG.md b/packages/object-omit/CHANGELOG.md new file mode 100644 index 000000000..993bd5ba3 --- /dev/null +++ b/packages/object-omit/CHANGELOG.md @@ -0,0 +1,6 @@ +# just-omit + +## 2.1.0 +### Minor Changes + +- package.json updates to fix #467 and #483 diff --git a/packages/object-omit/package.json b/packages/object-omit/package.json index 77eca58c2..e705399c9 100644 --- a/packages/object-omit/package.json +++ b/packages/object-omit/package.json @@ -1,6 +1,6 @@ { "name": "just-omit", - "version": "2.0.1", + "version": "2.1.0", "description": "copy an object but omit the specified keys", "main": "index.js", "module": "index.mjs", diff --git a/packages/object-pick/CHANGELOG.md b/packages/object-pick/CHANGELOG.md new file mode 100644 index 000000000..aa2350d26 --- /dev/null +++ b/packages/object-pick/CHANGELOG.md @@ -0,0 +1,6 @@ +# just-pick + +## 4.1.0 +### Minor Changes + +- package.json updates to fix #467 and #483 diff --git a/packages/object-pick/package.json b/packages/object-pick/package.json index fac89ff0d..0ec351b3f 100644 --- a/packages/object-pick/package.json +++ b/packages/object-pick/package.json @@ -1,6 +1,6 @@ { "name": "just-pick", - "version": "4.0.1", + "version": "4.1.0", "description": "copy an object but with only the specified keys", "main": "index.js", "module": "index.mjs", diff --git a/packages/object-reduce/CHANGELOG.md b/packages/object-reduce/CHANGELOG.md index 62bb785e4..a5c944b77 100644 --- a/packages/object-reduce/CHANGELOG.md +++ b/packages/object-reduce/CHANGELOG.md @@ -1,5 +1,11 @@ # just-reduce-object +## 2.2.0 + +### Minor Changes + +- package.json updates to fix #467 and #483 + ## 2.1.1 ### Patch Changes diff --git a/packages/object-reduce/package.json b/packages/object-reduce/package.json index 2feb23043..b061df2e1 100644 --- a/packages/object-reduce/package.json +++ b/packages/object-reduce/package.json @@ -1,6 +1,6 @@ { "name": "just-reduce-object", - "version": "2.1.1", + "version": "2.2.0", "description": "reduce an object", "main": "index.js", "module": "index.mjs", diff --git a/packages/object-safe-get/CHANGELOG.md b/packages/object-safe-get/CHANGELOG.md new file mode 100644 index 000000000..cc184b4c9 --- /dev/null +++ b/packages/object-safe-get/CHANGELOG.md @@ -0,0 +1,6 @@ +# just-safe-get + +## 4.1.0 +### Minor Changes + +- package.json updates to fix #467 and #483 diff --git a/packages/object-safe-get/package.json b/packages/object-safe-get/package.json index a3f627475..b85b86d15 100644 --- a/packages/object-safe-get/package.json +++ b/packages/object-safe-get/package.json @@ -1,6 +1,6 @@ { "name": "just-safe-get", - "version": "4.0.1", + "version": "4.1.0", "description": "get value at property, don't throw if parent is undefined", "main": "index.js", "module": "index.mjs", diff --git a/packages/object-safe-set/CHANGELOG.md b/packages/object-safe-set/CHANGELOG.md new file mode 100644 index 000000000..776e46477 --- /dev/null +++ b/packages/object-safe-set/CHANGELOG.md @@ -0,0 +1,6 @@ +# just-safe-set + +## 4.1.0 +### Minor Changes + +- package.json updates to fix #467 and #483 diff --git a/packages/object-safe-set/package.json b/packages/object-safe-set/package.json index 3f3a53571..8987391f2 100644 --- a/packages/object-safe-set/package.json +++ b/packages/object-safe-set/package.json @@ -1,6 +1,6 @@ { "name": "just-safe-set", - "version": "4.0.2", + "version": "4.1.0", "description": "set value at property, create intermediate properties if necessary", "main": "index.js", "module": "index.mjs", diff --git a/packages/object-typeof/CHANGELOG.md b/packages/object-typeof/CHANGELOG.md new file mode 100644 index 000000000..3cf2fd1db --- /dev/null +++ b/packages/object-typeof/CHANGELOG.md @@ -0,0 +1,6 @@ +# just-typeof + +## 3.1.0 +### Minor Changes + +- package.json updates to fix #467 and #483 diff --git a/packages/object-typeof/package.json b/packages/object-typeof/package.json index 2ef15eba0..2a02003f1 100644 --- a/packages/object-typeof/package.json +++ b/packages/object-typeof/package.json @@ -1,6 +1,6 @@ { "name": "just-typeof", - "version": "3.0.1", + "version": "3.1.0", "description": "type inferer", "main": "index.js", "module": "index.mjs", diff --git a/packages/object-values/CHANGELOG.md b/packages/object-values/CHANGELOG.md new file mode 100644 index 000000000..e2a4f3d58 --- /dev/null +++ b/packages/object-values/CHANGELOG.md @@ -0,0 +1,6 @@ +# just-values + +## 2.1.0 +### Minor Changes + +- package.json updates to fix #467 and #483 diff --git a/packages/object-values/package.json b/packages/object-values/package.json index ddfebf812..411dd2551 100644 --- a/packages/object-values/package.json +++ b/packages/object-values/package.json @@ -1,6 +1,6 @@ { "name": "just-values", - "version": "2.0.1", + "version": "2.1.0", "description": "return property values as an array", "main": "index.js", "module": "index.mjs", diff --git a/packages/string-camel-case/CHANGELOG.md b/packages/string-camel-case/CHANGELOG.md new file mode 100644 index 000000000..683191cf2 --- /dev/null +++ b/packages/string-camel-case/CHANGELOG.md @@ -0,0 +1,6 @@ +# just-camel-case + +## 6.1.0 +### Minor Changes + +- package.json updates to fix #467 and #483 diff --git a/packages/string-camel-case/package.json b/packages/string-camel-case/package.json index 8cd72b220..27e69bf96 100644 --- a/packages/string-camel-case/package.json +++ b/packages/string-camel-case/package.json @@ -1,6 +1,6 @@ { "name": "just-camel-case", - "version": "6.0.1", + "version": "6.1.0", "description": "convert a string to camel case", "main": "index.js", "module": "index.mjs", diff --git a/packages/string-capitalize/CHANGELOG.md b/packages/string-capitalize/CHANGELOG.md new file mode 100644 index 000000000..f403a181b --- /dev/null +++ b/packages/string-capitalize/CHANGELOG.md @@ -0,0 +1,6 @@ +# just-capitalize + +## 3.1.0 +### Minor Changes + +- package.json updates to fix #467 and #483 diff --git a/packages/string-capitalize/package.json b/packages/string-capitalize/package.json index f55c4b3d9..9914451c6 100644 --- a/packages/string-capitalize/package.json +++ b/packages/string-capitalize/package.json @@ -1,6 +1,6 @@ { "name": "just-capitalize", - "version": "3.0.1", + "version": "3.1.0", "description": "capitalize the first character of a string", "main": "index.js", "module": "index.mjs", diff --git a/packages/string-kebab-case/CHANGELOG.md b/packages/string-kebab-case/CHANGELOG.md index d2a44d268..8114d45c7 100644 --- a/packages/string-kebab-case/CHANGELOG.md +++ b/packages/string-kebab-case/CHANGELOG.md @@ -1,5 +1,11 @@ # just-kebab-case +## 4.1.0 + +### Minor Changes + +- package.json updates to fix #467 and #483 + ## 4.0.3 ### Patch Changes diff --git a/packages/string-kebab-case/package.json b/packages/string-kebab-case/package.json index 0ddb5d6ad..5eaca92c0 100644 --- a/packages/string-kebab-case/package.json +++ b/packages/string-kebab-case/package.json @@ -1,6 +1,6 @@ { "name": "just-kebab-case", - "version": "4.0.3", + "version": "4.1.0", "description": "convert a string to kebab case", "main": "index.js", "module": "index.mjs", diff --git a/packages/string-left-pad/CHANGELOG.md b/packages/string-left-pad/CHANGELOG.md new file mode 100644 index 000000000..a5ad147c5 --- /dev/null +++ b/packages/string-left-pad/CHANGELOG.md @@ -0,0 +1,6 @@ +# just-left-pad + +## 3.1.0 +### Minor Changes + +- package.json updates to fix #467 and #483 diff --git a/packages/string-left-pad/package.json b/packages/string-left-pad/package.json index 54b371cb2..e3f6bd096 100644 --- a/packages/string-left-pad/package.json +++ b/packages/string-left-pad/package.json @@ -1,6 +1,6 @@ { "name": "just-left-pad", - "version": "3.0.1", + "version": "3.1.0", "description": "add characters to the left of a string such that its total length is n", "type": "commonjs", "main": "index.min.js", diff --git a/packages/string-pascal-case/CHANGELOG.md b/packages/string-pascal-case/CHANGELOG.md new file mode 100644 index 000000000..a55527c93 --- /dev/null +++ b/packages/string-pascal-case/CHANGELOG.md @@ -0,0 +1,6 @@ +# just-pascal-case + +## 3.1.0 +### Minor Changes + +- package.json updates to fix #467 and #483 diff --git a/packages/string-pascal-case/package.json b/packages/string-pascal-case/package.json index 0ac10ca8d..28ac65d5a 100644 --- a/packages/string-pascal-case/package.json +++ b/packages/string-pascal-case/package.json @@ -1,6 +1,6 @@ { "name": "just-pascal-case", - "version": "3.0.1", + "version": "3.1.0", "description": "convert a string to pascal case", "main": "index.js", "module": "index.mjs", diff --git a/packages/string-prune/CHANGELOG.md b/packages/string-prune/CHANGELOG.md new file mode 100644 index 000000000..a42e9ec32 --- /dev/null +++ b/packages/string-prune/CHANGELOG.md @@ -0,0 +1,6 @@ +# just-prune + +## 2.1.0 +### Minor Changes + +- package.json updates to fix #467 and #483 diff --git a/packages/string-prune/package.json b/packages/string-prune/package.json index 609e6b96c..774de0d25 100644 --- a/packages/string-prune/package.json +++ b/packages/string-prune/package.json @@ -1,6 +1,6 @@ { "name": "just-prune", - "version": "2.0.1", + "version": "2.1.0", "description": "prune a string with whole words and a custom suffix", "main": "index.js", "module": "index.mjs", diff --git a/packages/string-replace-all/CHANGELOG.md b/packages/string-replace-all/CHANGELOG.md new file mode 100644 index 000000000..6110bb19b --- /dev/null +++ b/packages/string-replace-all/CHANGELOG.md @@ -0,0 +1,6 @@ +# just-replace-all + +## 2.1.0 +### Minor Changes + +- package.json updates to fix #467 and #483 diff --git a/packages/string-replace-all/package.json b/packages/string-replace-all/package.json index ef6f58ba9..b23522857 100644 --- a/packages/string-replace-all/package.json +++ b/packages/string-replace-all/package.json @@ -1,6 +1,6 @@ { "name": "just-replace-all", - "version": "2.0.1", + "version": "2.1.0", "description": "replace all occurrences of a string within a string with another string", "main": "index.js", "module": "index.mjs", diff --git a/packages/string-right-pad/CHANGELOG.md b/packages/string-right-pad/CHANGELOG.md index 169b85cf5..306d6a263 100644 --- a/packages/string-right-pad/CHANGELOG.md +++ b/packages/string-right-pad/CHANGELOG.md @@ -1,6 +1,13 @@ # just-right-pad +## 3.1.0 + +### Minor Changes + +- package.json updates to fix #467 and #483 + ## 3.0.2 + ### Patch Changes - Types diff --git a/packages/string-right-pad/package.json b/packages/string-right-pad/package.json index 6fd710c92..1a550aadf 100644 --- a/packages/string-right-pad/package.json +++ b/packages/string-right-pad/package.json @@ -1,6 +1,6 @@ { "name": "just-right-pad", - "version": "3.0.2", + "version": "3.1.0", "description": "add characters to the right of a string such that its total length is n", "main": "index.js", "module": "index.mjs", diff --git a/packages/string-snake-case/CHANGELOG.md b/packages/string-snake-case/CHANGELOG.md new file mode 100644 index 000000000..b8221c6a1 --- /dev/null +++ b/packages/string-snake-case/CHANGELOG.md @@ -0,0 +1,6 @@ +# just-snake-case + +## 3.1.0 +### Minor Changes + +- package.json updates to fix #467 and #483 diff --git a/packages/string-snake-case/package.json b/packages/string-snake-case/package.json index d12fe25cd..faabb57fd 100644 --- a/packages/string-snake-case/package.json +++ b/packages/string-snake-case/package.json @@ -1,6 +1,6 @@ { "name": "just-snake-case", - "version": "3.0.1", + "version": "3.1.0", "description": "convert a string to snake case", "main": "index.js", "module": "index.mjs", diff --git a/packages/string-squash/CHANGELOG.md b/packages/string-squash/CHANGELOG.md new file mode 100644 index 000000000..36b6bff95 --- /dev/null +++ b/packages/string-squash/CHANGELOG.md @@ -0,0 +1,6 @@ +# just-squash + +## 2.1.0 +### Minor Changes + +- package.json updates to fix #467 and #483 diff --git a/packages/string-squash/package.json b/packages/string-squash/package.json index 4a057954d..026b43b3b 100644 --- a/packages/string-squash/package.json +++ b/packages/string-squash/package.json @@ -1,6 +1,6 @@ { "name": "just-squash", - "version": "2.0.1", + "version": "2.1.0", "description": "remove all spaces from a string, optionally remove escape sequences too", "main": "index.js", "module": "index.mjs", diff --git a/packages/string-template/CHANGELOG.md b/packages/string-template/CHANGELOG.md index ef1ecbdab..3075d5766 100644 --- a/packages/string-template/CHANGELOG.md +++ b/packages/string-template/CHANGELOG.md @@ -1,7 +1,13 @@ # just-template +## 2.1.0 + +### Minor Changes + +- package.json updates to fix #467 and #483 + ## 2.0.2 ### Patch Changes -- Fix error when unresolved nested variables \ No newline at end of file +- Fix error when unresolved nested variables diff --git a/packages/string-template/package.json b/packages/string-template/package.json index 42a7e9736..eb326eb8a 100644 --- a/packages/string-template/package.json +++ b/packages/string-template/package.json @@ -1,6 +1,6 @@ { "name": "just-template", - "version": "2.0.2", + "version": "2.1.0", "description": "interpolate a string with variables", "main": "index.js", "module": "index.mjs", diff --git a/packages/string-truncate/CHANGELOG.md b/packages/string-truncate/CHANGELOG.md new file mode 100644 index 000000000..a8c94e7cf --- /dev/null +++ b/packages/string-truncate/CHANGELOG.md @@ -0,0 +1,6 @@ +# just-truncate + +## 2.1.0 +### Minor Changes + +- package.json updates to fix #467 and #483 diff --git a/packages/string-truncate/package.json b/packages/string-truncate/package.json index e446c4ead..fa175646d 100644 --- a/packages/string-truncate/package.json +++ b/packages/string-truncate/package.json @@ -1,6 +1,6 @@ { "name": "just-truncate", - "version": "2.0.1", + "version": "2.1.0", "description": "truncate a string with a custom suffix", "main": "index.js", "module": "index.mjs",