Congratulations on new version!

My latest build automatically downloaded a new version of CBL. (I think it’s 1.3)
Why is this a secret?
Can you please point to a url describing what’s new?
Thanks
nat

Information on the developer preview of 1.3 has been shared here:

The official release is coming shortly - more information when that arrives.

I don’t see why my Android Studio [all of a sudden] pulled in 1.3 - if its only a preview.
Sure it’s not official final and released?
Thanks
nat

Hi @natgross, Can you check your maven dependency configuration for couchbase lite in build.gradle ?

@hideki, here it is:
dependencies {
compile fileTree(dir: ‘libs’, include: [’*.jar’])
testCompile 'junit:junit:4.12’
compile 'com.android.support:appcompat-v7:23.0.0’
compile 'com.couchbase.lite:couchbase-lite-android:+'
compile ‘com.couchbase.lite:couchbase-lite-java-forestdb:+’
}

As you use + in dependency, I believe gradle automatically update the library.
If you would like to use old version, please specify exact version such as 1.2.1.
If you also would like to delete cache, please remove ~/.gradle.
Hope this helps you!

  1. Using + as you know, means the latest version in the stable channel.
  2. I didn’t change that dependency since I started with CBL (about 4 weeks?) and until today it pulled in 1.2.1. Why the sudden change?
    If it’s not stable yet, I guess I need to specify 1.2.1. But the above question remains.
    nat

1.3.0 on JCenter and Maven Central is stable version. However, It is not officially announced yet.

Yes! (Like I assumed in my original post on this thread.)
Thank you much;
nat