Skip to content

Commit d8b5edb

Browse files
authored
Prepare for release 2.0.2 (#172)
1 parent 15ee1e3 commit d8b5edb

File tree

9 files changed

+18
-11
lines changed

9 files changed

+18
-11
lines changed

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
# 2.0.2
2+
3+
Bump XProcessing, KSP, and Kotlin versions to latest.
4+
5+
There was a breaking change in the room compiler processing library, this version is compatible with Room 2.6.0-alpha01 and will fail if earlier versions are used.
6+
This dependency must be the same for all other annotation processors that also use this library, such as Epoxy.
7+
18
# 2.0.1
29

310
Bump XProcessing, KSP, and Kotlin versions to latest.

blessedDeps.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,8 @@ rootProject.ext {
2121
MOCKITO_VERSION = '3.11.2'
2222
ROBOLECTRIC_VERSION = '4.6.1'
2323
TESTING_COMPILE_VERSION = '0.19'
24-
KOTLIN_TESTING_COMPILE_VERSION = '1.4.9'
25-
XPROCESSING_VERSION = "2.5.0-alpha02"
24+
KOTLIN_TESTING_COMPILE_VERSION = '1.5.0'
25+
XPROCESSING_VERSION = "2.6.0-alpha01"
2626

2727
deps = [
2828
// Keep these alphabetized

build.gradle

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
buildscript {
22
ext {
3-
ANDROID_PLUGIN_VERSION = '7.2.1'
3+
ANDROID_PLUGIN_VERSION = '7.4.0'
44
BUTTERKNIFE_VERSION = '10.2.3'
5-
KOTLIN_VERSION = '1.7.0'
5+
KOTLIN_VERSION = '1.8.10'
66
// Run "./gradlew dependencyUpdates" to check for updates
77
VERSIONS_VERSION = '0.42.0'
8-
KSP_VERSION = '1.7.0-1.0.6'
8+
KSP_VERSION = '1.8.10-1.0.9'
99
}
1010

1111
repositories {

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
VERSION_NAME=2.1.0-SNAPSHOT
1+
VERSION_NAME=2.0.2
22
GROUP=com.airbnb.android
33
POM_DESCRIPTION=Paris is a system for creating and applying styles to views in Android.
44
POM_URL=https://github.com/airbnb/paris

gradle/wrapper/gradle-wrapper.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@ distributionBase=GRADLE_USER_HOME
33
distributionPath=wrapper/dists
44
zipStoreBase=GRADLE_USER_HOME
55
zipStorePath=wrapper/dists
6-
distributionUrl=https\://services.gradle.org/distributions/gradle-7.5-rc-4-all.zip
6+
distributionUrl=https\://services.gradle.org/distributions/gradle-7.6.1-all.zip

paris-processor/src/main/java/com/airbnb/paris/processor/BaseProcessor.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ abstract class BaseProcessor(var kspEnvironment: SymbolProcessorEnvironment? = n
6666

6767
final override fun process(resolver: Resolver): List<KSAnnotated> {
6868
val kspEnvironment = requireNotNull(kspEnvironment)
69-
environment = XProcessingEnv.create(kspEnvironment.options, resolver, kspEnvironment.codeGenerator, kspEnvironment.logger)
69+
environment = XProcessingEnv.create(kspEnvironment, resolver)
7070
process(environment, XRoundEnv.create(environment))
7171
return emptyList()
7272
}

paris-test/src/test/resources/style_extension_generation/output/MyViewStyleExtensions.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
@file:Suppress(
22
"DEPRECATION",
3-
"Detekt.MaxLineLength"
3+
"Detekt.MaxLineLength",
44
)
55

66
package com.airbnb.paris.extensions

paris-test/src/test/resources/style_extension_generation_java/output/MyViewStyleExtensions.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
@file:Suppress(
22
"DEPRECATION",
3-
"Detekt.MaxLineLength"
3+
"Detekt.MaxLineLength",
44
)
55

66
package com.airbnb.paris.extensions

paris-test/src/test/resources/style_extension_generation_jvm_static/output/MyViewStyleExtensions.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
@file:Suppress(
22
"DEPRECATION",
3-
"Detekt.MaxLineLength"
3+
"Detekt.MaxLineLength",
44
)
55

66
package com.airbnb.paris.extensions

0 commit comments

Comments
 (0)