Skip to content

Commit 492c850

Browse files
committed
Preparing for release 1.7.10
Signed-off-by: Dongjoon Hyun <[email protected]>
1 parent 431c521 commit 492c850

File tree

11 files changed

+15
-15
lines changed

11 files changed

+15
-15
lines changed

CMakeLists.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ project(ORC C CXX)
2828
# Version number of package
2929
SET(CPACK_PACKAGE_VERSION_MAJOR "1")
3030
SET(CPACK_PACKAGE_VERSION_MINOR "7")
31-
SET(CPACK_PACKAGE_VERSION_PATCH "10-SNAPSHOT")
31+
SET(CPACK_PACKAGE_VERSION_PATCH "10")
3232
SET(ORC_VERSION "${CPACK_PACKAGE_VERSION_MAJOR}.${CPACK_PACKAGE_VERSION_MINOR}.${CPACK_PACKAGE_VERSION_PATCH}")
3333
set(CMAKE_MODULE_PATH ${CMAKE_MODULE_PATH} "${PROJECT_SOURCE_DIR}/cmake_modules")
3434

java/bench/core/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
<parent>
2020
<groupId>org.apache.orc</groupId>
2121
<artifactId>orc-benchmarks</artifactId>
22-
<version>1.7.10-SNAPSHOT</version>
22+
<version>1.7.10</version>
2323
<relativePath>..</relativePath>
2424
</parent>
2525

java/bench/hive/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
<parent>
2020
<groupId>org.apache.orc</groupId>
2121
<artifactId>orc-benchmarks</artifactId>
22-
<version>1.7.10-SNAPSHOT</version>
22+
<version>1.7.10</version>
2323
<relativePath>..</relativePath>
2424
</parent>
2525

java/bench/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
<parent>
2020
<groupId>org.apache.orc</groupId>
2121
<artifactId>orc</artifactId>
22-
<version>1.7.10-SNAPSHOT</version>
22+
<version>1.7.10</version>
2323
<relativePath>../pom.xml</relativePath>
2424
</parent>
2525

java/bench/spark/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
<parent>
2020
<groupId>org.apache.orc</groupId>
2121
<artifactId>orc-benchmarks</artifactId>
22-
<version>1.7.10-SNAPSHOT</version>
22+
<version>1.7.10</version>
2323
<relativePath>..</relativePath>
2424
</parent>
2525

java/core/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
<parent>
2020
<groupId>org.apache.orc</groupId>
2121
<artifactId>orc</artifactId>
22-
<version>1.7.10-SNAPSHOT</version>
22+
<version>1.7.10</version>
2323
<relativePath>../pom.xml</relativePath>
2424
</parent>
2525

java/examples/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
<parent>
2020
<groupId>org.apache.orc</groupId>
2121
<artifactId>orc</artifactId>
22-
<version>1.7.10-SNAPSHOT</version>
22+
<version>1.7.10</version>
2323
<relativePath>../pom.xml</relativePath>
2424
</parent>
2525

java/mapreduce/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
<parent>
2020
<groupId>org.apache.orc</groupId>
2121
<artifactId>orc</artifactId>
22-
<version>1.7.10-SNAPSHOT</version>
22+
<version>1.7.10</version>
2323
<relativePath>../pom.xml</relativePath>
2424
</parent>
2525

java/pom.xml

+5-5
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
</parent>
2222
<groupId>org.apache.orc</groupId>
2323
<artifactId>orc</artifactId>
24-
<version>1.7.10-SNAPSHOT</version>
24+
<version>1.7.10</version>
2525
<packaging>pom</packaging>
2626

2727
<name>Apache ORC</name>
@@ -630,7 +630,7 @@
630630
<dependency>
631631
<groupId>org.apache.orc</groupId>
632632
<artifactId>orc-shims</artifactId>
633-
<version>1.7.10-SNAPSHOT</version>
633+
<version>1.7.10</version>
634634
<exclusions>
635635
<exclusion>
636636
<groupId>org.apache.hadoop</groupId>
@@ -645,17 +645,17 @@
645645
<dependency>
646646
<groupId>org.apache.orc</groupId>
647647
<artifactId>orc-core</artifactId>
648-
<version>1.7.10-SNAPSHOT</version>
648+
<version>1.7.10</version>
649649
</dependency>
650650
<dependency>
651651
<groupId>org.apache.orc</groupId>
652652
<artifactId>orc-mapreduce</artifactId>
653-
<version>1.7.10-SNAPSHOT</version>
653+
<version>1.7.10</version>
654654
</dependency>
655655
<dependency>
656656
<groupId>org.apache.orc</groupId>
657657
<artifactId>orc-tools</artifactId>
658-
<version>1.7.10-SNAPSHOT</version>
658+
<version>1.7.10</version>
659659
</dependency>
660660

661661
<!-- inter-project depedencies -->

java/shims/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
<parent>
2020
<groupId>org.apache.orc</groupId>
2121
<artifactId>orc</artifactId>
22-
<version>1.7.10-SNAPSHOT</version>
22+
<version>1.7.10</version>
2323
<relativePath>../pom.xml</relativePath>
2424
</parent>
2525

java/tools/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
<parent>
2020
<groupId>org.apache.orc</groupId>
2121
<artifactId>orc</artifactId>
22-
<version>1.7.10-SNAPSHOT</version>
22+
<version>1.7.10</version>
2323
<relativePath>../pom.xml</relativePath>
2424
</parent>
2525

0 commit comments

Comments
 (0)