diff --git a/documentation/ChangeLog.md b/documentation/ChangeLog.md index 28f2e92f4..a10575b98 100644 --- a/documentation/ChangeLog.md +++ b/documentation/ChangeLog.md @@ -1,9 +1,11 @@ ## DDT release ChangeLog +### DDT 0.11.x + * Fixed: added loop detection for all known loop scenarios during semantic engine analysis. + ### DDT 0.10.4 * Fixed #88: Semantic operations (code complete, etc.) involving DUB packages with subpackages would always cause the `dub describe` to run and thus incur a significant slowdown. * Fixed #82: Semantic operations do not work if "dub" program is not on the PATH. - * Fixed: added loop detection for all known loop scenarios during semantic engine analysis. * Implemented #85: Support case-insensitive autocompletion. diff --git a/feature-base/feature.xml b/feature-base/feature.xml index ac9bf5fd4..2ae152438 100644 --- a/feature-base/feature.xml +++ b/feature-base/feature.xml @@ -2,7 +2,7 @@ diff --git a/feature-base/pom.xml b/feature-base/pom.xml index 68e0e7849..78118c448 100644 --- a/feature-base/pom.xml +++ b/feature-base/pom.xml @@ -11,7 +11,7 @@ org.dsource.ddt.base - 0.10.3-SNAPSHOT + 0.10.4-SNAPSHOT eclipse-feature diff --git a/feature/feature.xml b/feature/feature.xml index 07ab5f688..59882a543 100644 --- a/feature/feature.xml +++ b/feature/feature.xml @@ -2,7 +2,7 @@ diff --git a/feature/pom.xml b/feature/pom.xml index 211865529..2cabc9e99 100644 --- a/feature/pom.xml +++ b/feature/pom.xml @@ -11,7 +11,7 @@ org.dsource.ddt - 0.10.3-SNAPSHOT + 0.10.4-SNAPSHOT eclipse-feature diff --git a/plugin_ide.core.tests/META-INF/MANIFEST.MF b/plugin_ide.core.tests/META-INF/MANIFEST.MF index 642dd798d..101480276 100644 --- a/plugin_ide.core.tests/META-INF/MANIFEST.MF +++ b/plugin_ide.core.tests/META-INF/MANIFEST.MF @@ -1,7 +1,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-SymbolicName: org.dsource.ddt.ide.core.tests;singleton:=true -Bundle-Version: 0.10.3.qualifier +Bundle-Version: 0.10.4.qualifier Bundle-Name: org.dsource.ddt.ide.core Tests Fragment-Host: org.dsource.ddt.ide.core Bundle-RequiredExecutionEnvironment: JavaSE-1.7 diff --git a/plugin_ide.core.tests/pom.xml b/plugin_ide.core.tests/pom.xml index bcf8967c9..87019af86 100644 --- a/plugin_ide.core.tests/pom.xml +++ b/plugin_ide.core.tests/pom.xml @@ -11,7 +11,7 @@ org.dsource.ddt.ide.core.tests - 0.10.3-SNAPSHOT + 0.10.4-SNAPSHOT eclipse-test-plugin diff --git a/plugin_ide.core/META-INF/MANIFEST.MF b/plugin_ide.core/META-INF/MANIFEST.MF index 37e3a4e00..69513e245 100644 --- a/plugin_ide.core/META-INF/MANIFEST.MF +++ b/plugin_ide.core/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: %pluginName Bundle-SymbolicName: org.dsource.ddt.ide.core;singleton:=true -Bundle-Version: 0.10.3.qualifier +Bundle-Version: 0.10.4.qualifier Bundle-Vendor: %pluginProvider Bundle-Activator: mmrnmhrm.core.DeeCore Bundle-Localization: plugin diff --git a/plugin_ide.core/pom.xml b/plugin_ide.core/pom.xml index 0d65d4b02..385137ab1 100644 --- a/plugin_ide.core/pom.xml +++ b/plugin_ide.core/pom.xml @@ -11,7 +11,7 @@ org.dsource.ddt.ide.core - 0.10.3-SNAPSHOT + 0.10.4-SNAPSHOT eclipse-plugin \ No newline at end of file diff --git a/plugin_ide.ui.tests/META-INF/MANIFEST.MF b/plugin_ide.ui.tests/META-INF/MANIFEST.MF index 11ac0dafd..0170cf5cd 100644 --- a/plugin_ide.ui.tests/META-INF/MANIFEST.MF +++ b/plugin_ide.ui.tests/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: DDT Tests Bundle-SymbolicName: org.dsource.ddt.ide.ui.tests;singleton:=true -Bundle-Version: 0.10.3.qualifier +Bundle-Version: 0.10.4.qualifier Fragment-Host: org.dsource.ddt.ide.ui Bundle-RequiredExecutionEnvironment: JavaSE-1.7 Require-Bundle: org.junit;bundle-version="4.8.0" diff --git a/plugin_ide.ui.tests/pom.xml b/plugin_ide.ui.tests/pom.xml index 8267b51d7..6339e9206 100644 --- a/plugin_ide.ui.tests/pom.xml +++ b/plugin_ide.ui.tests/pom.xml @@ -11,7 +11,7 @@ org.dsource.ddt.ide.ui.tests - 0.10.3-SNAPSHOT + 0.10.4-SNAPSHOT eclipse-test-plugin diff --git a/plugin_ide.ui/META-INF/MANIFEST.MF b/plugin_ide.ui/META-INF/MANIFEST.MF index c14c286ad..e3047cc02 100644 --- a/plugin_ide.ui/META-INF/MANIFEST.MF +++ b/plugin_ide.ui/META-INF/MANIFEST.MF @@ -3,12 +3,12 @@ Bundle-ManifestVersion: 2 Bundle-Name: %pluginName Bundle-Vendor: %pluginProvider Bundle-SymbolicName: org.dsource.ddt.ide.ui;singleton:=true -Bundle-Version: 0.10.3.qualifier +Bundle-Version: 0.10.4.qualifier Bundle-Activator: mmrnmhrm.ui.DeeUIPlugin Bundle-Localization: plugin Bundle-ActivationPolicy: lazy Bundle-RequiredExecutionEnvironment: JavaSE-1.7 -Require-Bundle: org.dsource.ddt.ide.core;bundle-version="[0.10.3,0.11.0)", +Require-Bundle: org.dsource.ddt.ide.core;bundle-version="[0.10.4,0.11.0)", org.eclipse.core.runtime;bundle-version="3.6.0", org.eclipse.jface.text;bundle-version="3.6.0", org.eclipse.dltk.core;bundle-version="[5.0.0,6.0.0)", diff --git a/plugin_ide.ui/pom.xml b/plugin_ide.ui/pom.xml index c3c4e42b2..3c74f7184 100644 --- a/plugin_ide.ui/pom.xml +++ b/plugin_ide.ui/pom.xml @@ -11,7 +11,7 @@ org.dsource.ddt.ide.ui - 0.10.3-SNAPSHOT + 0.10.4-SNAPSHOT eclipse-plugin