From 72d8f3695fc19c6e772133eabc9c0f8853253b95 Mon Sep 17 00:00:00 2001 From: Shawn Date: Sun, 8 Oct 2023 15:07:53 +0800 Subject: [PATCH] bump version to 0.3.0-SNAPSHOT (#990) * bump version to 0.3.0-SNAPSHOT * fix bump version to 0.3.0-SNAPSHOT --- README.md | 8 ++++---- integration_tests/jdk_compatibility_tests/pom.xml | 2 +- integration_tests/latest_jdk_tests/pom.xml | 2 +- integration_tests/perftests/pom.xml | 2 +- java/fury-benchmark/pom.xml | 2 +- java/fury-core/pom.xml | 2 +- java/fury-format/pom.xml | 2 +- java/fury-test-core/pom.xml | 2 +- java/fury-testsuite/pom.xml | 2 +- java/pom.xml | 2 +- javascript/packages/fury/package.json | 2 +- javascript/packages/hps/package.json | 2 +- python/pyfury/__init__.py | 2 +- 13 files changed, 16 insertions(+), 16 deletions(-) diff --git a/README.md b/README.md index 179b466bcd..1f40f2419a 100644 --- a/README.md +++ b/README.md @@ -96,13 +96,13 @@ Nightly snapshot: org.furyio fury-core - 0.2.0-SNAPSHOT + 0.3.0-SNAPSHOT ``` Release version: @@ -110,13 +110,13 @@ Release version: org.furyio fury-core - 0.1.2 + 0.2.0 ``` diff --git a/integration_tests/jdk_compatibility_tests/pom.xml b/integration_tests/jdk_compatibility_tests/pom.xml index 343b15b623..028bcf6d2b 100644 --- a/integration_tests/jdk_compatibility_tests/pom.xml +++ b/integration_tests/jdk_compatibility_tests/pom.xml @@ -23,7 +23,7 @@ org.furyio jdk_compatibility_tests - 0.2.0-SNAPSHOT + 0.3.0-SNAPSHOT 8 diff --git a/integration_tests/latest_jdk_tests/pom.xml b/integration_tests/latest_jdk_tests/pom.xml index d774f3f405..22b503b5ce 100644 --- a/integration_tests/latest_jdk_tests/pom.xml +++ b/integration_tests/latest_jdk_tests/pom.xml @@ -23,7 +23,7 @@ org.furyio latest_jdk_tests - 0.2.0-SNAPSHOT + 0.3.0-SNAPSHOT 17 diff --git a/integration_tests/perftests/pom.xml b/integration_tests/perftests/pom.xml index 9a0ff85d13..da403b5088 100644 --- a/integration_tests/perftests/pom.xml +++ b/integration_tests/perftests/pom.xml @@ -22,7 +22,7 @@ 4.0.0 org.furyio perftests - 0.2.0-SNAPSHOT + 0.3.0-SNAPSHOT UTF-8 1.33 diff --git a/java/fury-benchmark/pom.xml b/java/fury-benchmark/pom.xml index 76089c889e..a1d6394edb 100644 --- a/java/fury-benchmark/pom.xml +++ b/java/fury-benchmark/pom.xml @@ -23,7 +23,7 @@ fury-parent org.furyio - 0.2.0-SNAPSHOT + 0.3.0-SNAPSHOT fury-benchmark diff --git a/java/fury-core/pom.xml b/java/fury-core/pom.xml index 5166c7dc6b..5a0465ff1b 100644 --- a/java/fury-core/pom.xml +++ b/java/fury-core/pom.xml @@ -22,7 +22,7 @@ org.furyio fury-parent - 0.2.0-SNAPSHOT + 0.3.0-SNAPSHOT 4.0.0 diff --git a/java/fury-format/pom.xml b/java/fury-format/pom.xml index 920b44977b..3bc709acd4 100644 --- a/java/fury-format/pom.xml +++ b/java/fury-format/pom.xml @@ -22,7 +22,7 @@ org.furyio fury-parent - 0.2.0-SNAPSHOT + 0.3.0-SNAPSHOT 4.0.0 diff --git a/java/fury-test-core/pom.xml b/java/fury-test-core/pom.xml index a6c683b043..5548e352e1 100644 --- a/java/fury-test-core/pom.xml +++ b/java/fury-test-core/pom.xml @@ -22,7 +22,7 @@ fury-parent org.furyio - 0.2.0-SNAPSHOT + 0.3.0-SNAPSHOT 4.0.0 diff --git a/java/fury-testsuite/pom.xml b/java/fury-testsuite/pom.xml index e6adde6506..8be6d6fc59 100644 --- a/java/fury-testsuite/pom.xml +++ b/java/fury-testsuite/pom.xml @@ -22,7 +22,7 @@ fury-parent org.furyio - 0.2.0-SNAPSHOT + 0.3.0-SNAPSHOT 4.0.0 diff --git a/java/pom.xml b/java/pom.xml index 848ae79fb1..916c8a127a 100644 --- a/java/pom.xml +++ b/java/pom.xml @@ -24,7 +24,7 @@ org.furyio fury-parent pom - 0.2.0-SNAPSHOT + 0.3.0-SNAPSHOT Fury Project Parent POM A blazing fast multi-language serialization framework powered by jit and zero-copy. https://github.com/alipay/fury diff --git a/javascript/packages/fury/package.json b/javascript/packages/fury/package.json index 11ecd59a09..131eebbe10 100644 --- a/javascript/packages/fury/package.json +++ b/javascript/packages/fury/package.json @@ -1,6 +1,6 @@ { "name": "@furyjs/fury", - "version": "0.0.18", + "version": "0.3.0.dev", "description": "A blazing fast multi-language serialization framework powered by jit and zero-copy", "main": "dist/index.js", "scripts": { diff --git a/javascript/packages/hps/package.json b/javascript/packages/hps/package.json index 4be41cc0ab..c498383217 100644 --- a/javascript/packages/hps/package.json +++ b/javascript/packages/hps/package.json @@ -1,6 +1,6 @@ { "name": "@furyjs/hps", - "version": "0.0.6", + "version": "0.3.0.dev", "description": "fury nodejs high-performance suite", "main": "dist/index.js", "files": [ diff --git a/python/pyfury/__init__.py b/python/pyfury/__init__.py index fe98452db9..c49e871e64 100644 --- a/python/pyfury/__init__.py +++ b/python/pyfury/__init__.py @@ -68,4 +68,4 @@ except (AttributeError, ImportError): pass -__version__ = "0.2.0.dev" +__version__ = "0.3.0.dev"