Skip to content

Commit d224e2b

Browse files
committed
prepare v13.4.0-1
1 parent 8855524 commit d224e2b

23 files changed

+70
-64
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,12 @@ Entries in this file are in reverse chronological order.
55

66
## 2025-10-22
77

8+
* v13.4.0-1 prepared
9+
* 8855524 _share-custom.mdx update
10+
* 9545a42 revert deep-clean.yml
11+
* 16b2ef7 website fix post title
12+
* 9263fad 12.5.0-1.1
13+
* d3476a8 CHANGELOG: publish npm v12.5.0-1.1
814
* v12.5.0-1.1 published on npmjs.com
915
* c709b04 package.json: update URLs for 12.5.0-1.1 release
1016
* 223fe5f website: blog post release 12.5.0-1.1 published

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ For information on how to install and use this project, please refer to the
1717
## Project source
1818

1919
The source code of the current release is available on
20-
[GitHub tag v12.5.0-1.1 tree](https://github.com/xpack-dev-tools/riscv-none-elf-gcc-xpack/tree/v12.5.0-1.1).
20+
[GitHub tag v13.4.0-1.1 tree](https://github.com/xpack-dev-tools/riscv-none-elf-gcc-xpack/tree/v13.4.0-1.1).
2121

2222
## License
2323

build-assets/scripts/VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
12.5.0-1
1+
13.4.0-1

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@xpack-dev-tools/riscv-none-elf-gcc",
3-
"version": "12.5.0-1.1",
3+
"version": "13.4.0-1.1.pre",
44
"description": "A binary xpm package with the GNU RISC-V Embedded GCC executables",
55
"main": "",
66
"scripts": {

website/docs/developer/_common/_platform-docker-section.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,8 +46,8 @@ or, for increased verbosity, execute the similar development build:
4646
archive and its SHA signature, created within
4747
the <code>build-assets/build/{props.platform}/deploy</code> folder:
4848

49-
- <code>xpack-riscv-none-elf-gcc-12.5.0-1-{props.platform}.tar.gz</code>
50-
- <code>xpack-riscv-none-elf-gcc-12.5.0-1-{props.platform}.tar.gz.sha</code>
49+
- <code>xpack-riscv-none-elf-gcc-13.4.0-1-{props.platform}.tar.gz</code>
50+
- <code>xpack-riscv-none-elf-gcc-13.4.0-1-{props.platform}.tar.gz.sha</code>
5151

5252
To re-execute the build, invoke the **deep-clean** action and repeat from installation:
5353

website/docs/developer/_common/_platform-native-section.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,8 +43,8 @@ or, for increased verbosity, execute the similar development build:
4343
archive and its SHA signature, created within
4444
the <code>build-assets/build/{props.platform}/deploy</code> folder:
4545

46-
- <code>xpack-riscv-none-elf-gcc-12.5.0-1-{props.platform}.tar.gz</code>
47-
- <code>xpack-riscv-none-elf-gcc-12.5.0-1-{props.platform}.tar.gz.sha</code>
46+
- <code>xpack-riscv-none-elf-gcc-13.4.0-1-{props.platform}.tar.gz</code>
47+
- <code>xpack-riscv-none-elf-gcc-13.4.0-1-{props.platform}.tar.gz.sha</code>
4848

4949
To re-execute the build, invoke the **deep-clean** action and repeat from installation:
5050

website/docs/install/_common/_automatic-install-quick-test.mdx

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -16,26 +16,26 @@ To verify if the {props.descriptiveName} installed by **xpm** starts correctly,
1616
<TabItem value="windows" label="Windows" default>
1717

1818
<CodeBlock language="console"> {
19-
`C:\\> %USERPROFILE%\\AppData\\Roaming\\xPacks\\@xpack-dev-tools\\${props.permalinkName}\\12.5.0-1.1\\.content\\bin\\${props.programName}.exe --version
20-
${props.branding}12.5.0
19+
`C:\\> %USERPROFILE%\\AppData\\Roaming\\xPacks\\@xpack-dev-tools\\${props.permalinkName}\\13.4.0-1.1\\.content\\bin\\${props.programName}.exe --version
20+
${props.branding}13.4.0
2121
`} </CodeBlock>
2222

2323
</TabItem>
2424

2525
<TabItem value="macos" label="macOS">
2626

2727
<CodeBlock language="console"> {
28-
`% ~/Library/xPacks/@xpack-dev-tools/${props.permalinkName}/12.5.0-1.1/.content/bin/${props.programName} --version
29-
${props.branding}12.5.0
28+
`% ~/Library/xPacks/@xpack-dev-tools/${props.permalinkName}/13.4.0-1.1/.content/bin/${props.programName} --version
29+
${props.branding}13.4.0
3030
`} </CodeBlock>
3131

3232
</TabItem>
3333

3434
<TabItem value="linux" label="GNU/Linux">
3535

3636
<CodeBlock language="console"> {
37-
`$ ~/.local/xPacks/@xpack-dev-tools/${props.permalinkName}/12.5.0-1.1/.content/bin/${props.programName} --version
38-
${props.branding}12.5.0
37+
`$ ~/.local/xPacks/@xpack-dev-tools/${props.permalinkName}/13.4.0-1.1/.content/bin/${props.programName} --version
38+
${props.branding}13.4.0
3939
`} </CodeBlock>
4040

4141
</TabItem>

website/docs/install/_common/_content.mdx

Lines changed: 16 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -204,7 +204,7 @@ The command to install the **latest** available version of **riscv-none-elf-gcc*
204204
To install a **specific version**, specify it explicitly:
205205

206206
<CodeBlock language="sh"> {
207-
`xpm install @xpack-dev-tools/riscv-none-elf-gcc@12.5.0-1.1 --verbose
207+
`xpm install @xpack-dev-tools/riscv-none-elf-gcc@13.4.0-1.1 --verbose
208208
`} </CodeBlock>
209209

210210
<Tabs groupId="operating-systems">
@@ -326,7 +326,7 @@ the project build configurations need a PATH adjustment:
326326
<TabItem value="windows" label="Windows" default>
327327

328328
<CodeBlock language="sh"> {
329-
`export PATH=$HOME/AppData/Roaming/xPacks/@xpack-dev-tools/riscv-none-elf-gcc/12.5.0-1.1/.content/bin:$PATH
329+
`export PATH=$HOME/AppData/Roaming/xPacks/@xpack-dev-tools/riscv-none-elf-gcc/13.4.0-1.1/.content/bin:$PATH
330330
`} </CodeBlock>
331331

332332
:::tip
@@ -341,15 +341,15 @@ corresponding shell.
341341
<TabItem value="macos" label="macOS">
342342

343343
<CodeBlock language="sh"> {
344-
`export PATH=$HOME/Library/xPacks/@xpack-dev-tools/riscv-none-elf-gcc/12.5.0-1.1/.content/bin:$PATH
344+
`export PATH=$HOME/Library/xPacks/@xpack-dev-tools/riscv-none-elf-gcc/13.4.0-1.1/.content/bin:$PATH
345345
`} </CodeBlock>
346346

347347
</TabItem>
348348

349349
<TabItem value="linux" label="GNU/Linux">
350350

351351
<CodeBlock language="sh"> {
352-
`export PATH=$HOME/.local/xPacks/@xpack-dev-tools/riscv-none-elf-gcc/12.5.0-1.1/.content/bin:$PATH
352+
`export PATH=$HOME/.local/xPacks/@xpack-dev-tools/riscv-none-elf-gcc/13.4.0-1.1/.content/bin:$PATH
353353
`} </CodeBlock>
354354

355355
</TabItem>
@@ -381,7 +381,7 @@ are packed as `.zip` files.
381381
Download the latest version named like:
382382

383383
<ul>
384-
<li><code>xpack-riscv-none-elf-gcc-12.5.0-1-win32-x64.zip</code></li>
384+
<li><code>xpack-riscv-none-elf-gcc-13.4.0-1-win32-x64.zip</code></li>
385385
</ul>
386386

387387
:::note
@@ -397,7 +397,7 @@ unpack the archive and move it to a location of your choice.
397397

398398
The recommended location is
399399
the <code>%USERPROFILE%\\AppData\\Roaming\\xPacks\\riscv-none-elf-gcc</code> folder, for
400-
example <code>C:\\Users\\ilg\\AppData\\Roaming\\xPacks\\riscv-none-elf-gcc\\xpack-riscv-none-elf-gcc-12.5.0-1</code>.
400+
example <code>C:\\Users\\ilg\\AppData\\Roaming\\xPacks\\riscv-none-elf-gcc\\xpack-riscv-none-elf-gcc-13.4.0-1</code>.
401401

402402
:::note
403403

@@ -415,8 +415,8 @@ are packed as `.tar.gz` archives.
415415
Download the latest version named like:
416416

417417
<ul>
418-
<li><code>xpack-riscv-none-elf-gcc-12.5.0-1-darwin-x64.tar.gz</code></li>
419-
<li><code>xpack-riscv-none-elf-gcc-12.5.0-1-darwin-arm64.tar.gz</code></li>
418+
<li><code>xpack-riscv-none-elf-gcc-13.4.0-1-darwin-x64.tar.gz</code></li>
419+
<li><code>xpack-riscv-none-elf-gcc-13.4.0-1-darwin-arm64.tar.gz</code></li>
420420
</ul>
421421

422422
:::note
@@ -431,14 +431,14 @@ unpack the archive and move it to a location of your choice.
431431

432432
The recommended location is
433433
the <code>~/Library/xPacks/riscv-none-elf-gcc</code> folder, for
434-
example <code>/Users/ilg/Library/xPacks/riscv-none-elf-gcc/xpack-riscv-none-elf-gcc-12.5.0-1</code>:
434+
example <code>/Users/ilg/Library/xPacks/riscv-none-elf-gcc/xpack-riscv-none-elf-gcc-13.4.0-1</code>:
435435

436436
<CodeBlock language="console"> {
437437
`mkdir -p ~/Library/xPacks/riscv-none-elf-gcc
438438
cd ~/Library/xPacks/riscv-none-elf-gcc
439439
440-
tar xvf ~/Downloads/xpack-riscv-none-elf-gcc-12.5.0-1-darwin-x64.tar.gz
441-
chmod -R -w xpack-riscv-none-elf-gcc-12.5.0-1
440+
tar xvf ~/Downloads/xpack-riscv-none-elf-gcc-13.4.0-1-darwin-x64.tar.gz
441+
chmod -R -w xpack-riscv-none-elf-gcc-13.4.0-1
442442
`} </CodeBlock>
443443

444444
</TabItem>
@@ -450,8 +450,8 @@ are packed as `.tar.gz` archives.
450450
Download the latest version named like:
451451

452452
<ul>
453-
<li><code>xpack-riscv-none-elf-gcc-12.5.0-1-linux-x64.tar.gz</code></li>
454-
<li><code>xpack-riscv-none-elf-gcc-12.5.0-1-linux-arm64.tar.gz</code></li>
453+
<li><code>xpack-riscv-none-elf-gcc-13.4.0-1-linux-x64.tar.gz</code></li>
454+
<li><code>xpack-riscv-none-elf-gcc-13.4.0-1-linux-arm64.tar.gz</code></li>
455455
</ul>
456456

457457
:::note
@@ -466,14 +466,14 @@ unpack the archive and move it to a location of your choice.
466466

467467
The recommended location is
468468
the <code>~/.local/xPacks/riscv-none-elf-gcc</code> folder, for
469-
example <code>/home/ilg/.local/xPacks/riscv-none-elf-gcc/xpack-riscv-none-elf-gcc-12.5.0-1</code>:
469+
example <code>/home/ilg/.local/xPacks/riscv-none-elf-gcc/xpack-riscv-none-elf-gcc-13.4.0-1</code>:
470470

471471
<CodeBlock language="console"> {
472472
`mkdir -p ~/.local/xPacks/riscv-none-elf-gcc
473473
cd ~/.local/xPacks/riscv-none-elf-gcc
474474
475-
tar xvf ~/Downloads/xpack-riscv-none-elf-gcc-12.5.0-1-linux-x64.tar.gz
476-
chmod -R -w xpack-riscv-none-elf-gcc-12.5.0-1
475+
tar xvf ~/Downloads/xpack-riscv-none-elf-gcc-13.4.0-1-linux-x64.tar.gz
476+
chmod -R -w xpack-riscv-none-elf-gcc-13.4.0-1
477477
`} </CodeBlock>
478478

479479
</TabItem>

website/docs/install/_common/_manual-install-quick-test.mdx

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -16,26 +16,26 @@ To verify if the {props.descriptiveName} installed manually starts correctly, ut
1616
<TabItem value="windows" label="Windows" default>
1717

1818
<CodeBlock language="console"> {
19-
`C:\\> %USERPROFILE%\\AppData\\Roaming\\xPacks\\${props.permalinkName}\\xpack-${props.permalinkName}-12.5.0-1\\bin\\${props.programName}.exe --version
20-
${props.branding}12.5.0
19+
`C:\\> %USERPROFILE%\\AppData\\Roaming\\xPacks\\${props.permalinkName}\\xpack-${props.permalinkName}-13.4.0-1\\bin\\${props.programName}.exe --version
20+
${props.branding}13.4.0
2121
`} </CodeBlock>
2222

2323
</TabItem>
2424

2525
<TabItem value="macos" label="macOS">
2626

2727
<CodeBlock language="console"> {
28-
`% ~/Library/xPacks/${props.permalinkName}/xpack-${props.permalinkName}-12.5.0-1/bin/${props.programName} --version
29-
${props.branding}12.5.0
28+
`% ~/Library/xPacks/${props.permalinkName}/xpack-${props.permalinkName}-13.4.0-1/bin/${props.programName} --version
29+
${props.branding}13.4.0
3030
`} </CodeBlock>
3131

3232
</TabItem>
3333

3434
<TabItem value="linux" label="GNU/Linux">
3535

3636
<CodeBlock language="console"> {
37-
`$ ~/.local/xPacks/${props.permalinkName}/xpack-${props.permalinkName}-12.5.0-1/bin/${props.programName} --version
38-
${props.branding}12.5.0
37+
`$ ~/.local/xPacks/${props.permalinkName}/xpack-${props.permalinkName}-13.4.0-1/bin/${props.programName} --version
38+
${props.branding}13.4.0
3939
`} </CodeBlock>
4040

4141
</TabItem>

website/docs/install/_common/_reproducibility-and-dependencies.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ The result appears as follows:
2323
"dependencies": {},
2424
"devDependencies": {
2525
"@xpack-dev-tools/riscv-none-elf-gcc": {
26-
"specifier": "12.5.0-1.1",
26+
"specifier": "13.4.0-1.1",
2727
"local": "link",
2828
"platforms": "all"
2929
}

0 commit comments

Comments
 (0)