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

wangweipeng pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/incubator-fury-site.git


The following commit(s) were added to refs/heads/main by this push:
     new 2c3df2a  update fury java install (#98)
2c3df2a is described below

commit 2c3df2a7329a3feda4e8f77bf7b8c0ca2cd3fc17
Author: Shawn Yang <shawn.ck.y...@gmail.com>
AuthorDate: Thu Dec 28 08:44:19 2023 +0800

    update fury java install (#98)
---
 docs/start/install.md | 18 ++++++++++--------
 1 file changed, 10 insertions(+), 8 deletions(-)

diff --git a/docs/start/install.md b/docs/start/install.md
index f755c58..e428a45 100644
--- a/docs/start/install.md
+++ b/docs/start/install.md
@@ -11,8 +11,8 @@ Nightly snapshot:
 ```xml
 <repositories>
   <repository>
-    <id>sonatype</id>
-    <url>https://s01.oss.sonatype.org/content/repositories/snapshots</url>
+    <id>apache</id>
+    <url>https://repository.apache.org/snapshots/</url>
     <releases>
       <enabled>false</enabled>
     </releases>
@@ -22,13 +22,13 @@ Nightly snapshot:
   </repository>
 </repositories>
 <dependency>
-  <groupId>org.furyio</groupId>
+  <groupId>org.apache.fury</groupId>
   <artifactId>fury-core</artifactId>
   <version>0.5.0-SNAPSHOT</version>
 </dependency>
 <!-- row/arrow format support -->
 <!-- <dependency>
-  <groupId>org.furyio</groupId>
+  <groupId>org.apache.fury</groupId>
   <artifactId>fury-format</artifactId>
   <version>0.5.0-SNAPSHOT</version>
 </dependency> -->
@@ -40,18 +40,20 @@ Release version:
 <dependency>
   <groupId>org.furyio</groupId>
   <artifactId>fury-core</artifactId>
-  <version>0.4.0</version>
+  <version>0.4.1</version>
 </dependency>
 <!-- row/arrow format support -->
 <!-- <dependency>
   <groupId>org.furyio</groupId>
   <artifactId>fury-format</artifactId>
-  <version>0.4.0</version>
+  <version>0.4.1</version>
 </dependency> -->
 ```
+Maven groupId will be changed to `org.apache.fury` when next version is 
released.
+
 ### Scala
 ```sbt
-libraryDependencies += "org.furyio" % "fury-core" % "0.4.0"
+libraryDependencies += "org.furyio" % "fury-core" % "0.4.1"
 ```
 
 ### Python
@@ -60,7 +62,7 @@ libraryDependencies += "org.furyio" % "fury-core" % "0.4.0"
 # Python wheel will be released in the future.
 # Currently you need to specify `--pre` to install
 # the unstable version.
-pip install pyfury --pre
+pip install pyfury
 ```
 
 ### Golang


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscr...@fury.apache.org
For additional commands, e-mail: commits-h...@fury.apache.org

Reply via email to