Skip to content

Commit

Permalink
Prepare Release 1.23.6 (#7082)
Browse files Browse the repository at this point in the history
  • Loading branch information
cortinico committed Mar 25, 2024
1 parent d9bce89 commit 418f78b
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 2 deletions.
2 changes: 1 addition & 1 deletion build-logic/src/main/kotlin/Versions.kt
Expand Up @@ -2,7 +2,7 @@ import org.jetbrains.kotlin.gradle.dsl.JvmTarget

object Versions {

const val DETEKT: String = "1.23.5"
const val DETEKT: String = "1.23.6"
const val SNAPSHOT_NAME: String = "main"
val JVM_TARGET: JvmTarget = JvmTarget.JVM_1_8

Expand Down
19 changes: 19 additions & 0 deletions website/src/pages/changelog.md
Expand Up @@ -6,6 +6,25 @@ keywords: [changelog, release-notes, migration]

# Changelog and Migration Guide

#### 1.23.6 - 2024-03-23

This is a point release for Detekt `1.23.0`, where we added support for Kotlin `1.9.23` and fixed several bugs that got reported by the community.

##### Changelog

- UselessPostfixExpression - Fix #7037 false positive postfix - [#7084](https://github.com/detekt/detekt/pull/7084)
- Don't allow invalid Source Locations - [#7030](https://github.com/detekt/detekt/pull/7030)
- UnusedPrivateClass: don't report if private classes are used for type conversion - [#6995](https://github.com/detekt/detekt/pull/6995)
- RedundantSuspendModifier: do not report when the function has 'actual' modifier - [#6951](https://github.com/detekt/detekt/pull/6951)
- Update dependency gradle to v8.7 - [#7080](https://github.com/detekt/detekt/pull/7080)
- Update kotlin monorepo to v1.9.23 - [#7027](https://github.com/detekt/detekt/pull/7027)
- Update dependency gradle to v8.6 - [#6939](https://github.com/detekt/detekt/pull/6939)
- Update dependency com.android.tools.build:gradle to v8.3.1 - [#7070](https://github.com/detekt/detekt/pull/7070)

##### Contributors

We would like to thank the following contributors that made this release possible: @BraisGabin, @psuzn, @t-kameyama.

#### 1.23.5 - 2024-01-31

This is a point release for Detekt `1.23.0`, where we added support for Kotlin `1.9.22` and fixed several bugs that
Expand Down
2 changes: 1 addition & 1 deletion website/src/remark/detektVersionReplace.js
Expand Up @@ -3,7 +3,7 @@ const visit = require("unist-util-visit");
// Remark plugin that is replacing the [detekt_version] with the latest
// released version. Please note that this field is updated automatically
// by the `applyDocVersion` task.
const detektVersion = "1.23.5";
const detektVersion = "1.23.6";

const plugin = (options) => {
const transformer = async (ast) => {
Expand Down

0 comments on commit 418f78b

Please sign in to comment.