You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ignite.apache.org by vk...@apache.org on 2020/12/31 23:50:49 UTC

[ignite-3] branch ignite-3.0.0-alpha1 updated (7208627 -> b51547f)

This is an automated email from the ASF dual-hosted git repository.

vkulichenko pushed a change to branch ignite-3.0.0-alpha1
in repository https://gitbox.apache.org/repos/asf/ignite-3.git.


    from 7208627  Updated version to 3.0.0-alpha1
     add d60f077  IGNITE-13940 Fixed java versions in pom.xml, fixed tests on Windows platforms (#22)
     add f3c3fa0  IGNITE-13943 - Changed default REST port to 10300
     add 51ddaba  IGNITE-13938 - Fixed progress bar
     add c56be97  IGNITE-13740 - Added Linux/Windows tabs to the installation part of the tutorial
     add 779c95b  IGNITE-13740 - Updated download link
     add e725e75  ignite-13740: renamed the Linux -> Unix tab and added the Windows (CMD) tab to all relevant sections.
     add 7b0ced3  Merge branch 'main' of github.com:apache/ignite-3 into main
     add 50f2895  IGNITE-13740 - Updated download link
     new 4813274  Updated version to 3.0.0-alpha1
     new b51547f  Merge branch 'ignite-3.0.0-alpha1' of github.com:apache/ignite-3 into ignite-3.0.0-alpha1

The 2 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 docs/_docs/quick-start/getting-started-guide.adoc  | 63 +++++++++++++++--
 modules/cli/pom.xml                                |  6 --
 .../progressbar/IgniteProgressBarRenderer.java     | 54 --------------
 .../org/apache/ignite/cli/IgniteProgressBar.java   | 82 +++++++++++++++-------
 .../cli/builtins/module/MavenArtifactResolver.java |  2 +-
 .../ignite/cli/builtins/node/NodeManager.java      |  7 +-
 .../apache/ignite/cli/spec/ConfigCommandSpec.java  |  4 +-
 .../apache/ignite/cli/spec/NodeCommandSpec.java    |  3 +-
 .../apache/ignite/cli/IgniteCliInterfaceTest.java  |  9 +--
 modules/configuration-annotation-processor/pom.xml |  8 +--
 .../processor/internal/AbstractProcessorTest.java  | 10 +--
 .../java/org/apache/ignite/rest/RestModule.java    |  4 +-
 .../src/main/resources/bootstrap-config.json       |  2 +-
 pom.xml                                            |  2 +
 14 files changed, 139 insertions(+), 117 deletions(-)
 delete mode 100644 modules/cli/src/main/java/me/tongfei/progressbar/IgniteProgressBarRenderer.java


[ignite-3] 02/02: Merge branch 'ignite-3.0.0-alpha1' of github.com:apache/ignite-3 into ignite-3.0.0-alpha1

Posted by vk...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

vkulichenko pushed a commit to branch ignite-3.0.0-alpha1
in repository https://gitbox.apache.org/repos/asf/ignite-3.git

commit b51547fc00afde2f64702e91e22d85a3c845302b
Merge: 4813274 7208627
Author: Valentin Kulichenko <va...@gmail.com>
AuthorDate: Thu Dec 31 15:50:23 2020 -0800

    Merge branch 'ignite-3.0.0-alpha1' of github.com:apache/ignite-3 into ignite-3.0.0-alpha1



[ignite-3] 01/02: Updated version to 3.0.0-alpha1

Posted by vk...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

vkulichenko pushed a commit to branch ignite-3.0.0-alpha1
in repository https://gitbox.apache.org/repos/asf/ignite-3.git

commit 48132747359c5e739c4115f0a08501e369e15e5b
Author: Valentin Kulichenko <va...@gmail.com>
AuthorDate: Wed Dec 30 21:25:20 2020 -0800

    Updated version to 3.0.0-alpha1
---
 modules/cli-common/pom.xml                         | 2 +-
 modules/cli/pom.xml                                | 2 +-
 modules/configuration-annotation-processor/pom.xml | 2 +-
 modules/configuration/pom.xml                      | 2 +-
 modules/ignite-runner/pom.xml                      | 2 +-
 pom.xml                                            | 2 +-
 6 files changed, 6 insertions(+), 6 deletions(-)

diff --git a/modules/cli-common/pom.xml b/modules/cli-common/pom.xml
index 06a5351..263a164 100644
--- a/modules/cli-common/pom.xml
+++ b/modules/cli-common/pom.xml
@@ -25,7 +25,7 @@
     <parent>
         <groupId>org.apache.ignite</groupId>
         <artifactId>apache-ignite</artifactId>
-        <version>3.0.0-SNAPSHOT</version>
+        <version>3.0.0-alpha1</version>
         <relativePath>../..</relativePath>
     </parent>
 
diff --git a/modules/cli/pom.xml b/modules/cli/pom.xml
index e79a94f..d0b77b1 100644
--- a/modules/cli/pom.xml
+++ b/modules/cli/pom.xml
@@ -27,7 +27,7 @@
     <parent>
         <groupId>org.apache.ignite</groupId>
         <artifactId>apache-ignite</artifactId>
-        <version>3.0.0-SNAPSHOT</version>
+        <version>3.0.0-alpha1</version>
         <relativePath>../..</relativePath>
     </parent>
 
diff --git a/modules/configuration-annotation-processor/pom.xml b/modules/configuration-annotation-processor/pom.xml
index e01264e..1216749 100644
--- a/modules/configuration-annotation-processor/pom.xml
+++ b/modules/configuration-annotation-processor/pom.xml
@@ -27,7 +27,7 @@
     <parent>
         <groupId>org.apache.ignite</groupId>
         <artifactId>apache-ignite</artifactId>
-        <version>3.0.0-SNAPSHOT</version>
+        <version>3.0.0-alpha1</version>
         <relativePath>../..</relativePath>
     </parent>
 
diff --git a/modules/configuration/pom.xml b/modules/configuration/pom.xml
index 65af22f..5235ae5 100644
--- a/modules/configuration/pom.xml
+++ b/modules/configuration/pom.xml
@@ -27,7 +27,7 @@
     <parent>
         <groupId>org.apache.ignite</groupId>
         <artifactId>apache-ignite</artifactId>
-        <version>3.0.0-SNAPSHOT</version>
+        <version>3.0.0-alpha1</version>
         <relativePath>../..</relativePath>
     </parent>
 
diff --git a/modules/ignite-runner/pom.xml b/modules/ignite-runner/pom.xml
index f6d068d..530b49f 100644
--- a/modules/ignite-runner/pom.xml
+++ b/modules/ignite-runner/pom.xml
@@ -27,7 +27,7 @@
     <parent>
         <groupId>org.apache.ignite</groupId>
         <artifactId>apache-ignite</artifactId>
-        <version>3.0.0-SNAPSHOT</version>
+        <version>3.0.0-alpha1</version>
         <relativePath>../..</relativePath>
     </parent>
 
diff --git a/pom.xml b/pom.xml
index 61b5716..29b3869 100644
--- a/pom.xml
+++ b/pom.xml
@@ -30,7 +30,7 @@
 
     <groupId>org.apache.ignite</groupId>
     <artifactId>apache-ignite</artifactId>
-    <version>3.0.0-SNAPSHOT</version>
+    <version>3.0.0-alpha1</version>
     <packaging>pom</packaging>
 
     <description>Java-based middleware for in-memory processing of big data in a distributed environment.</description>