Skip to content

Commit

Permalink
Fixup some API version errors
Browse files Browse the repository at this point in the history
Follow up for #491
  • Loading branch information
jonahgraham committed Aug 16, 2023
1 parent 72c8186 commit 220ba61
Show file tree
Hide file tree
Showing 6 changed files with 19 additions and 5 deletions.
2 changes: 1 addition & 1 deletion core/org.eclipse.cdt.core/META-INF/MANIFEST.MF
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ Manifest-Version: 1.0
Bundle-ManifestVersion: 2
Bundle-Name: %pluginName
Bundle-SymbolicName: org.eclipse.cdt.core; singleton:=true
Bundle-Version: 8.4.0.qualifier
Bundle-Version: 8.3.0.qualifier
Bundle-Activator: org.eclipse.cdt.core.CCorePlugin
Bundle-Vendor: %providerName
Bundle-Localization: plugin
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1052,7 +1052,7 @@ public void setActive() {
}

/**
* @since 8.4
* @since 8.3
* @param launcher - launcher to set
*/
public void setLauncher(ICommandLauncher launcher) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
/**
* Tool chain constants
*
* @since 8.4
* @since 8.3
* @noimplement This interface is not intended to be implemented by clients.
* @noextend This interface is not intended to be extended by clients.
*/
Expand Down
11 changes: 11 additions & 0 deletions launch/org.eclipse.cdt.docker.launcher/.settings/.api_filters
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<component id="org.eclipse.cdt.docker.launcher" version="2">
<resource path="src/org/eclipse/cdt/docker/launcher/ContainerCommandLauncher.java" type="org.eclipse.cdt.docker.launcher.ContainerCommandLauncher">
<filter comment="New constant is an allowable exception to bumping major version" id="336658481">
<message_arguments>
<message_argument value="org.eclipse.cdt.docker.launcher.ContainerCommandLauncher"/>
<message_argument value="SECCOMP_UNCONFINED_STR"/>
</message_arguments>
</filter>
</resource>
</component>
4 changes: 2 additions & 2 deletions launch/org.eclipse.cdt.docker.launcher/META-INF/MANIFEST.MF
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ Manifest-Version: 1.0
Bundle-ManifestVersion: 2
Bundle-Name: %Plugin.name
Bundle-SymbolicName: org.eclipse.cdt.docker.launcher;singleton:=true
Bundle-Version: 2.0.200.qualifier
Bundle-Version: 2.1.0.qualifier
Bundle-Activator: org.eclipse.cdt.docker.launcher.DockerLaunchUIPlugin
Bundle-Vendor: %Plugin.vendor
Bundle-Localization: plugin
Expand All @@ -13,7 +13,7 @@ Require-Bundle: org.eclipse.ui,
org.eclipse.cdt.launch;bundle-version="7.1.0",
org.eclipse.debug.core;bundle-version="3.9.1",
org.eclipse.debug.ui;bundle-version="3.10.1",
org.eclipse.cdt.core;bundle-version="6.5.0",
org.eclipse.cdt.core;bundle-version="8.3.0",
org.eclipse.cdt.debug.core;bundle-version="7.5.0",
org.eclipse.cdt.ui;bundle-version="5.8.0",
org.eclipse.ui.ide;bundle-version="3.10.1",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -68,6 +68,9 @@ public class ContainerCommandLauncher implements ICommandLauncher, ICBuildComman

public final static String VOLUME_SEPARATOR_REGEX = "[|]"; //$NON-NLS-1$

/**
* @since 2.1
*/
public final static String SECCOMP_UNCONFINED_STR = "seccomp=unconfined"; //$NON-NLS-1$

private IProject fProject;
Expand Down

0 comments on commit 220ba61

Please sign in to comment.