Skip to content

Commit 79a14b9

Browse files
authored
Merge pull request #362 from databendlabs/feat/release-v0.4.1
feat: release v0.4.1
2 parents f126cac + aacedfb commit 79a14b9

File tree

4 files changed

+18
-11
lines changed

4 files changed

+18
-11
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ Add following code block as a dependency
2020
<dependency>
2121
<groupId>com.databend</groupId>
2222
<artifactId>databend-jdbc</artifactId>
23-
<version>0.4.0</version>
23+
<version>0.4.1</version>
2424
</dependency>
2525
```
2626

databend-client/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,12 +6,12 @@
66
<parent>
77
<groupId>com.databend</groupId>
88
<artifactId>databend-base</artifactId>
9-
<version>0.4.0</version>
9+
<version>0.4.1</version>
1010
<relativePath>../pom.xml</relativePath>
1111
</parent>
1212
<groupId>com.databend</groupId>
1313
<artifactId>databend-client</artifactId>
14-
<version>0.4.0</version>
14+
<version>0.4.1</version>
1515
<name>databend-client</name>
1616
<packaging>jar</packaging>
1717

databend-jdbc/pom.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,11 @@
66
<parent>
77
<groupId>com.databend</groupId>
88
<artifactId>databend-base</artifactId>
9-
<version>0.4.0</version>
9+
<version>0.4.1</version>
1010
<relativePath>../pom.xml</relativePath>
1111
</parent>
1212
<artifactId>databend-jdbc</artifactId>
13-
<version>0.4.0</version>
13+
<version>0.4.1</version>
1414
<name>databend-jdbc</name>
1515
<packaging>jar</packaging>
1616

@@ -22,7 +22,7 @@
2222
<dependency>
2323
<groupId>com.databend</groupId>
2424
<artifactId>databend-client</artifactId>
25-
<version>0.4.0</version>
25+
<version>0.4.1</version>
2626
</dependency>
2727
<dependency>
2828
<groupId>com.squareup.okhttp3</groupId>

pom.xml

Lines changed: 12 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
</parent>
1111
<groupId>com.databend</groupId>
1212
<artifactId>databend-base</artifactId>
13-
<version>0.4.0</version>
13+
<version>0.4.1</version>
1414
<name>databend-base</name>
1515
<description>Databend</description>
1616
<packaging>pom</packaging>
@@ -169,7 +169,7 @@
169169
<plugin>
170170
<groupId>org.sonatype.central</groupId>
171171
<artifactId>central-publishing-maven-plugin</artifactId>
172-
<version>0.8.0</version>
172+
<version>0.9.0</version>
173173
<extensions>true</extensions>
174174
<configuration>
175175
<publishingServerId>central</publishingServerId>
@@ -216,9 +216,16 @@
216216
<plugin>
217217
<groupId>org.apache.maven.plugins</groupId>
218218
<artifactId>maven-gpg-plugin</artifactId>
219-
<configuration>
220-
<skip>true</skip>
221-
</configuration>
219+
<version>3.1.0</version>
220+
<executions>
221+
<execution>
222+
<id>sign-artifacts</id>
223+
<phase>verify</phase>
224+
<goals>
225+
<goal>sign</goal>
226+
</goals>
227+
</execution>
228+
</executions>
222229
</plugin>
223230
<plugin>
224231
<groupId>org.apache.maven.plugins</groupId>

0 commit comments

Comments
 (0)