Skip to content

Commit 1977577

Browse files
release version 0.4.0
Co-authored-by: Jan Schawo <[email protected]>
1 parent 54fc5dd commit 1977577

File tree

3 files changed

+11
-2
lines changed

3 files changed

+11
-2
lines changed

CHANGELOG.md

+5
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
# Changelog
22

3+
## 0.4.0
4+
* _core_:
5+
* add metrics configuration so that histogram (bucket) is enabled for http.client metrics from webclient (http_client_requests_seconds_bucket).
6+
7+
38
## 0.3.1
49
* _core_:
510
* Fix: Just pass commit time from `git.properties` to status page, because the formats in the generated files are different.

buildSrc/src/main/kotlin/babbage.conventions.gradle.kts

+2-2
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ plugins {
1212
}
1313

1414
group = "de.otto.babbage"
15-
version = "0.3.2-SNAPSHOT"
15+
version = "0.4.0"
1616
java.sourceCompatibility = JavaVersion.VERSION_17
1717

1818
repositories {
@@ -67,7 +67,7 @@ tasks.withType<KotlinCompile> {
6767

6868
detekt {
6969
baseline = file("../detekt-baseline.xml")
70-
config = files("../detekt-config.yml")
70+
config.from(files("../detekt-config.yml"))
7171
buildUponDefaultConfig = true
7272
}
7373

detekt-config.yml

+4
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,10 @@ style:
99
- 'STOPSHIP:'
1010
WildcardImport:
1111
active: false
12+
MaxLineLength:
13+
active: false
14+
NewLineAtEndOfFile:
15+
active: false
1216

1317
potential-bugs:
1418
ImplicitDefaultLocale:

0 commit comments

Comments
 (0)