Skip to content

Commit

Permalink
docs(dependencies): update Chapi versions across documentation
Browse files Browse the repository at this point in the history
Update the Chapi library versions in the documentation to the latest release, ensuring consistency across all code snippets and examples.

- Updated `chapi-ast-java` and `chapi-domain` dependencies from `2.2.2` to `2.3.6` in `code-linter.md`, `quick-start.md`, `README.md`, and `home.md`.
  • Loading branch information
phodal committed Aug 21, 2024
1 parent f0689ef commit 20537cb
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 9 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -110,8 +110,8 @@ We use [https://github.com/shevek/jcpp](https://github.com/shevek/jcpp) to pre-p

```
dependencies {
implementation 'com.phodal.chapi:chapi-ast-java:2.2.2'
implementation 'com.phodal.chapi:chapi-domain:2.2.2'
implementation 'com.phodal.chapi:chapi-ast-java:2.3.6'
implementation 'com.phodal.chapi:chapi-domain:2.3.6'
}
```

Expand Down
4 changes: 2 additions & 2 deletions docs/home.md
Original file line number Diff line number Diff line change
Expand Up @@ -109,8 +109,8 @@ Algol Family [https://wiki.c2.com/?AlgolFamily](https://wiki.c2.com/?AlgolFamily

```
dependencies {
implementation 'com.phodal.chapi:chapi-ast-java:2.2.2'
implementation 'com.phodal.chapi:chapi-domain:2.2.2'
implementation 'com.phodal.chapi:chapi-ast-java:2.3.6'
implementation 'com.phodal.chapi:chapi-domain:2.3.6'
}
```

Expand Down
8 changes: 4 additions & 4 deletions docs/quick-start.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,17 +15,17 @@ Declare the dependencies in your build.gradle file

```groovy
dependencies {
implementation 'com.phodal.chapi:chapi-ast-java:2.2.2'
implementation 'com.phodal.chapi:chapi-domain:2.2.2'
implementation 'com.phodal.chapi:chapi-ast-java:2.3.6'
implementation 'com.phodal.chapi:chapi-domain:2.3.6'
}
```

build.gradle.kts

```kotlin
dependencies {
implementation("com.phodal.chapi:chapi-ast-java:2.2.2")
implementation("com.phodal.chapi:chapi-domain:2.2.2")
implementation("com.phodal.chapi:chapi-ast-java:2.3.6")
implementation("com.phodal.chapi:chapi-domain:2.3.6")
}
```

Expand Down
2 changes: 1 addition & 1 deletion docs/usecases/code-linter.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
layout: default
title: Code Liner
title: Code Linter
nav_order: 1
parent: Usecases
permalink: /usecases/code-linter
Expand Down

0 comments on commit 20537cb

Please sign in to comment.