Skip to content

Commit de193cd

Browse files
committed
4.1.0
1 parent 6b6a834 commit de193cd

File tree

2 files changed

+23
-16
lines changed

2 files changed

+23
-16
lines changed

README.md

+17-10
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ We will try to stay in sync with CSSParser regarding the features in the future.
1616

1717
[HtmlUnit@mastodon][4] | [HtmlUnit@Twitter][3]
1818

19-
### Latest release Version 4.0.0 / April 1, 2024
19+
### Latest release Version 4.1.0 / April 28, 2024
2020

2121
## Get it!
2222

@@ -28,7 +28,7 @@ Add to your `pom.xml`:
2828
<dependency>
2929
<groupId>org.htmlunit</groupId>
3030
<artifactId>htmlunit-cssparser</artifactId>
31-
<version>4.0.0</version>
31+
<version>4.1.0</version>
3232
</dependency>
3333
```
3434

@@ -37,7 +37,7 @@ Add to your `pom.xml`:
3737
Add to your `build.gradle`:
3838

3939
```groovy
40-
implementation group: 'org.htmlunit', name: 'htmlunit-cssparser', version: '4.0.0'
40+
implementation group: 'org.htmlunit', name: 'htmlunit-cssparser', version: '4.1.0'
4141
```
4242

4343

@@ -53,7 +53,7 @@ If you use maven please add:
5353
<dependency>
5454
<groupId>org.htmlunit</groupId>
5555
<artifactId>htmlunit-cssparser</artifactId>
56-
<version>4.1.0-SNAPSHOT</version>
56+
<version>4.2.0-SNAPSHOT</version>
5757
</dependency>
5858

5959
You have to add the sonatype snapshot repository to your pom `repositories` section also:
@@ -106,7 +106,14 @@ Every contribution - from bug reports to feature requests, typos to full new fea
106106
This part is intended for committer who are packaging a release.
107107

108108
* Check all your files are checked in
109-
* Execute "mvn -U clean test" to be sure all tests are passing
109+
* Execute these mvn to be sure all tests are passing and everything is up to data
110+
111+
```
112+
mvn versions:display-plugin-updates
113+
mvn versions:display-dependency-updates
114+
mvn -U clean test
115+
```
116+
110117
* Update the version number in pom.xml and README.md
111118
* Commit the changes
112119

@@ -124,12 +131,12 @@ This part is intended for committer who are packaging a release.
124131
* Create the version on Github
125132
* login to Github and open project https://github.com/HtmlUnit/htmlunit-cssparser
126133
* click Releases > Draft new release
127-
* fill the tag and title field with the release number (e.g. 3.0.0)
134+
* fill the tag and title field with the release number (e.g. 4.0.0)
128135
* append
129-
* htmlunit-cssparser-3.x.x.jar
130-
* htmlunit-cssparser-3.x.x.jar.asc
131-
* htmlunit-cssparser-3.x.x-javadoc.jar
132-
* htmlunit-cssparser-3.x.x-javadoc.jar.asc
136+
* htmlunit-cssparser-4.x.x.jar
137+
* htmlunit-cssparser-4.x.x.jar.asc
138+
* htmlunit-cssparser-4.x.x-javadoc.jar
139+
* htmlunit-cssparser-4.x.x-javadoc.jar.asc
133140
* and publish the release
134141

135142
* Update the version number in pom.xml to start next snapshot development

pom.xml

+6-6
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<modelVersion>4.0.0</modelVersion>
55
<groupId>org.htmlunit</groupId>
66
<artifactId>htmlunit-cssparser</artifactId>
7-
<version>4.0.0</version>
7+
<version>4.1.0</version>
88
<name>HtmlUnit CSS Parser</name>
99
<organization>
1010
<name>HtmlUnit</name>
@@ -21,7 +21,7 @@
2121
<maven.compiler.target>8</maven.compiler.target>
2222

2323
<checkstyle.version>9.3</checkstyle.version>
24-
<dependencycheck.version>9.0.10</dependencycheck.version>
24+
<dependencycheck.version>9.1.0</dependencycheck.version>
2525
</properties>
2626

2727
<build>
@@ -166,7 +166,7 @@
166166
<plugin>
167167
<groupId>org.apache.maven.plugins</groupId>
168168
<artifactId>maven-jar-plugin</artifactId>
169-
<version>3.3.0</version>
169+
<version>3.4.1</version>
170170
<configuration>
171171
<archive>
172172
<manifest>
@@ -184,7 +184,7 @@
184184
<plugin>
185185
<groupId>org.apache.maven.plugins</groupId>
186186
<artifactId>maven-source-plugin</artifactId>
187-
<version>3.3.0</version>
187+
<version>3.3.1</version>
188188
<executions>
189189
<execution>
190190
<goals>
@@ -212,7 +212,7 @@
212212
<plugin>
213213
<groupId>org.apache.maven.plugins</groupId>
214214
<artifactId>maven-gpg-plugin</artifactId>
215-
<version>3.2.2</version>
215+
<version>3.2.4</version>
216216
<executions>
217217
<execution>
218218
<phase>verify</phase>
@@ -326,7 +326,7 @@
326326
<dependency>
327327
<groupId>commons-io</groupId>
328328
<artifactId>commons-io</artifactId>
329-
<version>2.16.0</version>
329+
<version>2.16.1</version>
330330
<scope>test</scope>
331331
</dependency>
332332
</dependencies>

0 commit comments

Comments
 (0)