Skip to content

Commit

Permalink
release: 0.9.1
Browse files Browse the repository at this point in the history
  • Loading branch information
HazAT committed Apr 17, 2018
1 parent 06dfe57 commit 590490d
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.9.0",
"version": "0.9.1",
"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.9.0">
<plugin xmlns="http://apache.org/cordova/ns/plugins/1.0" id="sentry-cordova" version="0.9.1">
<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.9.0";
NSString *const SentryCordovaVersionString = @"0.9.1";
NSString *const SentryCordovaSdkName = @"sentry-cordova";

@implementation SentryCordova
Expand Down
2 changes: 1 addition & 1 deletion src/js/frontend.ts
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ export class CordovaFrontend extends FrontendBase<
protected getSdkInfo(): SdkInfo {
return {
name: 'sentry-cordova',
version: '0.9.0',
version: '0.9.1',
};
}

Expand Down

0 comments on commit 590490d

Please sign in to comment.