Skip to content

Commit 5b36813

Browse files
author
Conventional Changelog Action
committed
chore(release): v1.0.42
1 parent dcf9898 commit 5b36813

File tree

3 files changed

+9
-11
lines changed

3 files changed

+9
-11
lines changed

CHANGELOG.md

Lines changed: 7 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
1+
## <small>1.0.42 (2021-10-14)</small>
2+
3+
* fix(paginator): last page now correctly matches rex ([dcf9898](https://github.com/simonecorsi/mawesome/commit/dcf9898))
4+
5+
6+
17
## <small>1.0.41 (2021-10-14)</small>
28

9+
* chore(release): v1.0.41 ([884fc90](https://github.com/simonecorsi/mawesome/commit/884fc90))
310
* test: fixs suite ([b97833f](https://github.com/simonecorsi/mawesome/commit/b97833f))
411
* fix: should avoid index lock ([1d6848c](https://github.com/simonecorsi/mawesome/commit/1d6848c))
512

@@ -26,12 +33,3 @@
2633

2734

2835

29-
## <small>1.0.37 (2021-06-23)</small>
30-
31-
* chore(release): v1.0.37 ([1643092](https://github.com/simonecorsi/mawesome/commit/1643092))
32-
* build(deps): bump glob-parent from 5.1.1 to 5.1.2 ([e558e07](https://github.com/simonecorsi/mawesome/commit/e558e07))
33-
* build(deps): bump hosted-git-info from 2.8.8 to 2.8.9 ([110a667](https://github.com/simonecorsi/mawesome/commit/110a667))
34-
* build(deps): bump normalize-url from 4.5.0 to 4.5.1 ([202d6fe](https://github.com/simonecorsi/mawesome/commit/202d6fe))
35-
36-
37-

index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21415,7 +21415,7 @@ function getNextPage(links) {
2141521415
if (!next || !last)
2141621416
return null;
2141721417
const matchNext = next.uri.match(/page=([0-9]*)/);
21418-
const matchLast = next.uri.match(/page=([0-9]*)/);
21418+
const matchLast = last.uri.match(/page=([0-9]*)/);
2141921419
if (!matchNext || !matchLast)
2142021420
return null;
2142121421
if (matchNext[1] === matchLast[1])

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "mawesome",
3-
"version": "1.0.41",
3+
"version": "1.0.42",
44
"description": "Generate awesome list from user starred repositories",
55
"main": "index.js",
66
"author": "Simone Corsi<simonecorsi.dev@gmail.com>",

0 commit comments

Comments
 (0)