Skip to content

Commit 153b2a4

Browse files
committed
Feature: update project version to 0.2.4-STABLE and fix parameter naming in documentation
1 parent b264849 commit 153b2a4

4 files changed

Lines changed: 4 additions & 5 deletions

File tree

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ plugins {
55
}
66

77
group = 'fr.sandro642.github'
8-
version = '0.2.3-STABLE'
8+
version = '0.2.4-STABLE'
99

1010
tasks.register('printVersion') {
1111
doLast {

readme.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ And if you thought APIs were complicated, think again! With ConnectLib, it's lik
77
---
88

99
```java
10-
Stable Version: 0.2.3-STABLE
10+
Stable Version: 0.2.4-STABLE
1111
```
1212

1313
---
@@ -93,7 +93,7 @@ repositories {
9393

9494
dependencies {
9595

96-
implementation("fr.sandro642.github:ConnectLib:0.2.3-STABLE")
96+
implementation("fr.sandro642.github:ConnectLib:0.2.4-STABLE")
9797

9898
}
9999

src/main/java/fr/sandro642/github/jobs/JobGetInfos.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,6 @@ public JobGetInfos getRoutes(MethodType methodType, Enum<?> routeName) {
8181
* @param methodType Type of HTTP method (GET, POST)
8282
* @param routeName Name of the route in the YAML file
8383
* @param body Body of the request for POST (can be null for GET)
84-
* @param params Additional parameters for the request
8584
* @return JobGetInfos for chaining
8685
*/
8786
public JobGetInfos getRoutes(MethodType methodType, Enum<?> routeName, Map<String, ?> body) {

src/main/java/fr/sandro642/github/utils/Logs.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ public void setPathFile(ResourceType type) {
4949
/**
5050
* * Static block to initialize the Logs instance.
5151
* This block is executed when the class is loaded, ensuring that the instance is created only once.
52-
* @param type The type of resource for which the logs are being created.
52+
* @param logType The type of resource for which the logs are being created.
5353
* @param <P>
5454
* @param logText The text to be logged.
5555
*/

0 commit comments

Comments
 (0)