Skip to content

Commit f82d713

Browse files
committed
Version 4.7.0
Publish via Sonatype Central.
1 parent 748e42a commit f82d713

File tree

3 files changed

+12
-9
lines changed

3 files changed

+12
-9
lines changed

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -187,7 +187,7 @@
187187
same "printed page" as the copyright notice for easier
188188
identification within third-party archives.
189189

190-
Copyright 2017-2024 Pranav Pandey
190+
Copyright 2017-2025 Pranav Pandey
191191

192192
Licensed under the Apache License, Version 2.0 (the "License");
193193
you may not use this file except in compliance with the License.

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ It can be installed by adding the following dependency to your `build.gradle` fi
5757
```groovy
5858
dependencies {
5959
// For AndroidX enabled projects.
60-
implementation 'com.pranavpandey.android:dynamic-utils:4.6.1'
60+
implementation 'com.pranavpandey.android:dynamic-utils:4.7.0'
6161
6262
// For legacy projects.
6363
implementation 'com.pranavpandey.android:dynamic-utils:1.3.0'
@@ -358,7 +358,7 @@ Pranav Pandey
358358

359359
## License
360360

361-
Copyright 2017-2024 Pranav Pandey
361+
Copyright 2017-2025 Pranav Pandey
362362

363363
Licensed under the Apache License, Version 2.0 (the "License");
364364
you may not use this file except in compliance with the License.

build.gradle

Lines changed: 9 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -67,8 +67,8 @@ ext {
6767
mavenDir = 'com/pranavpandey/android'
6868
mavenArtifactId = 'dynamic-utils'
6969
mavenInceptionYear = '2017'
70-
mavenVersion = '4.6.1'
71-
mavenVersionCode = 47
70+
mavenVersion = '4.7.0'
71+
mavenVersionCode = 48
7272

7373
developerId = 'pranavpandey'
7474
developerName = 'Pranav Pandey'
@@ -85,8 +85,8 @@ ext {
8585
ext["signing.password"] = ''
8686
ext["signing.secretKeyRingFile"] = ''
8787

88-
ossrhUsername = ''
89-
ossrhPassword = ''
88+
sonatypeUsername = ''
89+
sonatypePassword = ''
9090
sonatypeStagingProfileId = ''
9191
}
9292

@@ -102,9 +102,12 @@ if (publish.exists()) {
102102
nexusPublishing {
103103
repositories {
104104
sonatype {
105-
username = ossrhUsername
106-
password = ossrhPassword
105+
username = sonatypeUsername
106+
password = sonatypePassword
107107
stagingProfileId = sonatypeStagingProfileId
108+
nexusUrl.set(uri("https://ossrh-staging-api.central.sonatype.com/service/local/"))
109+
snapshotRepositoryUrl.set(
110+
uri("https://central.sonatype.com/repository/maven-snapshots/"))
108111
}
109112
}
110113
}

0 commit comments

Comments
 (0)