Skip to content

Commit 8c2319f

Browse files
authored
[releng] Prep repo for CDT 12.6.0 development (#1478)
1 parent 60d6e06 commit 8c2319f

136 files changed

Lines changed: 188 additions & 164 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

NewAndNoteworthy/CDT-12.6.md

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
# Release Notes and New & Noteworthy page
2+
3+
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 [![12.6.0](https://img.shields.io/github/milestones/issues-total/eclipse-cdt/cdt/24)](https://github.com/eclipse-cdt/cdt/milestone/24?closed=1) and CDT LSP [![3.7.0](https://img.shields.io/github/milestones/issues-total/eclipse-cdt/cdt-lsp/11)](https://github.com/eclipse-cdt/cdt-lsp/milestone/11?closed=1)

NewAndNoteworthy/README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22

33
What's new and noteworthy in:
44

5+
- [CDT 12.6/2026-06](CDT-12.6.md)
56
- [CDT 12.5/2026-06](CDT-12.5.md)
67
- [CDT 12.4/2026-03](CDT-12.4.md)
78
- [CDT 12.3/2025-12](CDT-12.3.md)

RELEASING.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -20,23 +20,23 @@ Prepare main branch for next release
2020
- 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
2121
- Update versions to CDT.
2222
- 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
2525
- 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
2626
- Usefule commands for performing these updates:
2727
```
2828
# Once updated, run the now updated commands:
2929
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' {} \;
3333
find \
3434
$CDT_ROOT/debug/org.eclipse.cdt.debug.application/plugin.properties \
3535
$CDT_ROOT/debug/org.eclipse.cdt.debug.application/plugin.properties \
3636
$CDT_ROOT/debug/org.eclipse.cdt.debug.application.product/debug.product \
3737
$CDT_ROOT/doc/org.eclipse.cdt.doc.isv/pom.xml \
3838
$CDT_ROOT/remote/org.eclipse.remote.doc.isv/pom.xml \
39-
-type f -exec sed -i s/12.4.0/12.5.0/g {} \;
39+
-type f -exec sed -i s/12.5.0/12.6.0/g {} \;
4040
```
4141
- 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.
4242
- 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

build/org.eclipse.cdt.autotools-feature/feature.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
<feature
1313
id="org.eclipse.cdt.autotools"
1414
label="%featureName"
15-
version="12.5.0.qualifier"
15+
version="12.6.0.qualifier"
1616
provider-name="%provider"
1717
plugin="org.eclipse.cdt.autotools.ui"
1818
license-feature="org.eclipse.license"

build/org.eclipse.cdt.autotools.docs/META-INF/MANIFEST.MF

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ Manifest-Version: 1.0
22
Bundle-ManifestVersion: 2
33
Bundle-Name: %bundleName
44
Bundle-SymbolicName: org.eclipse.cdt.autotools.docs;singleton:=true
5-
Bundle-Version: 12.5.0.qualifier
5+
Bundle-Version: 12.6.0.qualifier
66
Bundle-Vendor: %provider
77
Bundle-Localization: plugin
88
Require-Bundle: org.eclipse.help;bundle-version="[3.10.500,4)",

build/org.eclipse.cdt.autotools.docs/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,11 +17,11 @@
1717
<parent>
1818
<groupId>org.eclipse.cdt</groupId>
1919
<artifactId>cdt-parent</artifactId>
20-
<version>12.5.0-SNAPSHOT</version>
20+
<version>12.6.0-SNAPSHOT</version>
2121
<relativePath>../../pom.xml</relativePath>
2222
</parent>
2323

24-
<version>12.5.0-SNAPSHOT</version>
24+
<version>12.6.0-SNAPSHOT</version>
2525
<artifactId>org.eclipse.cdt.autotools.docs</artifactId>
2626
<packaging>eclipse-plugin</packaging>
2727

build/org.eclipse.cdt.core.autotools-feature/feature.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
<feature
1313
id="org.eclipse.cdt.core.autotools"
1414
label="%featureName"
15-
version="12.5.0.qualifier"
15+
version="12.6.0.qualifier"
1616
provider-name="%providerName"
1717
plugin="org.eclipse.cdt.core.autotools.ui"
1818
license-feature="org.eclipse.license"

build/org.eclipse.cdt.gnu.build-feature/feature.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
<feature
1313
id="org.eclipse.cdt.gnu.build"
1414
label="%featureName"
15-
version="12.5.0.qualifier"
15+
version="12.6.0.qualifier"
1616
provider-name="%providerName"
1717
plugin="org.eclipse.cdt.build.gcc.ui"
1818
license-feature="org.eclipse.license"

build/org.eclipse.cdt.meson-feature/feature.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
<feature
1313
id="org.eclipse.cdt.meson"
1414
label="%featureName"
15-
version="12.5.0.qualifier"
15+
version="12.6.0.qualifier"
1616
provider-name="%providerName"
1717
plugin="org.eclipse.cdt.meson.ui"
1818
license-feature="org.eclipse.license"

build/org.eclipse.cdt.meson.docs/META-INF/MANIFEST.MF

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ Manifest-Version: 1.0
22
Bundle-ManifestVersion: 2
33
Bundle-Name: %bundleName
44
Bundle-SymbolicName: org.eclipse.cdt.meson.docs;singleton:=true
5-
Bundle-Version: 12.5.0.qualifier
5+
Bundle-Version: 12.6.0.qualifier
66
Bundle-Vendor: %provider
77
Bundle-Localization: plugin
88
Require-Bundle: org.eclipse.help;bundle-version="[3.10.500,4)",

0 commit comments

Comments
 (0)