You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: BREAKINGS.md
+6-1Lines changed: 6 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -2,12 +2,17 @@
2
2
3
3
This document outlines all breaking changes introduced in CTBase v0.18.0-beta compared to v0.17.4. Use this guide to migrate your code and understand the impact of these changes.
- The submodule previously named `Extensions` is now named `DevTools` to better reflect its purpose (internal developer tools, not a general extension system)
9
9
- All tag types and functions are unchanged: `run_tests`, `postprocess_coverage`, `automatic_reference_documentation`, `AbstractTestRunnerTag`, `TestRunnerTag`, `AbstractDocumenterReferenceTag`, `DocumenterReferenceTag`, `AbstractCoveragePostprocessingTag`, `CoveragePostprocessingTag`
10
10
-**Migration**: replace `CTBase.Extensions` with `CTBase.DevTools` and `import CTBase.Extensions` with `import CTBase.DevTools` at all call sites
11
+
-**Core utilities**: Added generic building blocks to CTBase.Core for sharing across control-toolbox ecosystem
12
+
-`AbstractCache`: abstract base type for computation caches (e.g. prepared AD plans), exported from Core
13
+
-`make_coerce`: shape-matching coercion helper (`only` for scalars, `identity` for arrays), exported from Core
14
+
- Both moved from CTFlows to CTBase for reuse across packages
15
+
- No breaking changes; purely additive public API. No migration required.
Copy file name to clipboardExpand all lines: CHANGELOGS.md
+41Lines changed: 41 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -5,6 +5,47 @@ All notable changes to CTBase will be documented in this file.
5
5
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
6
6
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7
7
8
+
## [0.21.1-beta] - 2026-06-23
9
+
10
+
### 🔄 Breaking Changes
11
+
12
+
#### **Module Rename: Extensions → DevTools**
13
+
14
+
-**Renamed submodule**: `CTBase.Extensions` → `CTBase.DevTools` to better reflect its purpose (internal developer tools, not a general extension system)
15
+
-**Unchanged API**: All tag types and functions remain unchanged:
0 commit comments