Skip to content

Commit 970565f

Browse files
committed
Preparing for release 2.3.0
Signed-off-by: Dongjoon Hyun <dongjoon@apache.org>
1 parent af4220c commit 970565f

File tree

12 files changed

+17
-17
lines changed

12 files changed

+17
-17
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 "3")
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
@@ -22,7 +22,7 @@
2222
<parent>
2323
<groupId>org.apache.orc</groupId>
2424
<artifactId>orc-benchmarks</artifactId>
25-
<version>2.3.0-SNAPSHOT</version>
25+
<version>2.3.0</version>
2626
<relativePath>..</relativePath>
2727
</parent>
2828

java/bench/hive/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
<parent>
2323
<groupId>org.apache.orc</groupId>
2424
<artifactId>orc-benchmarks</artifactId>
25-
<version>2.3.0-SNAPSHOT</version>
25+
<version>2.3.0</version>
2626
<relativePath>..</relativePath>
2727
</parent>
2828

java/bench/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
<parent>
2323
<groupId>org.apache.orc</groupId>
2424
<artifactId>orc</artifactId>
25-
<version>2.3.0-SNAPSHOT</version>
25+
<version>2.3.0</version>
2626
<relativePath>../pom.xml</relativePath>
2727
</parent>
2828

java/bench/spark/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
<parent>
2323
<groupId>org.apache.orc</groupId>
2424
<artifactId>orc-benchmarks</artifactId>
25-
<version>2.3.0-SNAPSHOT</version>
25+
<version>2.3.0</version>
2626
<relativePath>..</relativePath>
2727
</parent>
2828

java/core/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
<parent>
2323
<groupId>org.apache.orc</groupId>
2424
<artifactId>orc</artifactId>
25-
<version>2.3.0-SNAPSHOT</version>
25+
<version>2.3.0</version>
2626
<relativePath>../pom.xml</relativePath>
2727
</parent>
2828

java/examples/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
<parent>
2323
<groupId>org.apache.orc</groupId>
2424
<artifactId>orc</artifactId>
25-
<version>2.3.0-SNAPSHOT</version>
25+
<version>2.3.0</version>
2626
<relativePath>../pom.xml</relativePath>
2727
</parent>
2828

java/mapreduce/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
<parent>
2323
<groupId>org.apache.orc</groupId>
2424
<artifactId>orc</artifactId>
25-
<version>2.3.0-SNAPSHOT</version>
25+
<version>2.3.0</version>
2626
<relativePath>../pom.xml</relativePath>
2727
</parent>
2828

java/pom.xml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
</parent>
2727
<groupId>org.apache.orc</groupId>
2828
<artifactId>orc</artifactId>
29-
<version>2.3.0-SNAPSHOT</version>
29+
<version>2.3.0</version>
3030
<packaging>pom</packaging>
3131

3232
<name>Apache ORC</name>
@@ -87,7 +87,7 @@
8787
<mockito.version>5.21.0</mockito.version>
8888
<orc-format.version>1.1.1</orc-format.version>
8989
<!-- Build Properties -->
90-
<project.build.outputTimestamp>2025-07-08T15:22:41Z</project.build.outputTimestamp>
90+
<project.build.outputTimestamp>2026-02-25T11:37:44Z</project.build.outputTimestamp>
9191
<protobuf.version>3.25.8</protobuf.version>
9292
<slf4j.version>2.0.17</slf4j.version>
9393
<snappy.version>1.1.10.8</snappy.version>
@@ -108,7 +108,7 @@
108108
<dependency>
109109
<groupId>org.apache.orc</groupId>
110110
<artifactId>orc-shims</artifactId>
111-
<version>2.3.0-SNAPSHOT</version>
111+
<version>2.3.0</version>
112112
<exclusions>
113113
<exclusion>
114114
<groupId>org.apache.hadoop</groupId>
@@ -123,17 +123,17 @@
123123
<dependency>
124124
<groupId>org.apache.orc</groupId>
125125
<artifactId>orc-core</artifactId>
126-
<version>2.3.0-SNAPSHOT</version>
126+
<version>2.3.0</version>
127127
</dependency>
128128
<dependency>
129129
<groupId>org.apache.orc</groupId>
130130
<artifactId>orc-mapreduce</artifactId>
131-
<version>2.3.0-SNAPSHOT</version>
131+
<version>2.3.0</version>
132132
</dependency>
133133
<dependency>
134134
<groupId>org.apache.orc</groupId>
135135
<artifactId>orc-tools</artifactId>
136-
<version>2.3.0-SNAPSHOT</version>
136+
<version>2.3.0</version>
137137
</dependency>
138138

139139
<!-- inter-project dependencies -->

java/shims/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
<parent>
2323
<groupId>org.apache.orc</groupId>
2424
<artifactId>orc</artifactId>
25-
<version>2.3.0-SNAPSHOT</version>
25+
<version>2.3.0</version>
2626
<relativePath>../pom.xml</relativePath>
2727
</parent>
2828

0 commit comments

Comments
 (0)