Skip to content

Commit 484e149

Browse files
committed
Update version to 0.2.7.1-STABLE and enable logging in YamlUtils
1 parent fb5c13f commit 484e149

3 files changed

Lines changed: 7 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.7-STABLE'
8+
version = '0.2.7.1-STABLE'
99

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

readme.md

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,12 +17,12 @@ And if you thought APIs were complicated, think again! With ConnectLib, it's lik
1717
---
1818

1919
```java
20-
Stable Version: 0.2.7-STABLE
20+
Stable Version: 0.2.7.1-STABLE
2121
```
2222

2323
---
2424

25-
```java
25+
```java[build.gradle](build.gradle)
2626
Support Lib : Java 23
2727
2828
Hook -----------------------|
@@ -105,7 +105,9 @@ repositories {
105105

106106
dependencies {
107107

108-
implementation("fr.sandro642.github:ConnectLib:0.2.7-STABLE")
108+
implementation("fr.sandro642.github:ConnectLib:0.2.7.1-STABLE")
109+
// Importation de Project Reactor pour une utilisation complète de ConnectLib
110+
implementation ("io.projectreactor:reactor-core:3.6.9")
109111

110112
}
111113

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -179,7 +179,7 @@ public void generateTemplateIfNotExists(Map<Enum<?>, String> routes) {
179179
}
180180

181181
template.append("\n\n# Logs\n")
182-
.append("enableLogs: false\n");
182+
.append("enableLogs: true\n");
183183

184184
try (FileWriter writer = new FileWriter(file)) {
185185
writer.write(template.toString());

0 commit comments

Comments
 (0)