Skip to content

Commit eeee98b

Browse files
committed
Preparing for release 2.2.0
Signed-off-by: William Hyun <william@apache.org>
1 parent c85abb0 commit eeee98b

File tree

11 files changed

+16
-16
lines changed

11 files changed

+16
-16
lines changed

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
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 "2")
3030
SET(CPACK_PACKAGE_VERSION_MINOR "2")
31-
SET(CPACK_PACKAGE_VERSION_PATCH "0-SNAPSHOT")
31+
SET(CPACK_PACKAGE_VERSION_PATCH "0")
3232
SET(ORC_VERSION "${CPACK_PACKAGE_VERSION_MAJOR}.${CPACK_PACKAGE_VERSION_MINOR}.${CPACK_PACKAGE_VERSION_PATCH}")
3333
set(CMAKE_EXPORT_COMPILE_COMMANDS ON) # For clang-tidy.
3434
list(PREPEND CMAKE_MODULE_PATH "${CMAKE_CURRENT_SOURCE_DIR}/cmake_modules")

java/bench/core/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
<parent>
1818
<groupId>org.apache.orc</groupId>
1919
<artifactId>orc-benchmarks</artifactId>
20-
<version>2.2.0-SNAPSHOT</version>
20+
<version>2.2.0</version>
2121
<relativePath>..</relativePath>
2222
</parent>
2323

java/bench/hive/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
<parent>
1818
<groupId>org.apache.orc</groupId>
1919
<artifactId>orc-benchmarks</artifactId>
20-
<version>2.2.0-SNAPSHOT</version>
20+
<version>2.2.0</version>
2121
<relativePath>..</relativePath>
2222
</parent>
2323

java/bench/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
<parent>
1818
<groupId>org.apache.orc</groupId>
1919
<artifactId>orc</artifactId>
20-
<version>2.2.0-SNAPSHOT</version>
20+
<version>2.2.0</version>
2121
<relativePath>../pom.xml</relativePath>
2222
</parent>
2323

java/bench/spark/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
<parent>
1818
<groupId>org.apache.orc</groupId>
1919
<artifactId>orc-benchmarks</artifactId>
20-
<version>2.2.0-SNAPSHOT</version>
20+
<version>2.2.0</version>
2121
<relativePath>..</relativePath>
2222
</parent>
2323

java/core/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
<parent>
1818
<groupId>org.apache.orc</groupId>
1919
<artifactId>orc</artifactId>
20-
<version>2.2.0-SNAPSHOT</version>
20+
<version>2.2.0</version>
2121
<relativePath>../pom.xml</relativePath>
2222
</parent>
2323

java/examples/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
<parent>
1818
<groupId>org.apache.orc</groupId>
1919
<artifactId>orc</artifactId>
20-
<version>2.2.0-SNAPSHOT</version>
20+
<version>2.2.0</version>
2121
<relativePath>../pom.xml</relativePath>
2222
</parent>
2323

java/mapreduce/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
<parent>
1818
<groupId>org.apache.orc</groupId>
1919
<artifactId>orc</artifactId>
20-
<version>2.2.0-SNAPSHOT</version>
20+
<version>2.2.0</version>
2121
<relativePath>../pom.xml</relativePath>
2222
</parent>
2323

java/pom.xml

Lines changed: 6 additions & 6 deletions
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>2.2.0-SNAPSHOT</version>
24+
<version>2.2.0</version>
2525
<packaging>pom</packaging>
2626

2727
<name>Apache ORC</name>
@@ -79,7 +79,7 @@
7979
<mockito.version>5.10.0</mockito.version>
8080
<orc-format.version>1.1.0</orc-format.version>
8181
<!-- Build Properties -->
82-
<project.build.outputTimestamp>2025-01-05T19:25:27Z</project.build.outputTimestamp>
82+
<project.build.outputTimestamp>2025-07-26T22:16:01Z</project.build.outputTimestamp>
8383
<protobuf.version>3.25.8</protobuf.version>
8484
<slf4j.version>2.0.17</slf4j.version>
8585
<storage-api.version>2.8.1</storage-api.version>
@@ -99,7 +99,7 @@
9999
<dependency>
100100
<groupId>org.apache.orc</groupId>
101101
<artifactId>orc-shims</artifactId>
102-
<version>2.2.0-SNAPSHOT</version>
102+
<version>2.2.0</version>
103103
<exclusions>
104104
<exclusion>
105105
<groupId>org.apache.hadoop</groupId>
@@ -114,17 +114,17 @@
114114
<dependency>
115115
<groupId>org.apache.orc</groupId>
116116
<artifactId>orc-core</artifactId>
117-
<version>2.2.0-SNAPSHOT</version>
117+
<version>2.2.0</version>
118118
</dependency>
119119
<dependency>
120120
<groupId>org.apache.orc</groupId>
121121
<artifactId>orc-mapreduce</artifactId>
122-
<version>2.2.0-SNAPSHOT</version>
122+
<version>2.2.0</version>
123123
</dependency>
124124
<dependency>
125125
<groupId>org.apache.orc</groupId>
126126
<artifactId>orc-tools</artifactId>
127-
<version>2.2.0-SNAPSHOT</version>
127+
<version>2.2.0</version>
128128
</dependency>
129129

130130
<!-- inter-project dependencies -->

java/shims/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
<parent>
1818
<groupId>org.apache.orc</groupId>
1919
<artifactId>orc</artifactId>
20-
<version>2.2.0-SNAPSHOT</version>
20+
<version>2.2.0</version>
2121
<relativePath>../pom.xml</relativePath>
2222
</parent>
2323

0 commit comments

Comments
 (0)