Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update docs to recent version 0.6.3 #488

Merged
merged 1 commit into from
Jan 22, 2025
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
18 changes: 9 additions & 9 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ For fine-grained dependency management, add one or more below modules as require
<dependency>
<groupId>com.bloxbean.cardano</groupId>
<artifactId>cardano-client-lib</artifactId>
<version>0.5.1</version>
<version>0.6.3</version>
</dependency>
```
- Backend modules
Expand All @@ -106,49 +106,49 @@ For fine-grained dependency management, add one or more below modules as require
<dependency>
<groupId>com.bloxbean.cardano</groupId>
<artifactId>cardano-client-backend-blockfrost</artifactId>
<version>0.5.1</version>
<version>0.6.3</version>
</dependency>

<!-- For Koios backend -->
<dependency>
<groupId>com.bloxbean.cardano</groupId>
<artifactId>cardano-client-backend-koios</artifactId>
<version>0.5.1</version>
<version>0.6.3</version>
</dependency>

<!-- For Ogmios / Kupo backend -->
<dependency>
<groupId>com.bloxbean.cardano</groupId>
<artifactId>cardano-client-backend-ogmios</artifactId>
<version>0.5.1</version>
<version>0.6.3</version>
</dependency>
```

**For Gradle, add the following dependencies to build.gradle**

- Core Module
```
implementation 'com.bloxbean.cardano:cardano-client-lib:0.5.1'
implementation 'com.bloxbean.cardano:cardano-client-lib:0.6.3'
```
- Backend modules
- For backend support, use one of the following supported backend module

```groovy
//For Blockfrost
implementation 'com.bloxbean.cardano:cardano-client-backend-blockfrost:0.5.1'
implementation 'com.bloxbean.cardano:cardano-client-backend-blockfrost:0.6.3'

//For Koios
implementation 'com.bloxbean.cardano:cardano-client-backend-koios:0.5.1'
implementation 'com.bloxbean.cardano:cardano-client-backend-koios:0.6.3'

//For Ogmios / Kupo
implementation 'com.bloxbean.cardano:cardano-client-backend-ogmios:0.5.1'
implementation 'com.bloxbean.cardano:cardano-client-backend-ogmios:0.6.3'

```


### For snapshot binaries

**SNAPSHOT_VERSION :** 0.5.2-SNAPSHOT (Please verify the latest snapshot version in gradle.properties)
**SNAPSHOT_VERSION :** 0.7.0-beta2-SNAPSHOT (Please verify the latest snapshot version in gradle.properties)

- For Maven, add the following dependencies and repository to project's pom.xml
```
Expand Down
16 changes: 8 additions & 8 deletions docs/docs/gettingstarted/dependencies.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ sidebar_position: 2
<dependency>
<groupId>com.bloxbean.cardano</groupId>
<artifactId>cardano-client-lib</artifactId>
<version>0.5.1</version>
<version>0.6.3</version>
</dependency>
```
- **Backend modules**
Expand All @@ -27,21 +27,21 @@ sidebar_position: 2
<dependency>
<groupId>com.bloxbean.cardano</groupId>
<artifactId>cardano-client-backend-blockfrost</artifactId>
<version>0.5.1</version>
<version>0.6.3</version>
</dependency>

<!-- For Koios backend -->
<dependency>
<groupId>com.bloxbean.cardano</groupId>
<artifactId>cardano-client-backend-koios</artifactId>
<version>0.5.1</version>
<version>0.6.3</version>
</dependency>

<!-- For Ogmios backend -->
<dependency>
<groupId>com.bloxbean.cardano</groupId>
<artifactId>cardano-client-backend-ogmios</artifactId>
<version>0.5.1</version>
<version>0.6.3</version>
</dependency>
```

Expand All @@ -50,21 +50,21 @@ sidebar_position: 2
- **Core Module**

```
implementation 'com.bloxbean.cardano:cardano-client-lib:0.5.1'
implementation 'com.bloxbean.cardano:cardano-client-lib:0.6.3'
```
- **Backend modules**

- For backend support, use one of the following supported backend module

```groovy
//For Blockfrost
implementation 'com.bloxbean.cardano:cardano-client-backend-blockfrost:0.5.1'
implementation 'com.bloxbean.cardano:cardano-client-backend-blockfrost:0.6.3'

//For Koios
implementation 'com.bloxbean.cardano:cardano-client-backend-koios:0.5.1'
implementation 'com.bloxbean.cardano:cardano-client-backend-koios:0.6.3'

//For Ogmios
implementation 'com.bloxbean.cardano:cardano-client-backend-ogmios:0.5.1'
implementation 'com.bloxbean.cardano:cardano-client-backend-ogmios:0.6.3'

```

Expand Down
Loading