Skip to content

Commit

Permalink
docs: Update to latest version (#2080)
Browse files Browse the repository at this point in the history
Update the version in docs to latest
  • Loading branch information
theweipeng authored Feb 21, 2025
1 parent fd2e272 commit 07eed09
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -125,13 +125,13 @@ Release version:
<dependency>
<groupId>org.apache.fury</groupId>
<artifactId>fury-core</artifactId>
<version>0.9.0</version>
<version>0.10.0</version>
</dependency>
<!-- row/arrow format support -->
<!-- <dependency>
<groupId>org.apache.fury</groupId>
<artifactId>fury-format</artifactId>
<version>0.9.0</version>
<version>0.10.0</version>
</dependency> -->
```

Expand All @@ -140,13 +140,13 @@ Release version:
Scala2:

```sbt
libraryDependencies += "org.apache.fury" % "fury-scala_2.13" % "0.9.0"
libraryDependencies += "org.apache.fury" % "fury-scala_2.13" % "0.10.0"
```

Scala3:

```sbt
libraryDependencies += "org.apache.fury" % "fury-scala_3" % "0.9.0"
libraryDependencies += "org.apache.fury" % "fury-scala_3" % "0.10.0"
```

### Kotlin
Expand All @@ -155,7 +155,7 @@ libraryDependencies += "org.apache.fury" % "fury-scala_3" % "0.9.0"
<dependency>
<groupId>org.apache.fury</groupId>
<artifactId>fury-kotlin</artifactId>
<version>0.9.0</version>
<version>0.10.0</version>
</dependency>
```

Expand Down
4 changes: 2 additions & 2 deletions docs/guide/scala_guide.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,13 +19,13 @@ Scala 2 and 3 are both supported.
To add a dependency on Fury scala for scala 2 with sbt, use the following:

```sbt
libraryDependencies += "org.apache.fury" % "fury-scala_2.13" % "0.9.0"
libraryDependencies += "org.apache.fury" % "fury-scala_2.13" % "0.10.0"
```

To add a dependency on Fury scala for scala 3 with sbt, use the following:

```sbt
libraryDependencies += "org.apache.fury" % "fury-scala_3" % "0.9.0"
libraryDependencies += "org.apache.fury" % "fury-scala_3" % "0.10.0"
```

## Quict Start
Expand Down

0 comments on commit 07eed09

Please sign in to comment.