You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Update README with version range and latest javadoc links
- Use 2.2.+ version range to auto-select latest patch version
- Link to Maven Central for explicit version lookup
- Update Javadoc URLs to use /latest/ path
🤖 Generated with [Claude Code](https://claude.com/claude-code)
Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
Copy file name to clipboardExpand all lines: README.md
+6-4Lines changed: 6 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -15,7 +15,7 @@ For [Maven](https://maven.apache.org/) projects, use:
15
15
<dependency>
16
16
<groupId>io.permit</groupId>
17
17
<artifactId>permit-sdk-java</artifactId>
18
-
<version>2.0.0</version>
18
+
<version>2.2.+</version>
19
19
</dependency>
20
20
```
21
21
@@ -25,10 +25,12 @@ For [Gradle](https://gradle.org/) projects, configure `permit-sdk-java` as a dep
25
25
dependencies {
26
26
// ...
27
27
28
-
implementation 'io.permit:permit-sdk-java:2.0.0'
28
+
implementation 'io.permit:permit-sdk-java:2.2.+'
29
29
}
30
30
```
31
31
32
+
> **Note**: The `2.2.+` version range automatically selects the latest patch version. For explicit versions, check [Maven Central](https://central.sonatype.com/artifact/io.permit/permit-sdk-java).
33
+
32
34
## Usage
33
35
34
36
### Initializing the SDK
@@ -149,6 +151,6 @@ CreateOrUpdateResult<UserRead> result = permit.api.users.sync(new UserCreate("[U
149
151
150
152
## Javadoc reference
151
153
152
-
To view the javadoc reference, [click here](https://javadoc.io/doc/io.permit/permit-sdk-java/2.0.0/index.html).
154
+
To view the javadoc reference, [click here](https://javadoc.io/doc/io.permit/permit-sdk-java/latest/index.html).
153
155
154
-
It's easiest to start with the root [Permit](https://javadoc.io/static/io.permit/permit-sdk-java/2.0.0/io/permit/sdk/Permit.html) class.
156
+
It's easiest to start with the root [Permit](https://javadoc.io/doc/io.permit/permit-sdk-java/latest/io/permit/sdk/Permit.html) class.
0 commit comments