Skip to content

Commit

Permalink
Merge pull request #488 from juv/fix/outdated-version-in-readme
Browse files Browse the repository at this point in the history
Update docs to recent version 0.6.3
  • Loading branch information
satran004 authored Jan 22, 2025
2 parents eb74152 + 324fb09 commit 53b1614
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 17 deletions.
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

0 comments on commit 53b1614

Please sign in to comment.