Skip to content

Commit 30190ca

Browse files
committed
bump to release 1.3.0
Signed-off-by: jiefenghuang <[email protected]>
1 parent e87a4ec commit 30190ca

File tree

2 files changed

+10
-6
lines changed

2 files changed

+10
-6
lines changed

pkg/version/version.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ var (
3030
major: 1,
3131
minor: 3,
3232
patch: 0,
33-
preRelease: "rc1",
33+
preRelease: "",
3434
build: fmt.Sprintf("%s.%s", revisionDate, revision),
3535
}
3636
)

sdk/java/pom.xml

Lines changed: 9 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,20 @@
1-
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
1+
<project xmlns="http://maven.apache.org/POM/4.0.0"
2+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
23
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
34
<modelVersion>4.0.0</modelVersion>
45
<groupId>io.juicefs</groupId>
56
<name>juicefs-hadoop</name>
67
<url>https://github.com/juicedata/juicefs</url>
78
<description>Hadoop FileSystem implementation for JuiceFS</description>
89
<artifactId>juicefs-hadoop</artifactId>
9-
<version>1.3-rc1</version>
10+
<version>1.3.0</version>
1011
<packaging>jar</packaging>
1112
<properties>
1213
<hadoop.version>3.1.4</hadoop.version>
1314
<flink.version>1.16.3</flink.version>
14-
<argLine>-Djdk.net.URLClassPath.disableClassPathURLCheck=true -Djava.library.path=${project.basedir}/../mount/libjfs:${java.library.path} -Djdk.attach.allowAttachSelf=true</argLine>
15+
<argLine>-Djdk.net.URLClassPath.disableClassPathURLCheck=true
16+
-Djava.library.path=${project.basedir}/../mount/libjfs:${java.library.path}
17+
-Djdk.attach.allowAttachSelf=true</argLine>
1518
</properties>
1619

1720
<developers>
@@ -230,7 +233,8 @@
230233
</executions>
231234
<configuration>
232235
<generateGitPropertiesFile>true</generateGitPropertiesFile>
233-
<generateGitPropertiesFilename>${project.build.outputDirectory}/juicefs-ver.properties</generateGitPropertiesFilename>
236+
<generateGitPropertiesFilename>
237+
${project.build.outputDirectory}/juicefs-ver.properties</generateGitPropertiesFilename>
234238
<includeOnlyProperties>
235239
<includeOnlyProperty>^git.build.(time|version)$</includeOnlyProperty>
236240
<includeOnlyProperty>^git.commit.id.(abbrev|full)$</includeOnlyProperty>
@@ -401,4 +405,4 @@
401405
</dependency>
402406
</dependencies>
403407

404-
</project>
408+
</project>

0 commit comments

Comments
 (0)