Skip to content

Commit f4095b1

Browse files
committed
Версия 0.5
1 parent 2337830 commit f4095b1

File tree

55 files changed

+136
-111
lines changed

Some content is hidden

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

55 files changed

+136
-111
lines changed

CHANGELOG.md

Lines changed: 29 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,36 @@
22

33
[TOC text bullet hierarchy]
44

5+
## 0.5.0
6+
7+
8+
### Новые проверки
9+
10+
11+
#### Метаданные
12+
13+
14+
#### Формы
15+
16+
17+
#### Код модулей
18+
19+
20+
#### Запросы
21+
22+
23+
#### Права ролей
24+
25+
26+
### Новые быстрые исправления (Quick-fix)
27+
28+
29+
### Исправленные ошибки
30+
31+
532
## 0.4.0
633

34+
- Выпуск бета-версии для 1C:EDT 2022.2
735

836
### Новые проверки
937

@@ -33,13 +61,9 @@
3361
- Устаревшая процедура (функция) расположена вне области "УстаревшиеПроцедурыИФункции"
3462
- Использован обработчик событий, подключаемый из кода и не содержащий префикса "Подключаемый_"
3563

36-
#### Запросы
37-
38-
39-
#### Права ролей
40-
4164

4265
### Новые быстрые исправления (Quick-fix)
66+
4367
- Исправление превышения максимального количества допустимых пустых строк
4468

4569
#### Автосортировка

README.md

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

