Skip to content

Commit 53a974e

Browse files
authored
Prepare next development version (#468)
Signed-off-by: mramotar <mramotar@dropbox.com> Signed-off-by: mramotar <mramotar@dropbox.com>
1 parent 59a20f9 commit 53a974e

File tree

3 files changed

+21
-22
lines changed

3 files changed

+21
-22
lines changed

.github/workflows/.ci_test_and_publish.yml

Lines changed: 17 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ on:
1313
jobs:
1414
publish:
1515
runs-on: ubuntu-latest
16-
if: github.repository == 'MobileNativeFoundation/Store' && github.ref == 'refs/heads/main'
16+
if: github.repository == 'MobileNativeFoundation/Store' && (github.ref == 'refs/heads/main' || github.ref == 'refs/heads/store5')
1717

1818
steps:
1919
- name: Checkout
@@ -42,7 +42,6 @@ jobs:
4242
env:
4343
ORG_GRADLE_PROJECT_mavenCentralUsername: ${{ secrets.SONATYPE_USERNAME }}
4444
ORG_GRADLE_PROJECT_mavenCentralPassword: ${{ secrets.SONATYPE_PASSWORD }}
45-
4645
test:
4746
runs-on: ubuntu-latest
4847
timeout-minutes: 30
@@ -54,20 +53,20 @@ jobs:
5453
- 29
5554

5655
steps:
57-
- name: Checkout
58-
uses: actions/checkout@v2
56+
- name: Checkout
57+
uses: actions/checkout@v2
5958

60-
- name: Set up our JDK environment
61-
uses: actions/setup-java@v2
62-
with:
63-
distribution: zulu
64-
java-version: 11
65-
- name: Run tests
66-
uses: reactivecircus/android-emulator-runner@v2
67-
with:
68-
api-level: 29
69-
script: ./gradlew check --rerun-tasks --stacktrace
70-
env:
71-
API_LEVEL: ${{ matrix.api-level }}
72-
- name: Upload code coverage
73-
run: bash <(curl -s https://codecov.io/bash)
59+
- name: Set up our JDK environment
60+
uses: actions/setup-java@v2
61+
with:
62+
distribution: zulu
63+
java-version: 11
64+
- name: Run tests
65+
uses: reactivecircus/android-emulator-runner@v2
66+
with:
67+
api-level: 29
68+
script: ./gradlew check --rerun-tasks --stacktrace
69+
env:
70+
API_LEVEL: ${{ matrix.api-level }}
71+
- name: Upload code coverage
72+
run: bash <(curl -s https://codecov.io/bash)

buildsystem/dependencies.gradle

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ ext.versions = [
1717
mavenPublishPlugin : "0.22.0",
1818

1919
cache : '3.1.1',
20-
store : '4.0.5',
20+
store : '4.0.7',
2121

2222
// UI libs.
2323
picasso : '2.5.2',
@@ -52,8 +52,8 @@ ext.versions = [
5252
]
5353

5454
ext.libraries = [
55-
store : "com.dropbox.mobile.store:store4:$versions.store",
56-
filesystem : "com.dropbox.mobile.store:filesystem4:$versions.store",
55+
store : "org.mobilenativefoundation.store:store4:$versions.store",
56+
filesystem : "org.mobilenativefoundation.store:filesystem4:$versions.store",
5757
// depend on cache via jar to avoid building java code
5858
cache : "com.nytimes.android:cache3:$versions.cache",
5959
// UI libs.

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ org.gradle.jvmargs=-XX:MaxMetaspaceSize=2G
88

99
# POM file
1010
GROUP = org.mobilenativefoundation.store
11-
VERSION_NAME = 4.0.7
11+
VERSION_NAME = 4.0.8-SNAPSHOT
1212
POM_PACKAGING = pom
1313
POM_DESCRIPTION = Store4 is built with Kotlin Coroutines
1414

0 commit comments

Comments
 (0)