Skip to content

Commit 60e6f90

Browse files
committed
Release 0.3.0
1 parent 376922c commit 60e6f90

File tree

3 files changed

+20
-14
lines changed

3 files changed

+20
-14
lines changed

README.md

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -34,8 +34,8 @@ as the AOSP Android Contacts app and Google Contacts app, this library is for yo
3434
## Quick links
3535

3636
- 📜 [Documentation][github-pages]
37-
- 🚉 [Current Release - 0.2.4](https://github.com/vestrel00/contacts-android/releases/tag/0.2.4)
38-
- 🚂 [Upcoming Release - 0.3.0](https://github.com/vestrel00/contacts-android/discussions/218)
37+
- 🚉 [Current Release - 0.3.0](https://github.com/vestrel00/contacts-android/releases/tag/0.3.0)
38+
- 🚂 [Upcoming Release - 0.3.1](https://github.com/vestrel00/contacts-android/discussions/288)
3939
- ℹ️ [Project Status][project-status]
4040
- 🗺 [Project Roadmap][project-roadmap]
4141
- 💌 [Why use this library?][why-use-this]
@@ -133,18 +133,18 @@ To install individual modules,
133133

134134
```groovy
135135
dependencies {
136-
implementation 'com.github.vestrel00.contacts-android:core:0.2.4'
136+
implementation 'com.github.vestrel00.contacts-android:core:0.3.0'
137137
138-
implementation 'com.github.vestrel00.contacts-android:async:0.2.4'
139-
implementation 'com.github.vestrel00.contacts-android:customdata-gender:0.2.4'
140-
implementation 'com.github.vestrel00.contacts-android:customdata-googlecontacts:0.2.4'
141-
implementation 'com.github.vestrel00.contacts-android:customdata-handlename:0.2.4'
142-
implementation 'com.github.vestrel00.contacts-android:customdata-pokemon:0.2.4'
143-
implementation 'com.github.vestrel00.contacts-android:customdata-rpg:0.2.4'
144-
implementation 'com.github.vestrel00.contacts-android:debug:0.2.4'
145-
implementation 'com.github.vestrel00.contacts-android:permissions:0.2.4'
146-
implementation 'com.github.vestrel00.contacts-android:test:0.2.4'
147-
implementation 'com.github.vestrel00.contacts-android:ui:0.2.4'
138+
implementation 'com.github.vestrel00.contacts-android:async:0.3.0'
139+
implementation 'com.github.vestrel00.contacts-android:customdata-gender:0.3.0'
140+
implementation 'com.github.vestrel00.contacts-android:customdata-googlecontacts:0.3.0'
141+
implementation 'com.github.vestrel00.contacts-android:customdata-handlename:0.3.0'
142+
implementation 'com.github.vestrel00.contacts-android:customdata-pokemon:0.3.0'
143+
implementation 'com.github.vestrel00.contacts-android:customdata-rpg:0.3.0'
144+
implementation 'com.github.vestrel00.contacts-android:debug:0.3.0'
145+
implementation 'com.github.vestrel00.contacts-android:permissions:0.3.0'
146+
implementation 'com.github.vestrel00.contacts-android:test:0.3.0'
147+
implementation 'com.github.vestrel00.contacts-android:ui:0.3.0'
148148
// Notice that when importing specific modules/subprojects, the first ":" comes after "contacts-android".
149149
}
150150
```
@@ -155,7 +155,7 @@ To install all modules in a single line,
155155

156156
```groovy
157157
dependencies {
158-
implementation 'com.github.vestrel00:contacts-android:0.2.4'
158+
implementation 'com.github.vestrel00:contacts-android:0.3.0'
159159
// Notice that when importing all modules, the first ":" comes after "vestrel00".
160160
}
161161
```

sample/build.gradle

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,10 @@ android {
2828
}
2929

3030
dependencies {
31+
// When testing if the current main branch is ready to be tagged and released in Jitpack,
32+
// uncomment this next line and comment out all "implementation project" lines
33+
// implementation 'com.github.vestrel00:contacts-android:main-SNAPSHOT'
34+
3135
implementation project(':async')
3236
implementation project(':core')
3337
implementation project(':customdata-gender')

settings.gradle

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,8 @@ dependencyResolutionManagement {
1111
repositories {
1212
google()
1313
mavenCentral()
14+
// Only required when using published binaries from Jitpack in the sample app..
15+
maven { url "https://jitpack.io" }
1416
}
1517
}
1618

0 commit comments

Comments
 (0)