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
This is the New & Noteworthy page for CDT 12.6 which is part of Eclipse 2026-09 Simultaneous Release
4
+
5
+
In addition to changes in CDT's own repo, please see the [changelog of CDT LSP](https://github.com/eclipse-cdt/cdt-lsp/blob/main/CHANGELOG.md).
6
+
7
+
---
8
+
9
+
# Release Notes
10
+
11
+
# API Changes, current and planned
12
+
13
+
## Breaking API changes
14
+
15
+
Please see [CHANGELOG-API](CHANGELOG-API.md) for details on the breaking API changes in this release as well as future planned API changes.
16
+
17
+
# Noteworthy Issues and Pull Requests
18
+
19
+
See [Noteworthy issues and PRs](https://github.com/eclipse-cdt/cdt/issues?q=is%3Aclosed+label%3Anoteworthy+milestone%3A12.6.0) for this release in the issue/PR tracker.
20
+
21
+
# Bugs Fixed in this Release
22
+
23
+
See GitHub milestone for CDT [](https://github.com/eclipse-cdt/cdt/milestone/24?closed=1) and CDT LSP [](https://github.com/eclipse-cdt/cdt-lsp/milestone/11?closed=1)
Copy file name to clipboardExpand all lines: RELEASING.md
+6-6Lines changed: 6 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -20,23 +20,23 @@ Prepare main branch for next release
20
20
- in the root pom.xml update comparator.repo, api-baseline.repo, api-baseline.repo.simrel, help-docs-eclipserun-repo, and simrel-site with the correct URLs based on what was used above in the target files/setup files
21
21
- Update versions to CDT.
22
22
- Do a global find/replace, for example:
23
-
- 12.4.0-SNAPSHOT -> 12.5.0-SNAPSHOT
24
-
- 12.4.0.qualifier -> 12.5.0.qualifier
23
+
- 12.5.0-SNAPSHOT -> 12.6.0-SNAPSHOT
24
+
- 12.5.0.qualifier -> 12.6.0.qualifier
25
25
- the above two can be done quickly as the chance of a false positive is very low, after applying them, search for remaining 12.1.0 and 12.1 strings in the codebase and update them - being careful as some of those search results should not be changed. Version ranges in dependencies can be done now, or handled with "update dependency version" as above
26
26
- Usefule commands for performing these updates:
27
27
```
28
28
# Once updated, run the now updated commands:
29
29
CDT_ROOT=$PWD # update if you are not in CDT's root
30
-
find $CDT_ROOT -type f -name pom.xml -exec sed -i s/12.4.0-SNAPSHOT/12.5.0-SNAPSHOT/g {} \;
31
-
find $CDT_ROOT -type f -name feature.xml -exec sed -i s/12.4.0.qualifier/12.5.0.qualifier/g {} \;
32
-
find $CDT_ROOT -type f -name MANIFEST.MF -exec sed -i 's/Bundle-Version: 12.4.0.qualifier/Bundle-Version: 12.5.0.qualifier/g' {} \;
30
+
find $CDT_ROOT -type f -name pom.xml -exec sed -i s/12.5.0-SNAPSHOT/12.6.0-SNAPSHOT/g {} \;
31
+
find $CDT_ROOT -type f -name feature.xml -exec sed -i s/12.5.0.qualifier/12.6.0.qualifier/g {} \;
32
+
find $CDT_ROOT -type f -name MANIFEST.MF -exec sed -i 's/Bundle-Version: 12.5.0.qualifier/Bundle-Version: 12.6.0.qualifier/g' {} \;
- At the beginning of the calendar year, or on the first edit to `**/*.adoc` files, update the copyright end year in `doc/org.eclipse.cdt.doc.user/adoc-headers.txt` and run `releng/scripts/do_generate_asciidoc.sh` to propagate the change to all the asciidoc files.
42
42
- run check_code_cleanliness to make sure that everything looks good `docker run --rm -it -v $(git rev-parse --show-toplevel):/work -w /work/$(git rev-parse --show-prefix) quay.io/eclipse-cdt/cdt-infra:latest releng/scripts/check_code_cleanliness.sh` - if version bumps are needed, see "bump bundle versions" below
0 commit comments