diff --git a/CHANGELOG.md b/CHANGELOG.md
index 372fc1e55..ea6c2bc23 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -2,6 +2,15 @@
[TOC text bullet hierarchy]
+## 0.6.0
+
+Выпуск бета-версии для 1C:EDT 2023.2
+
+### Исправленные ошибки
+
+- Автосортировщик не сортирует дочерние подсистемы после получения изменений из базы
+- Исправлены тексты сообщений в проверке common-module-name-global-client
+
## 0.5.0
Выпуск бета-версии для 1C:EDT 2023.1
@@ -57,6 +66,8 @@
- Требование к программному продукту: Для переменных общих модулей проверялся префикс расширения и диагностировалась ошибка
- При анализе расположения устаревших методов учитывался только сценарий расположения устаревшей области в программном интерфейса, теперь учитывается еще и служебный программный интерфейс
+- Исправлена ошибка в сообщении проверки method-optional-parameter-before-required #1351
+- Некорректная работа: md-object-attribute-comment-not-exist #1334
## 0.4.0
diff --git a/README.md b/README.md
index d0b14237f..fa2009401 100644
--- a/README.md
+++ b/README.md
@@ -39,6 +39,7 @@
| Версия | 1C:EDT | JDT для разработки | P2-репозиторий |
|--------|--------|--------------------|----------------|
+| 0.6.0 | 2023.2 | 2022-03 | [p2-link](https://edt.1c.ru/downloads/releases/plugins/v8-code-style/edt-2023.2/0.6.0/repo/), [p2-zip](https://edt.1c.ru/downloads/releases/plugins/v8-code-style/edt-2023.2/0.6.0/repo.zip) |
| 0.5.0 | 2023.1 | 2022-03 | [p2-link](https://edt.1c.ru/downloads/releases/plugins/v8-code-style/edt-2023.1/0.5.0/repo/), [p2-zip](https://edt.1c.ru/downloads/releases/plugins/v8-code-style/edt-2023.1/0.5.0/repo.zip) |
| 0.4.0 | 2022.2 | 2022-03 | [p2-link](https://edt.1c.ru/downloads/releases/plugins/v8-code-style/edt-2022.2/0.4.0/repo/), [p2-zip](https://edt.1c.ru/downloads/releases/plugins/v8-code-style/edt-2022.2/0.4.0/repo.zip) |
| 0.3.0 | 2022.1 | 2022-03 | [p2-link](https://edt.1c.ru/downloads/releases/plugins/v8-code-style/edt-2022.1/0.3.0/repo/), [p2-zip](https://edt.1c.ru/downloads/releases/plugins/v8-code-style/edt-2022.1/0.3.0/repo.zip) |
diff --git a/bom/pom.xml b/bom/pom.xml
index f7694b7a9..dce0e6213 100644
--- a/bom/pom.xml
+++ b/bom/pom.xml
@@ -18,7 +18,7 @@
com.e1c.v8codestyle
bom
- 0.5.0-SNAPSHOT
+ 0.6.0-SNAPSHOT
pom
BOM
@@ -104,7 +104,7 @@
com.e1c.v8codestyle
default
- 0.5.0-SNAPSHOT
+ 0.6.0-SNAPSHOT
diff --git a/bom/set_version.sh b/bom/set_version.sh
index b6b59ee34..19f9deb65 100755
--- a/bom/set_version.sh
+++ b/bom/set_version.sh
@@ -12,9 +12,9 @@
# 1C-Soft LLC - initial API and implementation
#*******************************************************************************
-current_version='0.4.0'
-new_version='0.5.0'
-next_version='0.6.0'
+current_version='0.5.0'
+new_version='0.6.0'
+next_version='0.7.0'
find . -name 'pom.xml' -exec sed -i '' "s/${current_version}-SNAPSHOT/${new_version}-SNAPSHOT/g" {} +
diff --git a/bundles/com.e1c.v8codestyle.autosort.ui/META-INF/MANIFEST.MF b/bundles/com.e1c.v8codestyle.autosort.ui/META-INF/MANIFEST.MF
index 327b3efac..2d31450f1 100644
--- a/bundles/com.e1c.v8codestyle.autosort.ui/META-INF/MANIFEST.MF
+++ b/bundles/com.e1c.v8codestyle.autosort.ui/META-INF/MANIFEST.MF
@@ -2,7 +2,7 @@ Manifest-Version: 1.0
Bundle-ManifestVersion: 2
Bundle-Name: %pluginName
Bundle-SymbolicName: com.e1c.v8codestyle.autosort.ui;singleton:=true
-Bundle-Version: 0.5.0.qualifier
+Bundle-Version: 0.6.0.qualifier
Bundle-Activator: com.e1c.v8codestyle.internal.autosort.ui.UiPlugin
Bundle-Vendor: %providerName
Require-Bundle: org.eclipse.ui;bundle-version="[3.118.0,4.0.0)",
@@ -22,6 +22,6 @@ Import-Package: com._1c.g5.v8.dt.common;version="[6.0.0,7.0.0)",
com._1c.g5.v8.dt.metadata.mdclass;version="[9.0.0,10.0.0)",
com._1c.g5.wiring;version="[2.2.0,3.0.0)",
com._1c.g5.wiring.binder;version="[1.1.0,2.0.0)",
- com.e1c.v8codestyle.autosort;version="[0.5.0,0.6.0)",
+ com.e1c.v8codestyle.autosort;version="[0.6.0,0.7.0)",
com.google.common.base;version="[30.1.0,31.0.0)",
com.google.inject;version="[5.0.0,6.0.0)"
diff --git a/bundles/com.e1c.v8codestyle.autosort.ui/pom.xml b/bundles/com.e1c.v8codestyle.autosort.ui/pom.xml
index 308aed7f8..02d2bf792 100644
--- a/bundles/com.e1c.v8codestyle.autosort.ui/pom.xml
+++ b/bundles/com.e1c.v8codestyle.autosort.ui/pom.xml
@@ -19,9 +19,9 @@
com.e1c.v8codestyle
bundles
- 0.5.0-SNAPSHOT
+ 0.6.0-SNAPSHOT
com.e1c.v8codestyle.autosort.ui
- 0.5.0-SNAPSHOT
+ 0.6.0-SNAPSHOT
eclipse-plugin
diff --git a/bundles/com.e1c.v8codestyle.autosort/META-INF/MANIFEST.MF b/bundles/com.e1c.v8codestyle.autosort/META-INF/MANIFEST.MF
index 02b2079f8..f92046275 100644
--- a/bundles/com.e1c.v8codestyle.autosort/META-INF/MANIFEST.MF
+++ b/bundles/com.e1c.v8codestyle.autosort/META-INF/MANIFEST.MF
@@ -2,7 +2,7 @@ Manifest-Version: 1.0
Bundle-ManifestVersion: 2
Bundle-Name: %pluginName
Bundle-SymbolicName: com.e1c.v8codestyle.autosort;singleton:=true
-Bundle-Version: 0.5.0.qualifier
+Bundle-Version: 0.6.0.qualifier
Bundle-Activator: com.e1c.v8codestyle.internal.autosort.AutoSortPlugin
Bundle-Vendor: %providerName
Require-Bundle: org.eclipse.core.runtime;bundle-version="[3.13.0,4.0.0)",
@@ -29,12 +29,12 @@ Import-Package: com._1c.g5.v8.activitytracking.core;version="[1.0.0,2.0.0)",
com._1c.g5.v8.dt.metadata.mdclass;version="[9.0.0,10.0.0)",
com.e1c.g5.v8.dt.cli.api;version="[2.0.0,3.0.0)",
com.e1c.g5.v8.dt.cli.api.components;version="[2.0.0,3.0.0)",
- com.e1c.v8codestyle;version="[0.5.0,0.6.0)",
+ com.e1c.v8codestyle;version="[0.6.0,0.7.0)",
com.google.common.base;version="[30.1.0,31.0.0)",
com.google.inject;version="[5.0.1,6.0.0)",
com.google.inject.binder;version="[5.0.1,6.0.0)",
org.slf4j;version="[1.7.2,2.0.0)"
-Export-Package: com.e1c.v8codestyle.autosort;version="0.5.0";
+Export-Package: com.e1c.v8codestyle.autosort;version="0.6.0";
uses:="org.eclipse.emf.ecore,
org.eclipse.core.runtime,
org.eclipse.emf.common.util,
diff --git a/bundles/com.e1c.v8codestyle.autosort/pom.xml b/bundles/com.e1c.v8codestyle.autosort/pom.xml
index fc344184b..e273cf652 100644
--- a/bundles/com.e1c.v8codestyle.autosort/pom.xml
+++ b/bundles/com.e1c.v8codestyle.autosort/pom.xml
@@ -19,9 +19,9 @@
com.e1c.v8codestyle
bundles
- 0.5.0-SNAPSHOT
+ 0.6.0-SNAPSHOT
com.e1c.v8codestyle.autosort
- 0.5.0-SNAPSHOT
+ 0.6.0-SNAPSHOT
eclipse-plugin
diff --git a/bundles/com.e1c.v8codestyle.bsl.ui/META-INF/MANIFEST.MF b/bundles/com.e1c.v8codestyle.bsl.ui/META-INF/MANIFEST.MF
index 585577948..32cd5d058 100644
--- a/bundles/com.e1c.v8codestyle.bsl.ui/META-INF/MANIFEST.MF
+++ b/bundles/com.e1c.v8codestyle.bsl.ui/META-INF/MANIFEST.MF
@@ -2,7 +2,7 @@ Manifest-Version: 1.0
Bundle-ManifestVersion: 2
Bundle-Name: %pluginName
Bundle-SymbolicName: com.e1c.v8codestyle.bsl.ui;singleton:=true
-Bundle-Version: 0.5.0.qualifier
+Bundle-Version: 0.6.0.qualifier
Bundle-Activator: com.e1c.v8codestyle.internal.bsl.ui.UiPlugin
Bundle-Vendor: %providerName
Require-Bundle: org.eclipse.core.runtime;bundle-version="[3.20.0,4.0.0)",
@@ -46,5 +46,5 @@ Import-Package: com._1c.g5.ides.ui.texteditor.xtext.embedded;version="[6.0.0,7.0
com.e1c.g5.v8.dt.check.qfix;version="[2.0.0,3.0.0)",
com.e1c.g5.v8.dt.check.qfix.components;version="[1.0.0,2.0.0)",
com.e1c.g5.v8.dt.check.settings;version="[3.0.0,4.0.0)",
- com.e1c.v8codestyle.bsl;version="[0.5.0,0.6.0)",
- com.e1c.v8codestyle.bsl.strict;version="[0.5.0,0.6.0)"
+ com.e1c.v8codestyle.bsl;version="[0.6.0,0.7.0)",
+ com.e1c.v8codestyle.bsl.strict;version="[0.6.0,0.7.0)"
diff --git a/bundles/com.e1c.v8codestyle.bsl.ui/pom.xml b/bundles/com.e1c.v8codestyle.bsl.ui/pom.xml
index 324207574..23f14609f 100644
--- a/bundles/com.e1c.v8codestyle.bsl.ui/pom.xml
+++ b/bundles/com.e1c.v8codestyle.bsl.ui/pom.xml
@@ -19,9 +19,9 @@
com.e1c.v8codestyle
bundles
- 0.5.0-SNAPSHOT
+ 0.6.0-SNAPSHOT
com.e1c.v8codestyle.bsl.ui
- 0.5.0-SNAPSHOT
+ 0.6.0-SNAPSHOT
eclipse-plugin
diff --git a/bundles/com.e1c.v8codestyle.bsl/META-INF/MANIFEST.MF b/bundles/com.e1c.v8codestyle.bsl/META-INF/MANIFEST.MF
index 4a99921b0..51837f833 100644
--- a/bundles/com.e1c.v8codestyle.bsl/META-INF/MANIFEST.MF
+++ b/bundles/com.e1c.v8codestyle.bsl/META-INF/MANIFEST.MF
@@ -2,7 +2,7 @@ Manifest-Version: 1.0
Bundle-ManifestVersion: 2
Bundle-Name: %pluginName
Bundle-SymbolicName: com.e1c.v8codestyle.bsl;singleton:=true
-Bundle-Version: 0.5.0.qualifier
+Bundle-Version: 0.6.0.qualifier
Bundle-Activator: com.e1c.v8codestyle.internal.bsl.BslPlugin
Bundle-Vendor: %providerName
Bundle-Localization: plugin
@@ -54,7 +54,7 @@ Import-Package: com._1c.g5.v8.bm.core;version="[8.0.0,9.0.0)",
com.e1c.g5.v8.dt.check.qfix;version="[2.0.0,3.0.0)",
com.e1c.g5.v8.dt.check.qfix.components;version="[1.0.0,2.0.0)",
com.e1c.g5.v8.dt.check.settings;version="[3.0.0,4.0.0)",
- com.e1c.v8codestyle;version="[0.5.0,0.6.0)",
- com.e1c.v8codestyle.check;version="[0.5.0,0.6.0)"
-Export-Package: com.e1c.v8codestyle.bsl;version="0.5.0",
- com.e1c.v8codestyle.bsl.strict;version="0.5.0"
+ com.e1c.v8codestyle;version="[0.6.0,0.7.0)",
+ com.e1c.v8codestyle.check;version="[0.6.0,0.7.0)"
+Export-Package: com.e1c.v8codestyle.bsl;version="0.6.0",
+ com.e1c.v8codestyle.bsl.strict;version="0.6.0"
diff --git a/bundles/com.e1c.v8codestyle.bsl/pom.xml b/bundles/com.e1c.v8codestyle.bsl/pom.xml
index 2cdd969c5..64fef9140 100644
--- a/bundles/com.e1c.v8codestyle.bsl/pom.xml
+++ b/bundles/com.e1c.v8codestyle.bsl/pom.xml
@@ -19,10 +19,10 @@
com.e1c.v8codestyle
bundles
- 0.5.0-SNAPSHOT
+ 0.6.0-SNAPSHOT
com.e1c.v8codestyle.bsl
- 0.5.0-SNAPSHOT
+ 0.6.0-SNAPSHOT
eclipse-plugin
diff --git a/bundles/com.e1c.v8codestyle.form/META-INF/MANIFEST.MF b/bundles/com.e1c.v8codestyle.form/META-INF/MANIFEST.MF
index af3a45ede..f7bbd6c15 100644
--- a/bundles/com.e1c.v8codestyle.form/META-INF/MANIFEST.MF
+++ b/bundles/com.e1c.v8codestyle.form/META-INF/MANIFEST.MF
@@ -2,7 +2,7 @@ Manifest-Version: 1.0
Bundle-ManifestVersion: 2
Bundle-Name: %pluginName
Bundle-SymbolicName: com.e1c.v8codestyle.form;singleton:=true
-Bundle-Version: 0.5.0.qualifier
+Bundle-Version: 0.6.0.qualifier
Bundle-Activator: com.e1c.v8codestyle.internal.form.CorePlugin
Bundle-Vendor: %providerName
Require-Bundle: org.eclipse.core.runtime;bundle-version="[3.20.0,4.0.0)",
@@ -43,7 +43,7 @@ Import-Package: com._1c.g5.v8.bm.core;version="[8.0.0,9.0.0)",
com.e1c.g5.v8.dt.check.qfix;version="[2.0.0,3.0.0)",
com.e1c.g5.v8.dt.check.qfix.components;version="[1.0.0,2.0.0)",
com.e1c.g5.v8.dt.check.settings;version="[3.0.0,4.0.0)",
- com.e1c.v8codestyle.check;version="[0.5.0,0.6.0)",
+ com.e1c.v8codestyle.check;version="[0.6.0,0.7.0)",
com.google.common.base;version="[30.1.0,31.0.0)",
com.google.inject;version="[5.0.1,6.0.0)",
com.google.inject.binder;version="[5.0.1,6.0.0)"
diff --git a/bundles/com.e1c.v8codestyle.form/pom.xml b/bundles/com.e1c.v8codestyle.form/pom.xml
index 4a7eb0263..d37c25f81 100644
--- a/bundles/com.e1c.v8codestyle.form/pom.xml
+++ b/bundles/com.e1c.v8codestyle.form/pom.xml
@@ -18,10 +18,10 @@
com.e1c.v8codestyle
bundles
- 0.5.0-SNAPSHOT
+ 0.6.0-SNAPSHOT
com.e1c.v8codestyle.form
- 0.5.0-SNAPSHOT
+ 0.6.0-SNAPSHOT
eclipse-plugin
diff --git a/bundles/com.e1c.v8codestyle.md.ui/META-INF/MANIFEST.MF b/bundles/com.e1c.v8codestyle.md.ui/META-INF/MANIFEST.MF
index 92d5da788..754879c9d 100644
--- a/bundles/com.e1c.v8codestyle.md.ui/META-INF/MANIFEST.MF
+++ b/bundles/com.e1c.v8codestyle.md.ui/META-INF/MANIFEST.MF
@@ -2,7 +2,7 @@ Manifest-Version: 1.0
Bundle-ManifestVersion: 2
Bundle-Name: %pluginName
Bundle-SymbolicName: com.e1c.v8codestyle.md.ui;singleton:=true
-Bundle-Version: 0.5.0.qualifier
+Bundle-Version: 0.6.0.qualifier
Bundle-Activator: com.e1c.v8codestyle.internal.md.ui.UiPlugin
Bundle-Vendor: %providerName
Require-Bundle: org.eclipse.ui;bundle-version="[3.119.0,4.0.0)",
@@ -26,6 +26,6 @@ Import-Package: com._1c.g5.v8.dt.common;version="[6.4.0,7.0.0)",
com._1c.g5.v8.dt.ui.wizards;version="[8.0.0,9.0.0)",
com._1c.g5.wiring;version="[2.2.0,3.0.0)",
com._1c.g5.wiring.binder;version="[1.1.0,2.0.0)",
- com.e1c.v8codestyle.md;version="[0.5.0,0.6.0)",
+ com.e1c.v8codestyle.md;version="[0.6.0,0.7.0)",
com.google.common.base;version="[30.1.0,31.0.0)",
com.google.inject;version="[5.0.1,6.0.0)"
diff --git a/bundles/com.e1c.v8codestyle.md.ui/pom.xml b/bundles/com.e1c.v8codestyle.md.ui/pom.xml
index 9267175b5..3bbe3baf9 100644
--- a/bundles/com.e1c.v8codestyle.md.ui/pom.xml
+++ b/bundles/com.e1c.v8codestyle.md.ui/pom.xml
@@ -18,10 +18,10 @@
com.e1c.v8codestyle
bundles
- 0.5.0-SNAPSHOT
+ 0.6.0-SNAPSHOT
com.e1c.v8codestyle.md.ui
- 0.5.0-SNAPSHOT
+ 0.6.0-SNAPSHOT
eclipse-plugin
diff --git a/bundles/com.e1c.v8codestyle.md/META-INF/MANIFEST.MF b/bundles/com.e1c.v8codestyle.md/META-INF/MANIFEST.MF
index 7cde08007..5d00021af 100644
--- a/bundles/com.e1c.v8codestyle.md/META-INF/MANIFEST.MF
+++ b/bundles/com.e1c.v8codestyle.md/META-INF/MANIFEST.MF
@@ -2,7 +2,7 @@ Manifest-Version: 1.0
Bundle-ManifestVersion: 2
Bundle-Name: %pluginName
Bundle-SymbolicName: com.e1c.v8codestyle.md;singleton:=true
-Bundle-Version: 0.5.0.qualifier
+Bundle-Version: 0.6.0.qualifier
Bundle-Activator: com.e1c.v8codestyle.internal.md.CorePlugin
Bundle-Vendor: %providerName
Require-Bundle: org.eclipse.core.runtime;bundle-version="[3.18.0,4.0.0)",
@@ -29,7 +29,7 @@ Import-Package: com._1c.g5.v8.bm.core;version="[8.0.0,9.0.0)",
com.e1c.g5.v8.dt.check.context;version="[2.0.0,3.0.0)",
com.e1c.g5.v8.dt.check.ext;version="[1.0.0,2.0.0)",
com.e1c.g5.v8.dt.check.settings;version="[3.0.0,4.0.0)",
- com.e1c.v8codestyle.check;version="[0.5.0,0.6.0)",
+ com.e1c.v8codestyle.check;version="[0.6.0,0.7.0)",
com.google.common.base;version="[30.1.0,31.0.0)",
com.google.inject;version="[5.0.1,6.0.0)"
-Export-Package: com.e1c.v8codestyle.md;version="0.5.0"
+Export-Package: com.e1c.v8codestyle.md;version="0.6.0"
diff --git a/bundles/com.e1c.v8codestyle.md/pom.xml b/bundles/com.e1c.v8codestyle.md/pom.xml
index 270a7dfa9..bacdf7a11 100644
--- a/bundles/com.e1c.v8codestyle.md/pom.xml
+++ b/bundles/com.e1c.v8codestyle.md/pom.xml
@@ -18,10 +18,10 @@
com.e1c.v8codestyle
bundles
- 0.5.0-SNAPSHOT
+ 0.6.0-SNAPSHOT
com.e1c.v8codestyle.md
- 0.5.0-SNAPSHOT
+ 0.6.0-SNAPSHOT
eclipse-plugin
diff --git a/bundles/com.e1c.v8codestyle.ql/META-INF/MANIFEST.MF b/bundles/com.e1c.v8codestyle.ql/META-INF/MANIFEST.MF
index 1982cbd29..855d953b0 100644
--- a/bundles/com.e1c.v8codestyle.ql/META-INF/MANIFEST.MF
+++ b/bundles/com.e1c.v8codestyle.ql/META-INF/MANIFEST.MF
@@ -2,7 +2,7 @@ Manifest-Version: 1.0
Bundle-ManifestVersion: 2
Bundle-Name: %pluginName
Bundle-SymbolicName: com.e1c.v8codestyle.ql;singleton:=true
-Bundle-Version: 0.5.0.qualifier
+Bundle-Version: 0.6.0.qualifier
Bundle-Activator: com.e1c.v8codestyle.internal.ql.CorePlugin
Bundle-Vendor: %providerName
Require-Bundle: org.eclipse.core.runtime;bundle-version="[3.18.0,4.0.0)",
@@ -27,5 +27,5 @@ Import-Package: com._1c.g5.v8.bm.core;version="[8.0.0,9.0.0)",
com.e1c.g5.v8.dt.check.components;version="[2.0.0,3.0.0)",
com.e1c.g5.v8.dt.check.settings;version="1.0.0",
com.e1c.g5.v8.dt.ql.check;version="[1.0.0,2.0.0)",
- com.e1c.v8codestyle.check;version="[0.5.0,0.6.0)",
+ com.e1c.v8codestyle.check;version="[0.6.0,0.7.0)",
com.google.inject;version="[5.0.1,6.0.0)"
diff --git a/bundles/com.e1c.v8codestyle.ql/pom.xml b/bundles/com.e1c.v8codestyle.ql/pom.xml
index c7e446bff..ede8d4515 100644
--- a/bundles/com.e1c.v8codestyle.ql/pom.xml
+++ b/bundles/com.e1c.v8codestyle.ql/pom.xml
@@ -18,10 +18,10 @@
com.e1c.v8codestyle
bundles
- 0.5.0-SNAPSHOT
+ 0.6.0-SNAPSHOT
com.e1c.v8codestyle.ql
- 0.5.0-SNAPSHOT
+ 0.6.0-SNAPSHOT
eclipse-plugin
diff --git a/bundles/com.e1c.v8codestyle.right/META-INF/MANIFEST.MF b/bundles/com.e1c.v8codestyle.right/META-INF/MANIFEST.MF
index 2389106f6..ea3c25a31 100644
--- a/bundles/com.e1c.v8codestyle.right/META-INF/MANIFEST.MF
+++ b/bundles/com.e1c.v8codestyle.right/META-INF/MANIFEST.MF
@@ -2,7 +2,7 @@ Manifest-Version: 1.0
Bundle-ManifestVersion: 2
Bundle-Name: %pluginName
Bundle-SymbolicName: com.e1c.v8codestyle.right;singleton:=true
-Bundle-Version: 0.5.0.qualifier
+Bundle-Version: 0.6.0.qualifier
Bundle-Activator: com.e1c.v8codestyle.internal.right.CorePlugin
Bundle-Vendor: %providerName
Require-Bundle: org.eclipse.core.runtime;bundle-version="[3.18.0,4.0.0)",
@@ -34,5 +34,5 @@ Import-Package: com._1c.g5.v8.bm.core;version="[8.0.0,9.0.0)",
com.e1c.g5.v8.dt.check.context;version="[2.0.0,3.0.0)",
com.e1c.g5.v8.dt.check.ext;version="[1.0.0,2.0.0)",
com.e1c.g5.v8.dt.check.settings;version="[3.0.0,4.0.0)",
- com.e1c.v8codestyle.check;version="[0.5.0,0.6.0)",
+ com.e1c.v8codestyle.check;version="[0.6.0,0.7.0)",
com.google.inject;version="[5.0.1,6.0.0)"
diff --git a/bundles/com.e1c.v8codestyle.right/pom.xml b/bundles/com.e1c.v8codestyle.right/pom.xml
index 074e0645b..793a68cb8 100644
--- a/bundles/com.e1c.v8codestyle.right/pom.xml
+++ b/bundles/com.e1c.v8codestyle.right/pom.xml
@@ -18,10 +18,10 @@
com.e1c.v8codestyle
bundles
- 0.5.0-SNAPSHOT
+ 0.6.0-SNAPSHOT
com.e1c.v8codestyle.right
- 0.5.0-SNAPSHOT
+ 0.6.0-SNAPSHOT
eclipse-plugin
diff --git a/bundles/com.e1c.v8codestyle.ui/META-INF/MANIFEST.MF b/bundles/com.e1c.v8codestyle.ui/META-INF/MANIFEST.MF
index 47f9eb825..0089c8794 100644
--- a/bundles/com.e1c.v8codestyle.ui/META-INF/MANIFEST.MF
+++ b/bundles/com.e1c.v8codestyle.ui/META-INF/MANIFEST.MF
@@ -2,7 +2,7 @@ Manifest-Version: 1.0
Bundle-ManifestVersion: 2
Bundle-Name: %pluginName
Bundle-SymbolicName: com.e1c.v8codestyle.ui;singleton:=true
-Bundle-Version: 0.5.0.qualifier
+Bundle-Version: 0.6.0.qualifier
Bundle-Activator: com.e1c.v8codestyle.internal.ui.UiPlugin
Bundle-Vendor: %providerName
Bundle-Localization: plugin
@@ -22,5 +22,5 @@ Import-Package: com._1c.g5.v8.dt.common;version="[6.4.0,7.0.0)",
com._1c.g5.v8.dt.ui.wizards;version="[8.1.0,9.0.0)",
com._1c.g5.wiring;version="[2.2.0,3.0.0)",
com._1c.g5.wiring.binder;version="[1.1.0,2.0.0)",
- com.e1c.v8codestyle;version="[0.5.0,0.6.0)",
+ com.e1c.v8codestyle;version="[0.6.0,0.7.0)",
com.google.inject;version="[5.0.1,6.0.0)"
diff --git a/bundles/com.e1c.v8codestyle.ui/pom.xml b/bundles/com.e1c.v8codestyle.ui/pom.xml
index 68170e9d4..2e150d8ed 100644
--- a/bundles/com.e1c.v8codestyle.ui/pom.xml
+++ b/bundles/com.e1c.v8codestyle.ui/pom.xml
@@ -18,10 +18,10 @@
com.e1c.v8codestyle
bundles
- 0.5.0-SNAPSHOT
+ 0.6.0-SNAPSHOT
com.e1c.v8codestyle.ui
- 0.5.0-SNAPSHOT
+ 0.6.0-SNAPSHOT
eclipse-plugin
diff --git a/bundles/com.e1c.v8codestyle/META-INF/MANIFEST.MF b/bundles/com.e1c.v8codestyle/META-INF/MANIFEST.MF
index de0c9659a..591af921b 100644
--- a/bundles/com.e1c.v8codestyle/META-INF/MANIFEST.MF
+++ b/bundles/com.e1c.v8codestyle/META-INF/MANIFEST.MF
@@ -2,7 +2,7 @@ Manifest-Version: 1.0
Bundle-ManifestVersion: 2
Bundle-Name: %pluginName
Bundle-SymbolicName: com.e1c.v8codestyle;singleton:=true
-Bundle-Version: 0.5.0.qualifier
+Bundle-Version: 0.6.0.qualifier
Bundle-Activator: com.e1c.v8codestyle.internal.CorePlugin
Bundle-Vendor: %providerName
Bundle-Localization: plugin
@@ -21,5 +21,5 @@ Import-Package: com._1c.g5.v8.bm.core;version="[8.0.0,9.0.0)",
com.e1c.g5.v8.dt.check.settings;version="1.0.0",
com.google.inject;version="[5.0.1,6.0.0)",
com.google.inject.binder;version="[5.0.1,6.0.0)"
-Export-Package: com.e1c.v8codestyle;version="0.5.0",
- com.e1c.v8codestyle.check;version="0.5.0"
+Export-Package: com.e1c.v8codestyle;version="0.6.0",
+ com.e1c.v8codestyle.check;version="0.6.0"
diff --git a/bundles/com.e1c.v8codestyle/pom.xml b/bundles/com.e1c.v8codestyle/pom.xml
index 4713b1b80..22d0813d6 100644
--- a/bundles/com.e1c.v8codestyle/pom.xml
+++ b/bundles/com.e1c.v8codestyle/pom.xml
@@ -19,9 +19,9 @@
com.e1c.v8codestyle
bundles
- 0.5.0-SNAPSHOT
+ 0.6.0-SNAPSHOT
com.e1c.v8codestyle
- 0.5.0-SNAPSHOT
+ 0.6.0-SNAPSHOT
eclipse-plugin
diff --git a/bundles/pom.xml b/bundles/pom.xml
index 585bd1af9..8a97ba944 100644
--- a/bundles/pom.xml
+++ b/bundles/pom.xml
@@ -14,7 +14,7 @@
com.e1c.v8codestyle
parent
- 0.5.0-SNAPSHOT
+ 0.6.0-SNAPSHOT
com.e1c.v8codestyle
diff --git a/docs/META-INF/MANIFEST.MF b/docs/META-INF/MANIFEST.MF
index 4098c531a..bad207361 100644
--- a/docs/META-INF/MANIFEST.MF
+++ b/docs/META-INF/MANIFEST.MF
@@ -2,7 +2,7 @@ Manifest-Version: 1.0
Bundle-ManifestVersion: 2
Bundle-Name: %pluginName
Bundle-SymbolicName: com.e1c.v8codestyle.docs;singleton:=true
-Bundle-Version: 0.5.0.qualifier
+Bundle-Version: 0.6.0.qualifier
Bundle-Vendor: %providerName
Automatic-Module-Name: com.e1c.v8codestyle.docs
Bundle-RequiredExecutionEnvironment: JavaSE-11
diff --git a/docs/pom.xml b/docs/pom.xml
index 015b8cb6c..0fe31819a 100644
--- a/docs/pom.xml
+++ b/docs/pom.xml
@@ -20,10 +20,10 @@
com.e1c.v8codestyle
parent
- 0.5.0-SNAPSHOT
+ 0.6.0-SNAPSHOT
com.e1c.v8codestyle.docs
- 0.5.0-SNAPSHOT
+ 0.6.0-SNAPSHOT
com.e1c.v8codestyle
eclipse-plugin
diff --git a/features/com.e1c.v8codestyle.feature/feature.xml b/features/com.e1c.v8codestyle.feature/feature.xml
index 21b99dc26..db327b03e 100644
--- a/features/com.e1c.v8codestyle.feature/feature.xml
+++ b/features/com.e1c.v8codestyle.feature/feature.xml
@@ -14,7 +14,7 @@
com.e1c.v8codestyle
features
- 0.5.0-SNAPSHOT
+ 0.6.0-SNAPSHOT
com.e1c.v8codestyle.feature
- 0.5.0-SNAPSHOT
+ 0.6.0-SNAPSHOT
eclipse-feature
diff --git a/features/com.e1c.v8codestyle.sdk.feature/feature.xml b/features/com.e1c.v8codestyle.sdk.feature/feature.xml
index 55560e215..45e4dbae5 100644
--- a/features/com.e1c.v8codestyle.sdk.feature/feature.xml
+++ b/features/com.e1c.v8codestyle.sdk.feature/feature.xml
@@ -14,7 +14,7 @@
@@ -33,11 +33,11 @@
+ version="0.6.0.qualifier"/>
diff --git a/features/com.e1c.v8codestyle.sdk.feature/pom.xml b/features/com.e1c.v8codestyle.sdk.feature/pom.xml
index c6a892d4a..a6f1862e2 100644
--- a/features/com.e1c.v8codestyle.sdk.feature/pom.xml
+++ b/features/com.e1c.v8codestyle.sdk.feature/pom.xml
@@ -18,7 +18,7 @@
com.e1c.v8codestyle
features
- 0.5.0-SNAPSHOT
+ 0.6.0-SNAPSHOT
com.e1c.v8codestyle.sdk
diff --git a/features/pom.xml b/features/pom.xml
index 5812827b6..ef1cc8476 100644
--- a/features/pom.xml
+++ b/features/pom.xml
@@ -16,7 +16,7 @@
com.e1c.v8codestyle
parent
- 0.5.0-SNAPSHOT
+ 0.6.0-SNAPSHOT
features
diff --git a/pom.xml b/pom.xml
index 509c38075..f4081327c 100644
--- a/pom.xml
+++ b/pom.xml
@@ -16,13 +16,13 @@
com.e1c.v8codestyle
bom
- 0.5.0-SNAPSHOT
+ 0.6.0-SNAPSHOT
./bom/pom.xml
com.e1c.v8codestyle
parent
- 0.5.0-SNAPSHOT
+ 0.6.0-SNAPSHOT
pom
1C:Code style V8
diff --git a/repositories/com.e1c.v8codestyle.repository.sdk/pom.xml b/repositories/com.e1c.v8codestyle.repository.sdk/pom.xml
index f5fbb2ed1..61728714e 100644
--- a/repositories/com.e1c.v8codestyle.repository.sdk/pom.xml
+++ b/repositories/com.e1c.v8codestyle.repository.sdk/pom.xml
@@ -19,7 +19,7 @@
com.e1c.v8codestyle
repositories
- 0.5.0-SNAPSHOT
+ 0.6.0-SNAPSHOT
com.e1c.v8codestyle.repository.sdk
diff --git a/repositories/com.e1c.v8codestyle.repository/pom.xml b/repositories/com.e1c.v8codestyle.repository/pom.xml
index 0fddbc7bc..eb78a61f4 100644
--- a/repositories/com.e1c.v8codestyle.repository/pom.xml
+++ b/repositories/com.e1c.v8codestyle.repository/pom.xml
@@ -19,7 +19,7 @@
com.e1c.v8codestyle
repositories
- 0.5.0-SNAPSHOT
+ 0.6.0-SNAPSHOT
com.e1c.v8codestyle.repository
diff --git a/repositories/pom.xml b/repositories/pom.xml
index 58de024c6..2792892dd 100644
--- a/repositories/pom.xml
+++ b/repositories/pom.xml
@@ -16,7 +16,7 @@
com.e1c.v8codestyle
parent
- 0.5.0-SNAPSHOT
+ 0.6.0-SNAPSHOT
repositories
diff --git a/targets/default/pom.xml b/targets/default/pom.xml
index e285f5102..26a846eb8 100644
--- a/targets/default/pom.xml
+++ b/targets/default/pom.xml
@@ -19,12 +19,12 @@
com.e1c.v8codestyle
targets
- 0.5.0-SNAPSHOT
+ 0.6.0-SNAPSHOT
com.e1c.v8codestyle
default
- 0.5.0-SNAPSHOT
+ 0.6.0-SNAPSHOT
eclipse-target-definition
diff --git a/targets/pom.xml b/targets/pom.xml
index 0b047a1a8..ece74bbac 100644
--- a/targets/pom.xml
+++ b/targets/pom.xml
@@ -19,7 +19,7 @@
com.e1c.v8codestyle
parent
- 0.5.0-SNAPSHOT
+ 0.6.0-SNAPSHOT
targets
diff --git a/tests/com.e1c.v8codestyle.autosort.itests/META-INF/MANIFEST.MF b/tests/com.e1c.v8codestyle.autosort.itests/META-INF/MANIFEST.MF
index 1b9a03e26..8c97e2985 100644
--- a/tests/com.e1c.v8codestyle.autosort.itests/META-INF/MANIFEST.MF
+++ b/tests/com.e1c.v8codestyle.autosort.itests/META-INF/MANIFEST.MF
@@ -2,9 +2,9 @@ Manifest-Version: 1.0
Bundle-ManifestVersion: 2
Bundle-Name: %pluginName
Bundle-SymbolicName: com.e1c.v8codestyle.autosort.itests;singleton:=true
-Bundle-Version: 0.5.0.qualifier
+Bundle-Version: 0.6.0.qualifier
Bundle-Vendor: %providerName
-Fragment-Host: com.e1c.v8codestyle.autosort;bundle-version="[0.5.0,0.6.0)"
+Fragment-Host: com.e1c.v8codestyle.autosort;bundle-version="[0.6.0,0.7.0)"
Automatic-Module-Name: com.e1c.v8codestyle.autosort.itests
Bundle-RequiredExecutionEnvironment: JavaSE-11
Bundle-Localization: fragment
diff --git a/tests/com.e1c.v8codestyle.autosort.itests/pom.xml b/tests/com.e1c.v8codestyle.autosort.itests/pom.xml
index c7f9aacd0..f0d3ff08d 100644
--- a/tests/com.e1c.v8codestyle.autosort.itests/pom.xml
+++ b/tests/com.e1c.v8codestyle.autosort.itests/pom.xml
@@ -19,9 +19,9 @@
com.e1c.v8codestyle
tests
- 0.5.0-SNAPSHOT
+ 0.6.0-SNAPSHOT
com.e1c.v8codestyle.autosort.itests
- 0.5.0-SNAPSHOT
+ 0.6.0-SNAPSHOT
eclipse-test-plugin
\ No newline at end of file
diff --git a/tests/com.e1c.v8codestyle.bsl.itests/META-INF/MANIFEST.MF b/tests/com.e1c.v8codestyle.bsl.itests/META-INF/MANIFEST.MF
index c2469813f..cce9a479a 100644
--- a/tests/com.e1c.v8codestyle.bsl.itests/META-INF/MANIFEST.MF
+++ b/tests/com.e1c.v8codestyle.bsl.itests/META-INF/MANIFEST.MF
@@ -2,9 +2,9 @@ Manifest-Version: 1.0
Bundle-ManifestVersion: 2
Bundle-Name: %pluginName
Bundle-SymbolicName: com.e1c.v8codestyle.bsl.itests;singleton:=true
-Bundle-Version: 0.5.0.qualifier
+Bundle-Version: 0.6.0.qualifier
Bundle-Vendor: %providerName
-Fragment-Host: com.e1c.v8codestyle.bsl;bundle-version="[0.5.0,0.6.0)"
+Fragment-Host: com.e1c.v8codestyle.bsl;bundle-version="[0.6.0,0.7.0)"
Automatic-Module-Name: com.e1c.v8codestyle.md.itests
Bundle-RequiredExecutionEnvironment: JavaSE-11
Bundle-Localization: fragment
diff --git a/tests/com.e1c.v8codestyle.bsl.itests/pom.xml b/tests/com.e1c.v8codestyle.bsl.itests/pom.xml
index ba6d85b63..64f127439 100644
--- a/tests/com.e1c.v8codestyle.bsl.itests/pom.xml
+++ b/tests/com.e1c.v8codestyle.bsl.itests/pom.xml
@@ -19,9 +19,9 @@
com.e1c.v8codestyle
tests
- 0.5.0-SNAPSHOT
+ 0.6.0-SNAPSHOT
com.e1c.v8codestyle.bsl.itests
- 0.5.0-SNAPSHOT
+ 0.6.0-SNAPSHOT
eclipse-test-plugin
\ No newline at end of file
diff --git a/tests/com.e1c.v8codestyle.bsl.ui.itests/META-INF/MANIFEST.MF b/tests/com.e1c.v8codestyle.bsl.ui.itests/META-INF/MANIFEST.MF
index d427fc081..c5e634e23 100644
--- a/tests/com.e1c.v8codestyle.bsl.ui.itests/META-INF/MANIFEST.MF
+++ b/tests/com.e1c.v8codestyle.bsl.ui.itests/META-INF/MANIFEST.MF
@@ -2,9 +2,9 @@ Manifest-Version: 1.0
Bundle-ManifestVersion: 2
Bundle-Name: %pluginName
Bundle-SymbolicName: com.e1c.v8codestyle.bsl.ui.itests;singleton:=true
-Bundle-Version: 0.5.0.qualifier
+Bundle-Version: 0.6.0.qualifier
Bundle-Vendor: %providerName
-Fragment-Host: com.e1c.v8codestyle.bsl.ui;bundle-version="[0.5.0,0.6.0)"
+Fragment-Host: com.e1c.v8codestyle.bsl.ui;bundle-version="[0.6.0,0.7.0)"
Automatic-Module-Name: com.e1c.v8codestyle.bsl.ui.itests
Bundle-RequiredExecutionEnvironment: JavaSE-11
Bundle-Localization: fragment
diff --git a/tests/com.e1c.v8codestyle.bsl.ui.itests/pom.xml b/tests/com.e1c.v8codestyle.bsl.ui.itests/pom.xml
index 4a3205426..f553971dd 100644
--- a/tests/com.e1c.v8codestyle.bsl.ui.itests/pom.xml
+++ b/tests/com.e1c.v8codestyle.bsl.ui.itests/pom.xml
@@ -19,9 +19,9 @@
com.e1c.v8codestyle
tests
- 0.5.0-SNAPSHOT
+ 0.6.0-SNAPSHOT
com.e1c.v8codestyle.bsl.ui.itests
- 0.5.0-SNAPSHOT
+ 0.6.0-SNAPSHOT
eclipse-test-plugin
\ No newline at end of file
diff --git a/tests/com.e1c.v8codestyle.form.itests/META-INF/MANIFEST.MF b/tests/com.e1c.v8codestyle.form.itests/META-INF/MANIFEST.MF
index 515be0815..89fafcd2c 100644
--- a/tests/com.e1c.v8codestyle.form.itests/META-INF/MANIFEST.MF
+++ b/tests/com.e1c.v8codestyle.form.itests/META-INF/MANIFEST.MF
@@ -2,9 +2,9 @@ Manifest-Version: 1.0
Bundle-ManifestVersion: 2
Bundle-Name: %pluginName
Bundle-SymbolicName: com.e1c.v8codestyle.form.itests;singleton:=true
-Bundle-Version: 0.5.0.qualifier
+Bundle-Version: 0.6.0.qualifier
Bundle-Vendor: %providerName
-Fragment-Host: com.e1c.v8codestyle.form;bundle-version="[0.5.0,0.6.0)"
+Fragment-Host: com.e1c.v8codestyle.form;bundle-version="[0.6.0,0.7.0)"
Automatic-Module-Name: com.e1c.v8codestyle.form.itests
Bundle-RequiredExecutionEnvironment: JavaSE-11
Bundle-Localization: fragment
diff --git a/tests/com.e1c.v8codestyle.form.itests/pom.xml b/tests/com.e1c.v8codestyle.form.itests/pom.xml
index 224b0de73..01a70a536 100644
--- a/tests/com.e1c.v8codestyle.form.itests/pom.xml
+++ b/tests/com.e1c.v8codestyle.form.itests/pom.xml
@@ -19,9 +19,9 @@
com.e1c.v8codestyle
tests
- 0.5.0-SNAPSHOT
+ 0.6.0-SNAPSHOT
com.e1c.v8codestyle.form.itests
- 0.5.0-SNAPSHOT
+ 0.6.0-SNAPSHOT
eclipse-test-plugin
\ No newline at end of file
diff --git a/tests/com.e1c.v8codestyle.md.itests/META-INF/MANIFEST.MF b/tests/com.e1c.v8codestyle.md.itests/META-INF/MANIFEST.MF
index 26d38498b..4bee1cbba 100644
--- a/tests/com.e1c.v8codestyle.md.itests/META-INF/MANIFEST.MF
+++ b/tests/com.e1c.v8codestyle.md.itests/META-INF/MANIFEST.MF
@@ -2,9 +2,9 @@ Manifest-Version: 1.0
Bundle-ManifestVersion: 2
Bundle-Name: %pluginName
Bundle-SymbolicName: com.e1c.v8codestyle.md.itests;singleton:=true
-Bundle-Version: 0.5.0.qualifier
+Bundle-Version: 0.6.0.qualifier
Bundle-Vendor: %providerName
-Fragment-Host: com.e1c.v8codestyle.md;bundle-version="[0.5.0,0.6.0)"
+Fragment-Host: com.e1c.v8codestyle.md;bundle-version="[0.6.0,0.7.0)"
Automatic-Module-Name: com.e1c.v8codestyle.md.itests
Bundle-RequiredExecutionEnvironment: JavaSE-11
Bundle-Localization: fragment
diff --git a/tests/com.e1c.v8codestyle.md.itests/pom.xml b/tests/com.e1c.v8codestyle.md.itests/pom.xml
index e871da704..d2854217e 100644
--- a/tests/com.e1c.v8codestyle.md.itests/pom.xml
+++ b/tests/com.e1c.v8codestyle.md.itests/pom.xml
@@ -19,9 +19,9 @@
com.e1c.v8codestyle
tests
- 0.5.0-SNAPSHOT
+ 0.6.0-SNAPSHOT
com.e1c.v8codestyle.md.itests
- 0.5.0-SNAPSHOT
+ 0.6.0-SNAPSHOT
eclipse-test-plugin
\ No newline at end of file
diff --git a/tests/com.e1c.v8codestyle.ql.itests/META-INF/MANIFEST.MF b/tests/com.e1c.v8codestyle.ql.itests/META-INF/MANIFEST.MF
index 033c6cb3e..b3bbca96e 100644
--- a/tests/com.e1c.v8codestyle.ql.itests/META-INF/MANIFEST.MF
+++ b/tests/com.e1c.v8codestyle.ql.itests/META-INF/MANIFEST.MF
@@ -2,9 +2,9 @@ Manifest-Version: 1.0
Bundle-ManifestVersion: 2
Bundle-Name: %pluginName
Bundle-SymbolicName: com.e1c.v8codestyle.ql.itests;singleton:=true
-Bundle-Version: 0.5.0.qualifier
+Bundle-Version: 0.6.0.qualifier
Bundle-Vendor: %providerName
-Fragment-Host: com.e1c.v8codestyle.ql;bundle-version="[0.5.0,0.6.0)"
+Fragment-Host: com.e1c.v8codestyle.ql;bundle-version="[0.6.0,0.7.0)"
Automatic-Module-Name: com.e1c.v8codestyle.ql.itests
Bundle-RequiredExecutionEnvironment: JavaSE-11
Bundle-Localization: fragment
diff --git a/tests/com.e1c.v8codestyle.ql.itests/pom.xml b/tests/com.e1c.v8codestyle.ql.itests/pom.xml
index 1566ca1ae..72cbba119 100644
--- a/tests/com.e1c.v8codestyle.ql.itests/pom.xml
+++ b/tests/com.e1c.v8codestyle.ql.itests/pom.xml
@@ -19,9 +19,9 @@
com.e1c.v8codestyle
tests
- 0.5.0-SNAPSHOT
+ 0.6.0-SNAPSHOT
com.e1c.v8codestyle.ql.itests
- 0.5.0-SNAPSHOT
+ 0.6.0-SNAPSHOT
eclipse-test-plugin
\ No newline at end of file
diff --git a/tests/com.e1c.v8codestyle.right.itests/META-INF/MANIFEST.MF b/tests/com.e1c.v8codestyle.right.itests/META-INF/MANIFEST.MF
index 5ab9e28d4..fa254a928 100644
--- a/tests/com.e1c.v8codestyle.right.itests/META-INF/MANIFEST.MF
+++ b/tests/com.e1c.v8codestyle.right.itests/META-INF/MANIFEST.MF
@@ -2,9 +2,9 @@ Manifest-Version: 1.0
Bundle-ManifestVersion: 2
Bundle-Name: %pluginName
Bundle-SymbolicName: com.e1c.v8codestyle.right.itests;singleton:=true
-Bundle-Version: 0.5.0.qualifier
+Bundle-Version: 0.6.0.qualifier
Bundle-Vendor: %providerName
-Fragment-Host: com.e1c.v8codestyle.right;bundle-version="[0.5.0,0.6.0)"
+Fragment-Host: com.e1c.v8codestyle.right;bundle-version="[0.6.0,0.7.0)"
Automatic-Module-Name: com.e1c.v8codestyle.right.itests
Bundle-RequiredExecutionEnvironment: JavaSE-11
Bundle-Localization: fragment
diff --git a/tests/com.e1c.v8codestyle.right.itests/pom.xml b/tests/com.e1c.v8codestyle.right.itests/pom.xml
index 49f041c17..5a3e11457 100644
--- a/tests/com.e1c.v8codestyle.right.itests/pom.xml
+++ b/tests/com.e1c.v8codestyle.right.itests/pom.xml
@@ -19,9 +19,9 @@
com.e1c.v8codestyle
tests
- 0.5.0-SNAPSHOT
+ 0.6.0-SNAPSHOT
com.e1c.v8codestyle.right.itests
- 0.5.0-SNAPSHOT
+ 0.6.0-SNAPSHOT
eclipse-test-plugin
\ No newline at end of file
diff --git a/tests/pom.xml b/tests/pom.xml
index 6471fae41..d85ba3454 100644
--- a/tests/pom.xml
+++ b/tests/pom.xml
@@ -16,7 +16,7 @@
com.e1c.v8codestyle
parent
- 0.5.0-SNAPSHOT
+ 0.6.0-SNAPSHOT
tests
@@ -81,7 +81,7 @@
com.e1c.v8codestyle
default
- 0.5.0-SNAPSHOT
+ 0.6.0-SNAPSHOT