Skip to content

Commit c6b32de

Browse files
committed
config: release 10.20.1
1 parent 79a02ed commit c6b32de

File tree

25 files changed

+83
-41
lines changed

25 files changed

+83
-41
lines changed

docs/partials/index.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ <h1>Eclipse Checkstyle Plugin</h1>
2424
<small>
2525
<sup>1 </sup>
2626
Install via Eclipse Marketplace. Drag and drop this link into a running Eclipse
27-
(2022-09 or higher version) workspace. Latest release 10.20.0, see
27+
(2022-09 or higher version) workspace. Latest release 10.20.1, see
2828
<a href="#!/releasenotes">release notes</a>.
2929
</small>
3030
</div>
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
<div>
2+
<h3>Changes</h3>
3+
<ul>
4+
<li>79a02ed1 Issue #778: update to Checkstyle 10.20.1</li>
5+
</ul>
6+
7+
<p>
8+
Please read the
9+
<a target="_blank" href="https://checkstyle.org/releasenotes.html">
10+
Checkstyle release notes
11+
</a>
12+
for details on recent and potentially breaking changes in Checkstyle.
13+
Checkstyle configuration files potentially
14+
need to be adapted to this version.
15+
</p>
16+
</div>

docs/releases.json

+5
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,9 @@
11
[
2+
{
3+
"version": "Release 10.20.1",
4+
"template": "partials/releases/10.20.1/release_notes.html",
5+
"open": true
6+
},
27
{
38
"version": "Release 10.20.0",
49
"template": "partials/releases/10.20.0/release_notes.html",

docs/sitemap.xml

+15-15
Original file line numberDiff line numberDiff line change
@@ -15,77 +15,77 @@
1515
-->
1616
<url>
1717
<loc>https://checkstyle.org/eclipse-cs/</loc>
18-
<lastmod>2024-11-05</lastmod>
18+
<lastmod>2024-11-07</lastmod>
1919
<changefreq>weekly</changefreq>
2020
</url>
2121
<url>
2222
<loc>https://checkstyle.org/eclipse-cs/#!/releasenotes</loc>
23-
<lastmod>2024-11-05</lastmod>
23+
<lastmod>2024-11-07</lastmod>
2424
<changefreq>weekly</changefreq>
2525
</url>
2626
<url>
2727
<loc>https://checkstyle.org/eclipse-cs/#!/install</loc>
28-
<lastmod>2024-11-05</lastmod>
28+
<lastmod>2024-11-07</lastmod>
2929
<changefreq>weekly</changefreq>
3030
</url>
3131
<url>
3232
<loc>https://checkstyle.org/eclipse-cs/#!/project-setup</loc>
33-
<lastmod>2024-11-05</lastmod>
33+
<lastmod>2024-11-07</lastmod>
3434
<changefreq>weekly</changefreq>
3535
</url>
3636
<url>
3737
<loc>https://checkstyle.org/eclipse-cs/#!/custom-config</loc>
38-
<lastmod>2024-11-05</lastmod>
38+
<lastmod>2024-11-07</lastmod>
3939
<changefreq>weekly</changefreq>
4040
</url>
4141
<url>
4242
<loc>https://checkstyle.org/eclipse-cs/#!/filters</loc>
43-
<lastmod>2024-11-05</lastmod>
43+
<lastmod>2024-11-07</lastmod>
4444
<changefreq>weekly</changefreq>
4545
</url>
4646
<url>
4747
<loc>https://checkstyle.org/eclipse-cs/#!/configtypes</loc>
48-
<lastmod>2024-11-05</lastmod>
48+
<lastmod>2024-11-07</lastmod>
4949
<changefreq>weekly</changefreq>
5050
</url>
5151
<url>
5252
<loc>https://checkstyle.org/eclipse-cs/#!/properties</loc>
53-
<lastmod>2024-11-05</lastmod>
53+
<lastmod>2024-11-07</lastmod>
5454
<changefreq>weekly</changefreq>
5555
</url>
5656
<url>
5757
<loc>https://checkstyle.org/eclipse-cs/#!/filesets</loc>
58-
<lastmod>2024-11-05</lastmod>
58+
<lastmod>2024-11-07</lastmod>
5959
<changefreq>weekly</changefreq>
6060
</url>
6161
<url>
6262
<loc>https://checkstyle.org/eclipse-cs/#!/preferences</loc>
63-
<lastmod>2024-11-05</lastmod>
63+
<lastmod>2024-11-07</lastmod>
6464
<changefreq>weekly</changefreq>
6565
</url>
6666
<url>
6767
<loc>https://checkstyle.org/eclipse-cs/#!/extensions</loc>
68-
<lastmod>2024-11-05</lastmod>
68+
<lastmod>2024-11-07</lastmod>
6969
<changefreq>weekly</changefreq>
7070
</url>
7171
<url>
7272
<loc>https://checkstyle.org/eclipse-cs/#!/custom-checks</loc>
73-
<lastmod>2024-11-05</lastmod>
73+
<lastmod>2024-11-07</lastmod>
7474
<changefreq>weekly</changefreq>
7575
</url>
7676
<url>
7777
<loc>https://checkstyle.org/eclipse-cs/#!/builtin-config</loc>
78-
<lastmod>2024-11-05</lastmod>
78+
<lastmod>2024-11-07</lastmod>
7979
<changefreq>weekly</changefreq>
8080
</url>
8181
<url>
8282
<loc>https://checkstyle.org/eclipse-cs/#!/custom-filters</loc>
83-
<lastmod>2024-11-05</lastmod>
83+
<lastmod>2024-11-07</lastmod>
8484
<changefreq>weekly</changefreq>
8585
</url>
8686
<url>
8787
<loc>https://checkstyle.org/eclipse-cs/#!/faq</loc>
88-
<lastmod>2024-11-05</lastmod>
88+
<lastmod>2024-11-07</lastmod>
8989
<changefreq>weekly</changefreq>
9090
</url>
9191
</urlset>

net.sf.eclipsecs-feature/feature.xml

+6-6
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<feature
33
id="net.sf.eclipsecs"
44
label="%feature.label"
5-
version="10.20.0.qualifier"
5+
version="10.20.1.qualifier"
66
provider-name="%feature.provider_name"
77
plugin="net.sf.eclipsecs.branding">
88

@@ -38,22 +38,22 @@
3838

3939
<plugin
4040
id="net.sf.eclipsecs.branding"
41-
version="10.20.0.qualifier"/>
41+
version="10.20.1.qualifier"/>
4242

4343
<plugin
4444
id="net.sf.eclipsecs.core"
45-
version="10.20.0.qualifier"/>
45+
version="10.20.1.qualifier"/>
4646

4747
<plugin
4848
id="net.sf.eclipsecs.doc"
49-
version="10.20.0.qualifier"/>
49+
version="10.20.1.qualifier"/>
5050

5151
<plugin
5252
id="net.sf.eclipsecs.checkstyle"
53-
version="10.20.0.qualifier"/>
53+
version="10.20.1.qualifier"/>
5454

5555
<plugin
5656
id="net.sf.eclipsecs.ui"
57-
version="10.20.0.qualifier"/>
57+
version="10.20.1.qualifier"/>
5858

5959
</feature>

net.sf.eclipsecs-feature/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<parent>
44
<artifactId>net.sf.eclipsecs.parent</artifactId>
55
<groupId>net.sf.eclipsecs</groupId>
6-
<version>10.20.0-SNAPSHOT</version>
6+
<version>10.20.1-SNAPSHOT</version>
77
</parent>
88
<modelVersion>4.0.0</modelVersion>
99
<artifactId>net.sf.eclipsecs</artifactId>

net.sf.eclipsecs-updatesite/category.xml

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,10 @@
33
<description name="Eclipse Checkstyle Plugin" url="http://eclipse-cs.sourceforge.net/update">
44
Eclipse Checkstyle Plugin Update Site
55
</description>
6-
<feature url="features/net.sf.eclipsecs_10.20.0.qualifier.jar" id="net.sf.eclipsecs" version="10.20.0.qualifier">
6+
<feature url="features/net.sf.eclipsecs_10.20.1.qualifier.jar" id="net.sf.eclipsecs" version="10.20.1.qualifier">
77
<category name="Checkstyle"/>
88
</feature>
9-
<feature url="features/net.sf.eclipsecs.source_10.20.0.qualifier.jar" id="net.sf.eclipsecs.source" version="10.20.0.qualifier">
9+
<feature url="features/net.sf.eclipsecs.source_10.20.1.qualifier.jar" id="net.sf.eclipsecs.source" version="10.20.1.qualifier">
1010
<category name="Checkstyle"/>
1111
</feature>
1212
<category-def name="Checkstyle" label="Checkstyle">

net.sf.eclipsecs-updatesite/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<parent>
55
<artifactId>net.sf.eclipsecs.parent</artifactId>
66
<groupId>net.sf.eclipsecs</groupId>
7-
<version>10.20.0-SNAPSHOT</version>
7+
<version>10.20.1-SNAPSHOT</version>
88
</parent>
99
<modelVersion>4.0.0</modelVersion>
1010
<artifactId>net.sf.eclipsecs-updatesite</artifactId>

net.sf.eclipsecs.branding/META-INF/MANIFEST.MF

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,6 @@ Manifest-Version: 1.0
22
Bundle-ManifestVersion: 2
33
Bundle-Name: %Bundle-Name
44
Bundle-SymbolicName: net.sf.eclipsecs.branding
5-
Bundle-Version: 10.20.0.qualifier
5+
Bundle-Version: 10.20.1.qualifier
66
Bundle-Vendor: %Bundle-Vendor
77
Automatic-Module-Name: net.sf.eclipsecs.branding

net.sf.eclipsecs.branding/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<parent>
44
<artifactId>net.sf.eclipsecs.parent</artifactId>
55
<groupId>net.sf.eclipsecs</groupId>
6-
<version>10.20.0-SNAPSHOT</version>
6+
<version>10.20.1-SNAPSHOT</version>
77
</parent>
88
<modelVersion>4.0.0</modelVersion>
99
<artifactId>net.sf.eclipsecs.branding</artifactId>

net.sf.eclipsecs.checkstyle/META-INF/MANIFEST.MF

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ Manifest-Version: 1.0
22
Bundle-ManifestVersion: 2
33
Bundle-Name: %Bundle-Name
44
Bundle-SymbolicName: net.sf.eclipsecs.checkstyle
5-
Bundle-Version: 10.20.0.qualifier
5+
Bundle-Version: 10.20.1.qualifier
66
Bundle-Vendor: %Bundle-Vendor
77
Bundle-ActivationPolicy: lazy
88
Bundle-RequiredExecutionEnvironment: JavaSE-17

net.sf.eclipsecs.checkstyle/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<parent>
44
<artifactId>net.sf.eclipsecs.parent</artifactId>
55
<groupId>net.sf.eclipsecs</groupId>
6-
<version>10.20.0-SNAPSHOT</version>
6+
<version>10.20.1-SNAPSHOT</version>
77
</parent>
88
<modelVersion>4.0.0</modelVersion>
99
<artifactId>net.sf.eclipsecs.checkstyle</artifactId>

net.sf.eclipsecs.core/META-INF/MANIFEST.MF

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ Manifest-Version: 1.0
22
Bundle-Name: %Bundle-Name
33
Bundle-ManifestVersion: 2
44
Bundle-SymbolicName: net.sf.eclipsecs.core;singleton:=true
5-
Bundle-Version: 10.20.0.qualifier
5+
Bundle-Version: 10.20.1.qualifier
66
Bundle-RequiredExecutionEnvironment: JavaSE-17
77
Bundle-ClassPath: .,
88
lib/checkstyle-10.20.1-all.jar

net.sf.eclipsecs.core/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<parent>
44
<artifactId>net.sf.eclipsecs.parent</artifactId>
55
<groupId>net.sf.eclipsecs</groupId>
6-
<version>10.20.0-SNAPSHOT</version>
6+
<version>10.20.1-SNAPSHOT</version>
77
</parent>
88
<modelVersion>4.0.0</modelVersion>
99
<artifactId>net.sf.eclipsecs.core</artifactId>

net.sf.eclipsecs.doc/META-INF/MANIFEST.MF

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ Manifest-Version: 1.0
22
Bundle-ManifestVersion: 2
33
Bundle-Name: %Bundle-Name
44
Bundle-SymbolicName: net.sf.eclipsecs.doc;singleton:=true
5-
Bundle-Version: 10.20.0.qualifier
5+
Bundle-Version: 10.20.1.qualifier
66
Require-Bundle: org.eclipse.help;bundle-version="3.9.0"
77
Bundle-Vendor: %Bundle-Vendor
88
Automatic-Module-Name: net.sf.eclipsecs.doc

net.sf.eclipsecs.doc/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<parent>
44
<artifactId>net.sf.eclipsecs.parent</artifactId>
55
<groupId>net.sf.eclipsecs</groupId>
6-
<version>10.20.0-SNAPSHOT</version>
6+
<version>10.20.1-SNAPSHOT</version>
77
</parent>
88
<modelVersion>4.0.0</modelVersion>
99
<artifactId>net.sf.eclipsecs.doc</artifactId>

net.sf.eclipsecs.doc/src/main/resources/partials/index.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ <h1>Eclipse Checkstyle Plugin</h1>
2424
<small>
2525
<sup>1 </sup>
2626
Install via Eclipse Marketplace. Drag and drop this link into a running Eclipse
27-
(2022-09 or higher version) workspace. Latest release 10.20.0, see
27+
(2022-09 or higher version) workspace. Latest release 10.20.1, see
2828
<a href="#!/releasenotes">release notes</a>.
2929
</small>
3030
</div>
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
<div>
2+
<h3>Changes</h3>
3+
<ul>
4+
<li>79a02ed1 Issue #778: update to Checkstyle 10.20.1</li>
5+
</ul>
6+
7+
<p>
8+
Please read the
9+
<a target="_blank" href="https://checkstyle.org/releasenotes.html">
10+
Checkstyle release notes
11+
</a>
12+
for details on recent and potentially breaking changes in Checkstyle.
13+
Checkstyle configuration files potentially
14+
need to be adapted to this version.
15+
</p>
16+
</div>

net.sf.eclipsecs.doc/src/main/resources/releases.json

+5
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,9 @@
11
[
2+
{
3+
"version": "Release 10.20.1",
4+
"template": "partials/releases/10.20.1/release_notes.html",
5+
"open": true
6+
},
27
{
38
"version": "Release 10.20.0",
49
"template": "partials/releases/10.20.0/release_notes.html",

net.sf.eclipsecs.sample/META-INF/MANIFEST.MF

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ Manifest-Version: 1.0
22
Bundle-ManifestVersion: 2
33
Bundle-Name: %Bundle-Name
44
Bundle-SymbolicName: net.sf.eclipsecs.sample;singleton:=true
5-
Bundle-Version: 10.20.0.qualifier
5+
Bundle-Version: 10.20.1.qualifier
66
Require-Bundle: net.sf.eclipsecs.checkstyle,
77
net.sf.eclipsecs.core,
88
net.sf.eclipsecs.ui

net.sf.eclipsecs.sample/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<parent>
44
<artifactId>net.sf.eclipsecs.parent</artifactId>
55
<groupId>net.sf.eclipsecs</groupId>
6-
<version>10.20.0-SNAPSHOT</version>
6+
<version>10.20.1-SNAPSHOT</version>
77
</parent>
88
<modelVersion>4.0.0</modelVersion>
99
<artifactId>net.sf.eclipsecs.sample</artifactId>

net.sf.eclipsecs.target/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<parent>
55
<artifactId>net.sf.eclipsecs.parent</artifactId>
66
<groupId>net.sf.eclipsecs</groupId>
7-
<version>10.20.0-SNAPSHOT</version>
7+
<version>10.20.1-SNAPSHOT</version>
88
</parent>
99
<artifactId>net.sf.eclipsecs.target</artifactId>
1010
<packaging>pom</packaging>

net.sf.eclipsecs.ui/META-INF/MANIFEST.MF

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ Manifest-Version: 1.0
22
Bundle-ManifestVersion: 2
33
Bundle-Name: %Bundle-Name
44
Bundle-SymbolicName: net.sf.eclipsecs.ui;singleton:=true
5-
Bundle-Version: 10.20.0.qualifier
5+
Bundle-Version: 10.20.1.qualifier
66
Bundle-Vendor: %Bundle-Vendor
77
Bundle-Activator: net.sf.eclipsecs.ui.CheckstyleUIPlugin
88
Bundle-ActivationPolicy: lazy

net.sf.eclipsecs.ui/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<parent>
44
<artifactId>net.sf.eclipsecs.parent</artifactId>
55
<groupId>net.sf.eclipsecs</groupId>
6-
<version>10.20.0-SNAPSHOT</version>
6+
<version>10.20.1-SNAPSHOT</version>
77
</parent>
88
<modelVersion>4.0.0</modelVersion>
99
<artifactId>net.sf.eclipsecs.ui</artifactId>

pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<modelVersion>4.0.0</modelVersion>
44
<groupId>net.sf.eclipsecs</groupId>
55
<artifactId>net.sf.eclipsecs.parent</artifactId>
6-
<version>10.20.0-SNAPSHOT</version>
6+
<version>10.20.1-SNAPSHOT</version>
77
<packaging>pom</packaging>
88
<name>eclipse-cs Maven Parent</name>
99

0 commit comments

Comments
 (0)