Skip to content

Commit 9a6f26f

Browse files
committed
Merge remote-tracking branch 'upstream/develop' into feature/drotmg
2 parents 038983c + 58747ab commit 9a6f26f

File tree

35 files changed

+3770
-16
lines changed

35 files changed

+3770
-16
lines changed

.github/workflows/generate_monthly_changelog.yml

Lines changed: 3 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -52,8 +52,8 @@ jobs:
5252
# Specify whether to remove untracked files before checking out the repository:
5353
clean: false
5454

55-
# Limit clone depth to the most recent commit:
56-
fetch-depth: 1
55+
# Fetch entire history so that we are guaranteed to have all commit messages for the last month:
56+
fetch-depth: 0
5757

5858
# Token for accessing the repository:
5959
token: ${{ secrets.STDLIB_BOT_FGPAT_REPO_READ }}
@@ -101,18 +101,7 @@ jobs:
101101
- name: 'Generate changelog for last month'
102102
run: |
103103
UNTIL=$(date +"%Y-%m-01")
104-
node -e "
105-
var generate = require( '@stdlib/_tools/changelog/generate' );
106-
var changelog = generate( '@stdlib', {
107-
'flags': {
108-
'since': '$UNTIL - 1 month',
109-
'until': '$UNTIL'
110-
},
111-
'format': 'aggregated'
112-
});
113-
console.log( changelog.content );
114-
115-
" > ./www-blog-monthly-changelog/monthly_changelog_${UNTIL//-/_}.md
104+
node lib/node_modules/@stdlib/_tools/scripts/generate_monthly_changelog.js > ./www-blog-monthly-changelog/monthly_changelog_${UNTIL//-/_}.md
116105
117106
# Import GPG key to sign commits:
118107
- name: 'Import GPG key to sign commits'
Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
#!/usr/bin/env node
2+
3+
/**
4+
* @license Apache-2.0
5+
*
6+
* Copyright (c) 2025 The Stdlib Authors.
7+
*
8+
* Licensed under the Apache License, Version 2.0 (the "License");
9+
* you may not use this file except in compliance with the License.
10+
* You may obtain a copy of the License at
11+
*
12+
* http://www.apache.org/licenses/LICENSE-2.0
13+
*
14+
* Unless required by applicable law or agreed to in writing, software
15+
* distributed under the License is distributed on an "AS IS" BASIS,
16+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
17+
* See the License for the specific language governing permissions and
18+
* limitations under the License.
19+
*/
20+
21+
/* eslint-disable no-console */
22+
23+
'use strict';
24+
25+
// MODULES //
26+
27+
var generate = require( '@stdlib/_tools/changelog/generate' );
28+
29+
30+
// MAIN //
31+
32+
var changelog = generate( '@stdlib', {
33+
'flags': {
34+
'since': '1 month ago',
35+
'until': 'today'
36+
},
37+
'format': 'aggregated'
38+
});
39+
40+
console.log( changelog.content );

lib/node_modules/@stdlib/blas/ext/base/wasm/sapxsumkbn/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"name": "@stdlib/blas/base/ext/wasm/sapxsumkbn",
2+
"name": "@stdlib/blas/ext/base/wasm/sapxsumkbn",
33
"version": "0.0.0",
44
"description": "Add a constant to each single-precision floating-point strided array element and compute the sum using an improved Kahan–Babuška algorithm.",
55
"license": "Apache-2.0",

0 commit comments

Comments
 (0)