This is an automated email from the ASF dual-hosted git repository. ColinLeeo pushed a commit to branch rc/2.4.0 in repository https://gitbox.apache.org/repos/asf/tsfile.git
commit e3ac5fc6b510a51a0269a7b0c2937bda3ef2fc7a Author: ColinLee <[email protected]> AuthorDate: Mon Jul 20 00:43:43 2026 +0800 [maven-release-plugin] prepare for next development iteration --- cpp/CMakeLists.txt | 2 +- cpp/pom.xml | 6 +++--- java/common/pom.xml | 2 +- java/examples/pom.xml | 4 ++-- java/pom.xml | 6 +++--- java/tools/pom.xml | 6 +++--- java/tsfile/pom.xml | 10 +++++----- pom.xml | 8 ++++---- python/pom.xml | 2 +- python/pyproject.toml | 2 +- python/setup.py | 2 +- 11 files changed, 25 insertions(+), 25 deletions(-) diff --git a/cpp/CMakeLists.txt b/cpp/CMakeLists.txt index 7328ce326..ff925bec1 100755 --- a/cpp/CMakeLists.txt +++ b/cpp/CMakeLists.txt @@ -29,7 +29,7 @@ endif () if (POLICY CMP0079) cmake_policy(SET CMP0079 NEW) endif () -set(TsFile_CPP_VERSION 2.4.0) +set(TsFile_CPP_VERSION 2.4.1.dev) if (MSVC) # MSVC does not provide a /std:c++11 flag; C++11 is its implicit baseline. diff --git a/cpp/pom.xml b/cpp/pom.xml index 807458f85..4ac891bb1 100644 --- a/cpp/pom.xml +++ b/cpp/pom.xml @@ -22,7 +22,7 @@ <parent> <groupId>org.apache.tsfile</groupId> <artifactId>tsfile-parent</artifactId> - <version>2.4.0</version> + <version>2.4.1-SNAPSHOT</version> </parent> <artifactId>tsfile-cpp</artifactId> <packaging>pom</packaging> @@ -99,8 +99,8 @@ plugin's generate goal throw an NPE. --> </options> - <sourcePath/> - <targetPath/> + <sourcePath /> + <targetPath /> </configuration> </execution> <!-- Compile the test code --> diff --git a/java/common/pom.xml b/java/common/pom.xml index 0fa2c8528..ea093dbe2 100644 --- a/java/common/pom.xml +++ b/java/common/pom.xml @@ -24,7 +24,7 @@ <parent> <groupId>org.apache.tsfile</groupId> <artifactId>tsfile-java</artifactId> - <version>2.4.0</version> + <version>2.4.1-SNAPSHOT</version> </parent> <artifactId>common</artifactId> <name>TsFile: Java: Common</name> diff --git a/java/examples/pom.xml b/java/examples/pom.xml index aa3fc49ae..a56625c3d 100644 --- a/java/examples/pom.xml +++ b/java/examples/pom.xml @@ -24,7 +24,7 @@ <parent> <groupId>org.apache.tsfile</groupId> <artifactId>tsfile-java</artifactId> - <version>2.4.0</version> + <version>2.4.1-SNAPSHOT</version> </parent> <artifactId>examples</artifactId> <name>TsFile: Java: Examples</name> @@ -36,7 +36,7 @@ <dependency> <groupId>org.apache.tsfile</groupId> <artifactId>tsfile</artifactId> - <version>2.4.0</version> + <version>2.4.1-SNAPSHOT</version> </dependency> </dependencies> <build> diff --git a/java/pom.xml b/java/pom.xml index 1d256d0f0..44a243008 100644 --- a/java/pom.xml +++ b/java/pom.xml @@ -24,10 +24,10 @@ <parent> <groupId>org.apache.tsfile</groupId> <artifactId>tsfile-parent</artifactId> - <version>2.4.0</version> + <version>2.4.1-SNAPSHOT</version> </parent> <artifactId>tsfile-java</artifactId> - <version>2.4.0</version> + <version>2.4.1-SNAPSHOT</version> <packaging>pom</packaging> <name>TsFile: Java</name> <modules> @@ -188,7 +188,7 @@ <importOrder> <order>org.apache.tsfile,,javax,java,\#</order> </importOrder> - <removeUnusedImports/> + <removeUnusedImports /> </java> <lineEndings>UNIX</lineEndings> </configuration> diff --git a/java/tools/pom.xml b/java/tools/pom.xml index ca84bdf79..4d6bc9f71 100644 --- a/java/tools/pom.xml +++ b/java/tools/pom.xml @@ -24,7 +24,7 @@ <parent> <groupId>org.apache.tsfile</groupId> <artifactId>tsfile-java</artifactId> - <version>2.4.0</version> + <version>2.4.1-SNAPSHOT</version> </parent> <artifactId>tools</artifactId> <name>TsFile: Java: Tools</name> @@ -32,7 +32,7 @@ <dependency> <groupId>org.apache.tsfile</groupId> <artifactId>common</artifactId> - <version>2.4.0</version> + <version>2.4.1-SNAPSHOT</version> </dependency> <dependency> <groupId>commons-cli</groupId> @@ -41,7 +41,7 @@ <dependency> <groupId>org.apache.tsfile</groupId> <artifactId>tsfile</artifactId> - <version>2.4.0</version> + <version>2.4.1-SNAPSHOT</version> </dependency> <dependency> <groupId>ch.qos.logback</groupId> diff --git a/java/tsfile/pom.xml b/java/tsfile/pom.xml index 4b22172e1..c46f651b1 100644 --- a/java/tsfile/pom.xml +++ b/java/tsfile/pom.xml @@ -24,7 +24,7 @@ <parent> <groupId>org.apache.tsfile</groupId> <artifactId>tsfile-java</artifactId> - <version>2.4.0</version> + <version>2.4.1-SNAPSHOT</version> </parent> <artifactId>tsfile</artifactId> <name>TsFile: Java: TsFile</name> @@ -38,7 +38,7 @@ <dependency> <groupId>org.apache.tsfile</groupId> <artifactId>common</artifactId> - <version>2.4.0</version> + <version>2.4.1-SNAPSHOT</version> </dependency> <dependency> <groupId>com.github.luben</groupId> @@ -145,10 +145,10 @@ <goal>shade</goal> </goals> <configuration> - <relocations/> + <relocations /> <createDependencyReducedPom>false</createDependencyReducedPom> <transformers> - <transformer implementation="org.apache.maven.plugins.shade.resource.ManifestResourceTransformer"/> + <transformer implementation="org.apache.maven.plugins.shade.resource.ManifestResourceTransformer" /> </transformers> </configuration> </execution> @@ -185,7 +185,7 @@ <Export-Package>org.apache.tsfile.*</Export-Package> <Embed-Dependency>common;inline=true</Embed-Dependency> <Embed-Transitive>false</Embed-Transitive> - <Private-Package/> + <Private-Package /> <_removeheaders>Bnd-LastModified,Built-By</_removeheaders> <Bundle-SymbolicName>org.apache.tsfile</Bundle-SymbolicName> </instructions> diff --git a/pom.xml b/pom.xml index 0757fb183..dc7cc1597 100644 --- a/pom.xml +++ b/pom.xml @@ -28,14 +28,14 @@ </parent> <groupId>org.apache.tsfile</groupId> <artifactId>tsfile-parent</artifactId> - <version>2.4.0</version> + <version>2.4.1-SNAPSHOT</version> <packaging>pom</packaging> <name>Apache TsFile Project Parent POM</name> <properties> <maven.compiler.source>17</maven.compiler.source> <maven.compiler.target>17</maven.compiler.target> <maven.compiler.release>17</maven.compiler.release> - <argLine/> + <argLine /> <spotless.skip>false</spotless.skip> <cmake.version>3.30.2-b1</cmake.version> <spotless.version>2.44.3</spotless.version> @@ -263,7 +263,7 @@ <phase>validate</phase> <configuration> <rules> - <dependencyConvergence/> + <dependencyConvergence /> </rules> </configuration> </execution> @@ -587,7 +587,7 @@ <connection>scm:git:ssh://[email protected]/apache/tsfile.git</connection> <developerConnection>scm:git:ssh://[email protected]/apache/tsfile.git</developerConnection> <url>ssh://[email protected]:apache/tsfile.git</url> - <tag>v2.4.0</tag> + <tag>HEAD</tag> </scm> <issueManagement> <system>GitHub Issues</system> diff --git a/python/pom.xml b/python/pom.xml index cee837490..c94fa6e57 100644 --- a/python/pom.xml +++ b/python/pom.xml @@ -22,7 +22,7 @@ <parent> <groupId>org.apache.tsfile</groupId> <artifactId>tsfile-parent</artifactId> - <version>2.4.0</version> + <version>2.4.1-SNAPSHOT</version> </parent> <artifactId>tsfile-python</artifactId> <packaging>pom</packaging> diff --git a/python/pyproject.toml b/python/pyproject.toml index 7772e3642..1adb1d18b 100644 --- a/python/pyproject.toml +++ b/python/pyproject.toml @@ -28,7 +28,7 @@ build-backend = "setuptools.build_meta" [project] name = "tsfile" -version = "2.4.0" +version = "2.4.1.dev" requires-python = ">=3.9" description = "TsFile Python" readme = {file = "README.md", content-type = "text/markdown"} diff --git a/python/setup.py b/python/setup.py index 42ebe6a9b..a7a33c328 100644 --- a/python/setup.py +++ b/python/setup.py @@ -30,7 +30,7 @@ from setuptools.command.build_ext import build_ext ROOT = Path(__file__).parent.resolve() PKG = ROOT / "tsfile" -version = "2.4.0" +version = "2.4.1.dev" def _find_cpp_build():
