Skip to content

Commit d83a146

Browse files
committed
update to kotlin 1.8.10
1 parent cd8c38e commit d83a146

File tree

4 files changed

+13
-16
lines changed

4 files changed

+13
-16
lines changed

RELEASING.md

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -2,16 +2,15 @@ Publishing a new Main release to Maven
22
========
33

44
1. Change the version in `gradle.properties` to a non-SNAPSHOT version based on Major.Minor.Patch naming scheme
5-
2. Update `CHANGELOG.md`, adding the new release version and release notes
6-
4. `git commit -am "Prepare for release X.Y.Z."` (where X.Y.Z is the new version)
7-
5. `git tag -a X.Y.X -m "Version X.Y.Z"` (where X.Y.Z is the new version)
8-
6. Add your sonatype login information under gradle properties mavenCentralUsername and mavenCentralPassword in your local user gradle.properties file
9-
7. Make sure you have a gpg signing key configured (https://vanniktech.github.io/gradle-maven-publish-plugin/central/#secrets)
5+
2. `git commit -am "Prepare for release X.Y.Z."` (where X.Y.Z is the new version)
6+
3. `git tag -a X.Y.X -m "Version X.Y.Z"` (where X.Y.Z is the new version)
7+
4. Add your sonatype login information under gradle properties mavenCentralUsername and mavenCentralPassword in your local user gradle.properties file
8+
5. Make sure you have a gpg signing key configured (https://vanniktech.github.io/gradle-maven-publish-plugin/central/#secrets)
109
6. Run `./gradlew publish` to build the artifacts and publish them to maven
1110
7. Update the `gradle.properties` to the next SNAPSHOT version.
1211
8. `git commit -am "Prepare next development version."`
1312
9. `git push && git push --tags`
14-
10. Merge to master and create a new release through the Github web UI
13+
10. Merge to master and create a new release through the Github web UI with release notes
1514

1615
Publishing a release to an internal repository
1716
========
@@ -29,4 +28,4 @@ to see how to configure additional repositories.
2928
Maven Local Installation
3029
=======================
3130

32-
If testing changes locally, you can install to mavenLocal via `./gradlew publishToMavenLocal`
31+
If testing changes locally, you can install to mavenLocal via `./gradlew publishToMavenLocal`

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

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -48,10 +48,8 @@ abstract class BaseProcessor(val symbolProcessorEnvironment: SymbolProcessorEnvi
4848
final override fun process(resolver: Resolver): List<KSAnnotated> {
4949
val symbolProcessorEnvironment = requireNotNull(symbolProcessorEnvironment)
5050
environment = XProcessingEnv.create(
51-
symbolProcessorEnvironment.options,
51+
symbolProcessorEnvironment,
5252
resolver,
53-
symbolProcessorEnvironment.codeGenerator,
54-
symbolProcessorEnvironment.logger
5553
)
5654
process(null, environment, XRoundEnv.create(environment))
5755
return emptyList()

dependencies.gradle

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,20 @@
11
def versions = [
2-
kotlinVersion : '1.7.20',
2+
kotlinVersion : '1.8.10',
33
appCompatVersion : '1.4.1',
44
localBroadcastManagerVersion : '1.1.0',
55
roboelectricVersion : '4.9',
66
benchmarkVersion : '1.0.0',
7-
compileTestingVersion : '1.4.9',
8-
kspVersion : '1.7.20-1.0.8',
9-
xProcessorVersion : '2.5.0-beta01',
7+
compileTestingVersion : '1.5.0',
8+
kspVersion : '1.8.10-1.0.9',
9+
xProcessorVersion : '2.6.0-alpha01',
1010
mockkVersion : '1.12.3',
1111
ktlintGradlePluginVersion : '3.8.0',
1212
androidXTestingVersion : '1.4.0'
1313
]
1414

1515
ext.versions = versions
1616
ext.androidConfig = [
17-
agpVersion : '7.2.1',
17+
agpVersion : '7.4.0',
1818
compileSdkVersion : 32,
1919
minSdkVersion : 16,
2020
targetSdkVersion : 30

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.6-rc-3-all.zip
6+
distributionUrl=https\://services.gradle.org/distributions/gradle-7.6.1-all.zip

0 commit comments

Comments
 (0)