Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 11 additions & 10 deletions website/docs/quickstart/guide.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,13 +10,14 @@ title: 'Guide'
The following table lists the minimum Java language version requirements for each version of the Apache Fesod(
Incubating) library:

| Version | JDK Version Support Range | Notes |
|------------------|---------------------------|--------------------|
| 2.0.0-incubating | JDK8 - JDK25 | NA(not available) |
| 1.3.x | JDK8 - JDK25 | Non-Apache release |
| 1.2.x | JDK8 - JDK21 | Non-Apache release |
| 1.1.x | JDK8 - JDK21 | Non-Apache release |
| 1.0.x | JDK8 - JDK21 | Non-Apache release |
| Version | JDK Version Support Range | Notes |
|------------------|---------------------------|--------------------------|
| 2.0.1-incubating | JDK8 - JDK25 | Apache Incubator release |
| 2.0.0-incubating | JDK8 - JDK25 | NA(not available) |
| 1.3.x | JDK8 - JDK25 | Non-Apache release |
| 1.2.x | JDK8 - JDK21 | Non-Apache release |
| 1.1.x | JDK8 - JDK21 | Non-Apache release |
| 1.0.x | JDK8 - JDK21 | Non-Apache release |

We strongly recommend using the latest version of Apache Fesod(Incubating), as performance optimizations, bug fixes, and
new features
Expand Down Expand Up @@ -48,7 +49,7 @@ If you are using Maven for project building, add the following configuration in
<dependency>
<groupId>org.apache.fesod</groupId>
<artifactId>fesod-sheet</artifactId>
<version>version</version>
<version>2.0.1-incubating</version>
</dependency>
```

Expand All @@ -63,7 +64,7 @@ For better dependency management, you can use the Fesod BOM:
<dependency>
<groupId>org.apache.fesod</groupId>
<artifactId>fesod-bom</artifactId>
<version>version</version>
<version>2.0.1-incubating</version>
<type>pom</type>
<scope>import</scope>
</dependency>
Expand All @@ -85,6 +86,6 @@ If you are using Gradle for project building, add the following configuration in

```gradle
dependencies {
implementation 'org.apache.fesod:fesod-sheet:version'
implementation 'org.apache.fesod:fesod-sheet:2.0.1-incubating'
}
```
Original file line number Diff line number Diff line change
Expand Up @@ -9,13 +9,14 @@ title: '指南'

下表列出了各版本 Apache Fesod(Incubating) 基础库对 Java 语言版本最低要求的情况:

| 版本 | jdk版本支持范围 | 备注 |
|------------------|--------------|-------------|
| 2.0.0-incubating | jdk8 - jdk25 | NA(无效) |
| 1.3.x | jdk8 - jdk25 | 非 Apache 版本 |
| 1.2.x | jdk8 - jdk21 | 非 Apache 版本 |
| 1.1.x | jdk8 - jdk21 | 非 Apache 版本 |
| 1.0.x | jdk8 - jdk21 | 非 Apache 版本 |
| 版本 | jdk版本支持范围 | 备注 |
|------------------|--------------|--------------|
| 2.0.1-incubating | jdk8 - jdk25 | Apache 孵化器版本 |
| 2.0.0-incubating | jdk8 - jdk25 | NA(无效) |
| 1.3.x | jdk8 - jdk25 | 非 Apache 版本 |
| 1.2.x | jdk8 - jdk21 | 非 Apache 版本 |
| 1.1.x | jdk8 - jdk21 | 非 Apache 版本 |
| 1.0.x | jdk8 - jdk21 | 非 Apache 版本 |

我们强烈建议您使用最新版本的 Apache Fesod(Incubating),因为最新版本中的性能优化、BUG 修复和新功能都会让您的使用更加方便。

Expand Down Expand Up @@ -44,7 +45,7 @@ Apache Fesod(Incubating) 使用了以下核心依赖:
<dependency>
<groupId>org.apache.fesod</groupId>
<artifactId>fesod-sheet</artifactId>
<version>版本号</version>
<version>2.0.1-incubating</version>
</dependency>
```

Expand All @@ -59,7 +60,7 @@ Apache Fesod(Incubating) 使用了以下核心依赖:
<dependency>
<groupId>org.apache.fesod</groupId>
<artifactId>fesod-bom</artifactId>
<version>版本号</version>
<version>2.0.1-incubating</version>
<type>pom</type>
<scope>import</scope>
</dependency>
Expand All @@ -81,6 +82,6 @@ Apache Fesod(Incubating) 使用了以下核心依赖:

```gradle
dependencies {
implementation 'org.apache.fesod:fesod-sheet:版本号'
implementation 'org.apache.fesod:fesod-sheet:2.0.1-incubating'
}
```
Loading