From 53b77ce67d115074d9597ad98ce15dc7e25199df Mon Sep 17 00:00:00 2001 From: Yasuhiro SHIMIZU Date: Mon, 16 May 2022 11:35:17 +0900 Subject: [PATCH] prepare for release v0.12.0 --- CHANGELOGS.md | 12 ++++++++++++ README.md | 8 ++++---- gradle.properties | 2 +- 3 files changed, 17 insertions(+), 5 deletions(-) diff --git a/CHANGELOGS.md b/CHANGELOGS.md index d1aa09c..4dcc162 100644 --- a/CHANGELOGS.md +++ b/CHANGELOGS.md @@ -5,6 +5,18 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [0.12.0] - 2022-05-16 + +### Changed + +- Kotlin 1.6.21 +- Android Gradle Plugin 7.2.0 +- Gradle Wrapper 7.4.2 + +### Fixed + +- Gradle configuration cache compatibility [#66](https://github.com/yshrsmz/BuildKonfig/issues/66) + ## [0.11.0] - 2021-10-19 ### Added diff --git a/README.md b/README.md index cfa9e70..49da8f6 100644 --- a/README.md +++ b/README.md @@ -54,7 +54,7 @@ buildScript { mavenCentral() } dependencies { - classpath 'org.jetbrains.kotlin:kotlin-gradle-plugin:1.5.30' + classpath 'org.jetbrains.kotlin:kotlin-gradle-plugin:1.6.21' classpath 'com.codingfeline.buildkonfig:buildkonfig-gradle-plugin:latest_version' } } @@ -92,7 +92,7 @@ buildscript { mavenCentral() } dependencies { - classpath("org.jetbrains.kotlin:kotlin-gradle-plugin:1.5.30") + classpath("org.jetbrains.kotlin:kotlin-gradle-plugin:1.6.21") classpath("com.codingfeline.buildkonfig:buildkonfig-gradle-plugin:latest_version") } } @@ -153,7 +153,7 @@ buildScript { mavenCentral() } dependencies { - classpath 'org.jetbrains.kotlin:kotlin-gradle-plugin:1.5.30' + classpath 'org.jetbrains.kotlin:kotlin-gradle-plugin:1.6.21' classpath 'com.codingfeline.buildkonfig:buildkonfig-gradle-plugin:latest_version' } } @@ -203,7 +203,7 @@ buildscript { mavenCentral() } dependencies { - classpath("org.jetbrains.kotlin:kotlin-gradle-plugin:1.5.30") + classpath("org.jetbrains.kotlin:kotlin-gradle-plugin:1.6.21") classpath("com.codingfeline.buildkonfig:buildkonfig-gradle-plugin:latest_version") } } diff --git a/gradle.properties b/gradle.properties index 46508fa..db45500 100644 --- a/gradle.properties +++ b/gradle.properties @@ -1,7 +1,7 @@ kotlin.code.style=official # GROUP=com.codingfeline.buildkonfig -VERSION_NAME=0.12.0-SNAPSHOT +VERSION_NAME=0.12.0 # POM_URL=https://github.com/yshrsmz/BuildKonfig/ POM_SCM_URL=https://github.com/yshrsmz/BuildKonfig/