Compare commits

...
Author SHA1 Message Date
Martin Konicek 94420109a1 Update breaking-changes.md 2015-11-09 15:50:33 +00:00
Felix Oghină 4ba09895dc [releng] bump maven artifact version to 0.15.1 2015-11-06 17:05:51 -08:00
Andy StreetandFelix Oghină 40b74e49f2 Add Systrace support for API 18+ in OSS
Differential Revision: D2627757

fb-gh-sync-id: a01347800d8e9ffda8759cc17df04f7cd139b17c
2015-11-06 17:00:09 -08:00
Felix Oghină f7af7d267e [releng] bump versions to 0.15.0-rc 2015-11-06 12:13:44 -08:00
6 changed files with 15 additions and 7 deletions
+1 -1
View File
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = "React"
s.version = "0.15.0"
s.version = "0.15.0-rc"
s.summary = "Build high quality mobile apps using React."
s.description = <<-DESC
React Native apps are built using the React JS
+1 -1
View File
@@ -1,4 +1,4 @@
VERSION_NAME=0.12.0-SNAPSHOT
VERSION_NAME=0.15.1
GROUP=com.facebook.react
POM_NAME=ReactNative
@@ -9,8 +9,12 @@
package com.facebook.systrace;
import android.os.Build;
import android.os.Trace;
/**
* Systrace stub.
* Systrace stub that mostly does nothing but delegates to Trace for beginning/ending sections.
* The internal version of this file has not been opensourced yet.
*/
public class Systrace {
@@ -50,9 +54,15 @@ public class Systrace {
}
public static void beginSection(long tag, final String sectionName) {
if (Build.VERSION.SDK_INT >= 18) {
Trace.beginSection(sectionName);
}
}
public static void endSection(long tag) {
if (Build.VERSION.SDK_INT >= 18) {
Trace.endSection();
}
}
public static void beginAsyncSection(
-2
View File
@@ -2,8 +2,6 @@
## 0.15
None so far.
## 0.14
- D2533877: `react-native bundle` API changes:
@@ -74,5 +74,5 @@ android {
dependencies {
compile fileTree(dir: "libs", include: ["*.jar"])
compile "com.android.support:appcompat-v7:23.0.1"
compile "com.facebook.react:react-native:0.13.0"
compile "com.facebook.react:react-native:0.15.+"
}
+1 -1
View File
@@ -1,6 +1,6 @@
{
"name": "react-native",
"version": "0.12.0",
"version": "0.15.0-rc",
"description": "A framework for building native apps using React",
"license": "BSD-3-Clause",
"repository": {