Skip to content

Commit

Permalink
release: 0.11.0
Browse files Browse the repository at this point in the history
  • Loading branch information
HazAT committed Jun 28, 2018
1 parent 113dd8f commit 8abaa50
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "sentry-cordova",
"version": "0.10.2",
"version": "0.11.0",
"main": "dist/js/sentry-cordova.js",
"types": "dist/js/sentry-cordova.d.ts",
"license": "MIT",
Expand Down
2 changes: 1 addition & 1 deletion plugin.xml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>

<plugin xmlns="http://apache.org/cordova/ns/plugins/1.0" id="sentry-cordova" version="0.10.2">
<plugin xmlns="http://apache.org/cordova/ns/plugins/1.0" id="sentry-cordova" version="0.11.0">
<name>Sentry</name>
<author>Sentry</author>
<description>Official Sentry SDK for Cordova</description>
Expand Down
2 changes: 1 addition & 1 deletion src/ios/SentryCordova.m
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
#import <Cordova/CDVAvailability.h>
@import Sentry;

NSString *const SentryCordovaVersionString = @"0.10.2";
NSString *const SentryCordovaVersionString = @"0.11.0";
NSString *const SentryCordovaSdkName = @"sentry-cordova";

@implementation SentryCordova
Expand Down
2 changes: 1 addition & 1 deletion src/js/client.ts
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ export class CordovaClient extends BaseClient<CordovaBackend, CordovaOptions> {
public getSdkInfo(): SdkInfo {
return {
name: 'sentry-cordova',
version: '0.10.2',
version: '0.11.0',
};
}
}

0 comments on commit 8abaa50

Please sign in to comment.