4040
| Версия | 1C:EDT | JDT для разработки | P2-репозиторий |
4141
|--------|--------|--------------------|----------------|
42+
| 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) |
4243
| 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) |
4344
| 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) |
4445
| 0.2.0 | 2021.3 | 2020-12 | [p2-link](https://edt.1c.ru/downloads/releases/plugins/v8-code-style/edt-2021.3/0.2.0/repo/), [p2-zip](https://edt.1c.ru/downloads/releases/plugins/v8-code-style/edt-2021.3/0.2.0/repo.zip) |

bom/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818

1919
<groupId>com.e1c.v8codestyle</groupId>
2020
<artifactId>bom</artifactId>
21-
<version>0.4.0-SNAPSHOT</version>
21+
<version>0.5.0-SNAPSHOT</version>
2222
<packaging>pom</packaging>
2323

2424
<name>BOM</name>
@@ -104,7 +104,7 @@
104104
<artifact>
105105
<groupId>com.e1c.v8codestyle</groupId>
106106
<artifactId>default</artifactId>
107-
<version>0.4.0-SNAPSHOT</version>
107+
<version>0.5.0-SNAPSHOT</version>
108108
</artifact>
109109
</target>
110110
<environments>

bom/set_version.sh

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,9 @@
1212
# 1C-Soft LLC - initial API and implementation
1313
#*******************************************************************************
1414

15-
current_version='0.3.0'
16-
new_version='0.4.0'
17-
next_version='0.5.0'
15+
current_version='0.4.0'
16+
new_version='0.5.0'
17+
next_version='0.6.0'
1818

1919
find . -name 'pom.xml' -exec sed -i '' "s/${current_version}-SNAPSHOT/${new_version}-SNAPSHOT/g" {} +
2020

bundles/com.e1c.v8codestyle.autosort.ui/META-INF/MANIFEST.MF

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ Manifest-Version: 1.0
22
Bundle-ManifestVersion: 2
33
Bundle-Name: %pluginName
44
Bundle-SymbolicName: com.e1c.v8codestyle.autosort.ui;singleton:=true
5-
Bundle-Version: 0.4.0.qualifier
5+
Bundle-Version: 0.5.0.qualifier
66
Bundle-Activator: com.e1c.v8codestyle.internal.autosort.ui.UiPlugin
77
Bundle-Vendor: %providerName
88
Require-Bundle: org.eclipse.ui;bundle-version="[3.118.0,4.0.0)",
@@ -18,6 +18,6 @@ Import-Package: com._1c.g5.v8.dt.common;version="[6.0.0,7.0.0)",
1818
com._1c.g5.v8.dt.metadata.mdclass;version="[8.0.0,9.0.0)",
1919
com._1c.g5.wiring;version="[2.2.0,3.0.0)",
2020
com._1c.g5.wiring.binder;version="[1.1.0,2.0.0)",
21-
com.e1c.v8codestyle.autosort;version="[0.4.0,0.5.0)",
21+
com.e1c.v8codestyle.autosort;version="[0.5.0,0.6.0)",
2222
com.google.common.base;version="[30.1.0,31.0.0)",
2323
com.google.inject;version="[5.0.1,6.0.0)"

bundles/com.e1c.v8codestyle.autosort.ui/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,9 +19,9 @@
1919
<parent>
2020
<groupId>com.e1c.v8codestyle</groupId>
2121
<artifactId>bundles</artifactId>
22-
<version>0.4.0-SNAPSHOT</version>
22+
<version>0.5.0-SNAPSHOT</version>
2323
</parent>
2424
<artifactId>com.e1c.v8codestyle.autosort.ui</artifactId>
25-
<version>0.4.0-SNAPSHOT</version>
25+
<version>0.5.0-SNAPSHOT</version>
2626
<packaging>eclipse-plugin</packaging>
2727
</project>

bundles/com.e1c.v8codestyle.autosort/META-INF/MANIFEST.MF

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ Manifest-Version: 1.0
22
Bundle-ManifestVersion: 2
33
Bundle-Name: %pluginName
44
Bundle-SymbolicName: com.e1c.v8codestyle.autosort;singleton:=true
5-
Bundle-Version: 0.4.0.qualifier
5+
Bundle-Version: 0.5.0.qualifier
66
Bundle-Activator: com.e1c.v8codestyle.internal.autosort.AutoSortPlugin
77
Bundle-Vendor: %providerName
88
Require-Bundle: org.eclipse.core.runtime;bundle-version="[3.13.0,4.0.0)",
@@ -26,11 +26,11 @@ Import-Package: com._1c.g5.v8.bm.common.collections;version="[3.0.0,4.0.0)",
2626
com._1c.g5.v8.dt.core.platform;version="[10.0.0,11.0.0)",
2727
com._1c.g5.v8.dt.lifecycle;version="[3.0.0,4.0.0)",
2828
com._1c.g5.v8.dt.metadata.mdclass;version="[8.0.0,9.0.0)",
29-
com.e1c.v8codestyle;version="[0.4.0,0.5.0)",
29+
com.e1c.v8codestyle;version="[0.5.0,0.6.0)",
3030
com.google.common.base;version="[30.1.0,31.0.0)",
3131
com.google.inject;version="[5.0.1,6.0.0)",
3232
com.google.inject.binder;version="[5.0.1,6.0.0)"
33-
Export-Package: com.e1c.v8codestyle.autosort;version="0.4.0";
33+
Export-Package: com.e1c.v8codestyle.autosort;version="0.5.0";
3434
uses:="org.eclipse.emf.ecore,
3535
org.eclipse.core.runtime,
3636
org.eclipse.emf.common.util,

bundles/com.e1c.v8codestyle.autosort/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,9 +19,9 @@
1919
<parent>
2020
<groupId>com.e1c.v8codestyle</groupId>
2121
<artifactId>bundles</artifactId>
22-
<version>0.4.0-SNAPSHOT</version>
22+
<version>0.5.0-SNAPSHOT</version>
2323
</parent>
2424
<artifactId>com.e1c.v8codestyle.autosort</artifactId>
25-
<version>0.4.0-SNAPSHOT</version>
25+
<version>0.5.0-SNAPSHOT</version>
2626
<packaging>eclipse-plugin</packaging>
2727
</project>

bundles/com.e1c.v8codestyle.bsl.ui/META-INF/MANIFEST.MF

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ Manifest-Version: 1.0
22
Bundle-ManifestVersion: 2
33
Bundle-Name: %pluginName
44
Bundle-SymbolicName: com.e1c.v8codestyle.bsl.ui;singleton:=true
5-
Bundle-Version: 0.4.0.qualifier
5+
Bundle-Version: 0.5.0.qualifier
66
Bundle-Activator: com.e1c.v8codestyle.internal.bsl.ui.UiPlugin
77
Bundle-Vendor: %providerName
88
Require-Bundle: org.eclipse.ui;bundle-version="[3.119.0,4.0.0)",
@@ -50,5 +50,5 @@ Import-Package: com._1c.g5.ides.ui.texteditor.xtext.embedded;version="[5.0.0,6.0
5050
com.e1c.g5.v8.dt.check.qfix;version="[1.0.0,2.0.0)",
5151
com.e1c.g5.v8.dt.check.qfix.components;version="[1.0.0,2.0.0)",
5252
com.e1c.g5.v8.dt.check.settings;version="[3.0.0,4.0.0)",
53-
com.e1c.v8codestyle.bsl;version="[0.4.0,0.5.0)",
54-
com.e1c.v8codestyle.bsl.strict;version="[0.4.0,0.5.0)"
53+
com.e1c.v8codestyle.bsl;version="[0.5.0,0.6.0)",
54+
com.e1c.v8codestyle.bsl.strict;version="[0.5.0,0.6.0)"

bundles/com.e1c.v8codestyle.bsl.ui/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,9 +19,9 @@
1919
<parent>
2020
<groupId>com.e1c.v8codestyle</groupId>
2121
<artifactId>bundles</artifactId>
22-
<version>0.4.0-SNAPSHOT</version>
22+
<version>0.5.0-SNAPSHOT</version>
2323
</parent>
2424
<artifactId>com.e1c.v8codestyle.bsl.ui</artifactId>
25-
<version>0.4.0-SNAPSHOT</version>
25+
<version>0.5.0-SNAPSHOT</version>
2626
<packaging>eclipse-plugin</packaging>
2727
</project>

0 commit comments

Comments
 (0)