1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-04-21 21:52:10 +02:00

Bump Major version of o.e.cdt.dsf.gdb for CDT 11.0.0

This commit is contained in:
Jonah Graham 2022-10-07 10:43:36 -04:00
parent ca7a2f6bb8
commit 34381cd253
5 changed files with 13 additions and 4 deletions

View file

@ -9,6 +9,7 @@ This section describes API removals that occurred in past releases, and upcoming
## API Changes in CDT 11.0
- [org.eclipse.cdt.ui.newui.AbstractPage reduced visibility of many fields](#newUIAbstractPage)
- [org.eclipse.cdt.dsf.gdb.breakpoints.Messages is no longer API](#org.eclipse.cdt.dsf.gdb.breakpoints.Messages)
## API Changes in CDT 10.5.0
@ -102,6 +103,12 @@ In addition, the following inner class has been removed from the API.
See [Bug 579666](https://bugs.eclipse.org/bugs/show_bug.cgi?id=579666).
### <span id="org.eclipse.cdt.dsf.gdb.breakpoints.Messages">org.eclipse.cdt.dsf.gdb.breakpoints.Messages is no longer API</span>
org.eclipse.cdt.dsf.gdb.breakpoints.Messages should never have been API, Messages classes generally should not be.
See https://github.com/eclipse-cdt/cdt/pull/90
---
## API Changes in CDT 10.5.0.

View file

@ -12,7 +12,7 @@ Require-Bundle: org.eclipse.ui,
org.eclipse.cdt.dsf.ui,
org.eclipse.debug.ui,
org.eclipse.cdt.debug.core,
org.eclipse.cdt.dsf.gdb;bundle-version="[6.0.0,7.0.0)",
org.eclipse.cdt.dsf.gdb;bundle-version="[7.0.0,8.0.0)",
org.eclipse.cdt.debug.ui,
org.eclipse.cdt.core,
org.eclipse.cdt.ui,

View file

@ -3,7 +3,7 @@ Bundle-ManifestVersion: 2
Bundle-Name: %pluginName
Bundle-Vendor: %providerName
Bundle-SymbolicName: org.eclipse.cdt.dsf.gdb;singleton:=true
Bundle-Version: 6.7.0.qualifier
Bundle-Version: 7.0.0.qualifier
Bundle-Activator: org.eclipse.cdt.dsf.gdb.internal.GdbPlugin
Bundle-Localization: plugin
Require-Bundle: org.eclipse.core.runtime,

View file

@ -15,7 +15,9 @@ package org.eclipse.cdt.dsf.gdb.breakpoints;
import org.eclipse.osgi.util.NLS;
/** @since 4.4 */
/**
* @noreference This class is not intended to be referenced by clients.
*/
public class Messages extends NLS {
public static String DynamicPrintf_Invalid_string;
public static String DynamicPrintf_Printf_must_start_with_quote;

View file

@ -13,7 +13,7 @@ Require-Bundle: org.eclipse.ui,
org.eclipse.core.variables,
org.eclipse.ui.ide,
org.eclipse.cdt.debug.core,
org.eclipse.cdt.dsf.gdb;bundle-version="[6.0.0,7.0.0)",
org.eclipse.cdt.dsf.gdb;bundle-version="[7.0.0,8.0.0)",
org.eclipse.cdt.dsf.gdb.ui
Bundle-ActivationPolicy: lazy
Bundle-Vendor: %providerName