Skip to content

Commit 444ff89

Browse files
committed
v14.1
1 parent 2d12b00 commit 444ff89

File tree

3 files changed

+18
-6
lines changed

3 files changed

+18
-6
lines changed

.github/workflows/make.yml

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,7 @@ on:
44
workflow_dispatch:
55
push:
66
tags:
7-
- v* # push events versioned tags
8-
branches:
9-
- master
7+
- v14.1
108

119
env:
1210
AUTOTESTER_LIBS_GROUP: ${{github.workspace}}/toolchain/clibs.8xg
@@ -60,7 +58,7 @@ jobs:
6058
id: ez80-bins
6159
uses: carlosperate/download-file-action@v2.0.2
6260
with:
63-
file-url: https://github.com/CE-Programming/llvm-project/releases/download/nightly/ez80-clang-link_${{matrix.ez80-bins-suffix}}_nightly.zip
61+
file-url: https://github.com/CE-Programming/llvm-project/releases/download/v15/ez80-clang-link_${{matrix.ez80-bins-suffix}}_v15.zip
6462
- name: Extract ez80-clang
6563
uses: DuckSoft/extract-7z-action@v1.0
6664
with:

changelog.md

Lines changed: 14 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,19 @@
11
# Change Log
22

3-
## [Unreleased](https://github.com/CE-Programming/toolchain/compare/v14.0...master)
3+
## [Unreleased](https://github.com/CE-Programming/toolchain/compare/v14.1...master)
4+
5+
# [v14.1](https://github.com/CE-Programming/toolchain/releases/tag/v14.1) (2026-01-07)
6+
7+
Minor release, and the last toolchain version to be using the compiler based on:
8+
- clang v15 (next will have v17)
9+
- fasmg (next will have standard binutils-based tooling)
10+
11+
Changes:
12+
- [libc] fix some issues with asctime
13+
- [libc] fix some issues with standard allocator
14+
- [tests] fix text_flipped example
15+
- Optimizations to GraphX's gfx_FillRect
16+
- Optimizations to libload
417

518
# [v14.0](https://github.com/CE-Programming/toolchain/releases/tag/v14.0) (2025-12-22)
619

docs/build.sh

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,11 @@
11
#!/bin/bash
22

33
# Default toolchain docs (should be latest release!)
4-
export default_version=v14.0
4+
export default_version=v14.1
55

66
# Maps target directory name to branch
77
declare -A versions_map=(
8+
[v14.1]=v14.1
89
[v14.0]=v14.0
910
[v13.0]=v13.0
1011
[v12.1]=v12.1-docs

0 commit comments

Comments
 (0)