Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump 1.5.0 #105

Merged
merged 1 commit into from
Aug 11, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .idea/misc.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ buildscript {
mavenCentral()
}
dependencies {
classpath 'com.android.tools.build:gradle:7.2.1'
classpath 'com.android.tools.build:gradle:7.2.2'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
classpath "org.jetbrains.kotlin:kotlin-serialization:$kotlin_version"

Expand Down
6 changes: 3 additions & 3 deletions lib/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
minSdk 21
targetSdk 31
versionCode 5
versionName "1.4.0"
versionName "1.5.0"

testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
consumerProguardFiles "consumer-rules.pro"
Expand Down Expand Up @@ -49,21 +49,21 @@
dependencies {

testImplementation 'junit:junit:4.+'
testImplementation 'androidx.arch.core:core-testing:2.1.0'

Check warning on line 52 in lib/build.gradle

View workflow job for this annotation

GitHub Actions / AndroidLint

Obsolete Gradle Dependency: A newer version of androidx.arch.core:core-testing than 2.1.0 is available: 2.2.0
testImplementation 'org.jetbrains.kotlinx:kotlinx-coroutines-test:1.3.8'

Check warning on line 53 in lib/build.gradle

View workflow job for this annotation

GitHub Actions / AndroidLint

Obsolete Gradle Dependency: A newer version of org.jetbrains.kotlinx:kotlinx-coroutines-test than 1.3.8 is available: 1.6.4
androidTestImplementation 'androidx.test.ext:junit:1.1.3'

Check warning on line 54 in lib/build.gradle

View workflow job for this annotation

GitHub Actions / AndroidLint

Obsolete Gradle Dependency: A newer version of androidx.test.ext:junit than 1.1.3 is available: 1.1.5
androidTestImplementation 'androidx.test.espresso:espresso-core:3.4.0'

Check warning on line 55 in lib/build.gradle

View workflow job for this annotation

GitHub Actions / AndroidLint

Obsolete Gradle Dependency: A newer version of androidx.test.espresso:espresso-core than 3.4.0 is available: 3.5.1

coreLibraryDesugaring 'com.android.tools:desugar_jdk_libs:1.2.0'

Check warning on line 57 in lib/build.gradle

View workflow job for this annotation

GitHub Actions / AndroidLint

Obsolete Gradle Dependency: A newer version of com.android.tools:desugar_jdk_libs than 1.2.0 is available: 2.0.3

implementation 'androidx.core:core-ktx:1.8.0'

Check warning on line 59 in lib/build.gradle

View workflow job for this annotation

GitHub Actions / AndroidLint

Obsolete Gradle Dependency: A newer version of androidx.core:core-ktx than 1.8.0 is available: 1.10.1
implementation 'androidx.appcompat:appcompat:1.4.2'

Check warning on line 60 in lib/build.gradle

View workflow job for this annotation

GitHub Actions / AndroidLint

Obsolete Gradle Dependency: A newer version of androidx.appcompat:appcompat than 1.4.2 is available: 1.6.1
implementation 'com.google.android.material:material:1.6.1'

Check warning on line 61 in lib/build.gradle

View workflow job for this annotation

GitHub Actions / AndroidLint

Obsolete Gradle Dependency: A newer version of com.google.android.material:material than 1.6.1 is available: 1.9.0
implementation 'org.jetbrains.kotlinx:kotlinx-coroutines-core:1.6.1'
implementation 'org.jetbrains.kotlinx:kotlinx-coroutines-core:1.6.4'
implementation 'org.jetbrains.kotlinx:kotlinx-serialization-json:1.1.0'

Check warning on line 63 in lib/build.gradle

View workflow job for this annotation

GitHub Actions / AndroidLint

Obsolete Gradle Dependency: A newer version of org.jetbrains.kotlinx:kotlinx-serialization-json than 1.1.0 is available: 1.4.1

// SolanaKT
implementation 'com.github.metaplex-foundation:SolanaKT:2.1.0'
implementation 'com.github.metaplex-foundation:SolanaKT:2.1.1'

// Borsh
implementation ('com.github.metaplex-foundation:kborsh:0.1.0b1'){
Expand All @@ -74,7 +74,7 @@
implementation "com.squareup.moshi:moshi:1.13.0"
kapt 'com.squareup.moshi:moshi-kotlin-codegen:1.13.0'

implementation 'com.squareup:kotlinpoet:1.0.0'

Check warning on line 77 in lib/build.gradle

View workflow job for this annotation

GitHub Actions / AndroidLint

Obsolete Gradle Dependency: A newer version of com.squareup:kotlinpoet than 1.0.0 is available: 1.10.2
}

//region PUBLISHING
Expand Down
Loading