-
Notifications
You must be signed in to change notification settings - Fork 111
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
v0.24 #147
Comments
I added it in pr #146 |
No annotations or other such mechanisms for marking APIs in scala? If not that, then just Scaladocs? |
The experimental APIs(methods) of RxJava Observable will be extension methods in RxScala, and needs to be imported explicitly. E.g., import rx.lang.scala.ExperimentalAPIs._
Observable.just(1, 2, 3, 4, 5, 6, 7).
doOnNext(v => println(s"onNext: $v")).
takeUntil((x: Int) => x == 3).
foreach(println) However, for the experimental classes, such as |
I am a novice with Scala so my opinion isn't worth anything here. Whatever you and the others decide.
|
Just wrote a release note for 0.24.0 #148 |
@benjchristensen I just released 0.24.0. However, Bintray cannot sync the files to Sonatype automatically. Could you help sync them? I found an API of Bintray here: https://bintray.com/docs/api/#_sync_version_artifacts_to_maven_central
The |
Bintray should do all of that automatically. It saves it. For example, on the Gradle builds we don't need those credentials. |
Manually synced. |
Thanks @benjchristensen But I think Bintray doesn't do it automatically. There is a log in this plugin: |
RxJava is published via Travis and no longer uses CloudBees. I noticed I have to manually sync bintray on that as well so we need to figure out what is missing. @quidryan What is missing in our publishing process to trigger the Bintray->MavenCentral sync? |
The sonatype credentials weren't being provided to Gradle in the shell script. @rspieldenner is working on adding them. |
@benjchristensen could you add |
I'll do that today On Wed, Mar 18, 2015 at 10:14 AM, Shixiong Zhu [email protected]
|
The names of the environment variables should be |
Closing. I updated the publish script. Will test it when publishing the next release. |
Is 0.24 ready to release? We need the new
takeUntil
overload.cc @bpitman
The text was updated successfully, but these errors were encountered: