Skip to content

Commit

Permalink
package.json updates to fix #467 and #483 (#485)
Browse files Browse the repository at this point in the history
  • Loading branch information
angus-c committed Aug 7, 2022
1 parent 5064887 commit 64f923f
Show file tree
Hide file tree
Showing 162 changed files with 590 additions and 84 deletions.
6 changes: 6 additions & 0 deletions 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
2 changes: 1 addition & 1 deletion 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",
Expand Down
6 changes: 6 additions & 0 deletions packages/array-compact/CHANGELOG.md
@@ -0,0 +1,6 @@
# just-compact

## 3.1.0
### Minor Changes

- package.json updates to fix #467 and #483
2 changes: 1 addition & 1 deletion 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",
Expand Down
6 changes: 6 additions & 0 deletions 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
2 changes: 1 addition & 1 deletion 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",
Expand Down
7 changes: 7 additions & 0 deletions 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
2 changes: 1 addition & 1 deletion 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",
Expand Down
6 changes: 6 additions & 0 deletions packages/array-index/CHANGELOG.md
@@ -0,0 +1,6 @@
# just-index

## 4.1.0
### Minor Changes

- package.json updates to fix #467 and #483
2 changes: 1 addition & 1 deletion 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",
Expand Down
6 changes: 6 additions & 0 deletions packages/array-insert/CHANGELOG.md
@@ -0,0 +1,6 @@
# just-insert

## 3.1.0
### Minor Changes

- package.json updates to fix #467 and #483
2 changes: 1 addition & 1 deletion 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",
Expand Down
6 changes: 6 additions & 0 deletions 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
Expand Down
2 changes: 1 addition & 1 deletion 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",
Expand Down
6 changes: 6 additions & 0 deletions packages/array-last/CHANGELOG.md
@@ -0,0 +1,6 @@
# just-last

## 3.1.0
### Minor Changes

- package.json updates to fix #467 and #483
2 changes: 1 addition & 1 deletion 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",
Expand Down
6 changes: 6 additions & 0 deletions packages/array-mean/CHANGELOG.md
@@ -0,0 +1,6 @@
# just-mean

## 2.1.0
### Minor Changes

- package.json updates to fix #467 and #483
2 changes: 1 addition & 1 deletion 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",
Expand Down
6 changes: 6 additions & 0 deletions packages/array-median/CHANGELOG.md
@@ -0,0 +1,6 @@
# just-median

## 2.1.0
### Minor Changes

- package.json updates to fix #467 and #483
2 changes: 1 addition & 1 deletion 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",
Expand Down
7 changes: 7 additions & 0 deletions 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
2 changes: 1 addition & 1 deletion 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",
Expand Down
6 changes: 6 additions & 0 deletions packages/array-partition/CHANGELOG.md
@@ -0,0 +1,6 @@
# just-partition

## 2.1.0
### Minor Changes

- package.json updates to fix #467 and #483
2 changes: 1 addition & 1 deletion 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",
Expand Down
6 changes: 6 additions & 0 deletions 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
Expand Down
2 changes: 1 addition & 1 deletion 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",
Expand Down
6 changes: 6 additions & 0 deletions packages/array-permutations/CHANGELOG.md
@@ -0,0 +1,6 @@
# just-permutations

## 2.1.0
### Minor Changes

- package.json updates to fix #467 and #483
2 changes: 1 addition & 1 deletion 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",
Expand Down
6 changes: 6 additions & 0 deletions packages/array-random/CHANGELOG.md
@@ -0,0 +1,6 @@
# just-random

## 3.1.0
### Minor Changes

- package.json updates to fix #467 and #483
2 changes: 1 addition & 1 deletion 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",
Expand Down
6 changes: 6 additions & 0 deletions packages/array-range/CHANGELOG.md
@@ -0,0 +1,6 @@
# just-range

## 4.1.0
### Minor Changes

- package.json updates to fix #467 and #483
2 changes: 1 addition & 1 deletion 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",
Expand Down
6 changes: 6 additions & 0 deletions packages/array-remove/CHANGELOG.md
@@ -0,0 +1,6 @@
# just-remove

## 3.1.0
### Minor Changes

- package.json updates to fix #467 and #483
2 changes: 1 addition & 1 deletion 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",
Expand Down
6 changes: 6 additions & 0 deletions packages/array-shuffle/CHANGELOG.md
@@ -0,0 +1,6 @@
# just-shuffle

## 4.1.0
### Minor Changes

- package.json updates to fix #467 and #483
2 changes: 1 addition & 1 deletion 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",
Expand Down
7 changes: 7 additions & 0 deletions 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
2 changes: 1 addition & 1 deletion 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",
Expand Down
7 changes: 7 additions & 0 deletions 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
2 changes: 1 addition & 1 deletion 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",
Expand Down
6 changes: 6 additions & 0 deletions 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
2 changes: 1 addition & 1 deletion 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",
Expand Down
7 changes: 7 additions & 0 deletions 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
2 changes: 1 addition & 1 deletion 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",
Expand Down
7 changes: 7 additions & 0 deletions 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
2 changes: 1 addition & 1 deletion 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",
Expand Down

0 comments on commit 64f923f

Please sign in to comment.