Skip to content

Commit

Permalink
Changed the core of the APIRequest api
Browse files Browse the repository at this point in the history
  • Loading branch information
N7ghtm4r3 committed Dec 6, 2023
1 parent 79b7c77 commit 14d07fe
Show file tree
Hide file tree
Showing 5 changed files with 168 additions and 162 deletions.
Binary file modified .gradle/file-system.probe
Binary file not shown.
36 changes: 21 additions & 15 deletions .idea/workspace.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# APIManager

**v2.2.0**
**v2.2.1**

This is a Java Based library useful to work with all json api services.

Expand Down Expand Up @@ -36,15 +36,15 @@ Add the JitPack repository to your build file
```gradle
dependencies {
implementation 'com.github.N7ghtm4r3:APIManager:2.2.0'
implementation 'com.github.N7ghtm4r3:APIManager:2.2.1'
}
```
#### Gradle (Kotlin)
```gradle
dependencies {
implementation("com.github.N7ghtm4r3:APIManager:2.2.0")
implementation("com.github.N7ghtm4r3:APIManager:2.2.1")
}
```
Expand All @@ -66,7 +66,7 @@ Add the JitPack repository to your build file
<dependency>
<groupId>com.github.N7ghtm4r3</groupId>
<artifactId>APIManager</artifactId>
<version>2.2.0</version>
<version>2.2.1</version>
</dependency>
```

Expand Down
6 changes: 3 additions & 3 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ plugins {
}

group 'tecknobit.com'
version '2.2.0'
version '2.2.1'

repositories {
mavenCentral()
Expand All @@ -15,7 +15,7 @@ dependencies {
testImplementation 'org.junit.jupiter:junit-jupiter-api:5.9.0'
testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.9.0'
implementation(group: 'commons-codec', name: 'commons-codec', version: '1.13')
implementation 'com.google.api-client:google-api-client:2.0.1'
implementation 'com.squareup.okhttp3:okhttp:3.14.6'
implementation 'com.google.zxing:core:3.3.1'
implementation 'com.google.zxing:javase:3.3.1'
implementation 'org.json:json:20230227'
Expand All @@ -26,7 +26,7 @@ publishing {
maven(MavenPublication) {
groupId = 'com.tecknobit.apimanager'
artifactId = 'APIManager'
version = '2.2.0'
version = '2.2.1'
from components.java
}
}
Expand Down
Loading

0 comments on commit 14d07fe

Please sign in to comment.