Skip to content

Commit

Permalink
Merge pull request #38 from MindscapeHQ/md/release-1-0
Browse files Browse the repository at this point in the history
Release version 1.0.0 of the SDK
  • Loading branch information
mduncan26 authored Feb 11, 2021
2 parents abc47ec + e4250cc commit e61e02d
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 9 deletions.
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -165,8 +165,8 @@ See also:<br/>
import RaygunClient, {RaygunClientOptions, LogLevel} from "raygun4reactnative"

const options: RaygunClientOptions = {
apiKey: "This_Is_My_Key",
version: "0.1.2-beta",
apiKey: "INSERT_YOUR_API_KEY_HERE",
version: "0.1.2",
enableCrashReporting: true,
disableNativeCrashReporting: false,
enableRealUserMonitoring: true,
Expand Down Expand Up @@ -247,11 +247,11 @@ See also:<br/>
import RaygunClient, {User} from "raygun4reactnative"

const user: User = {
identifier: 'identifier',
identifier: '[email protected]',
isAnonymous: false,
email: 'user_by_object@email.com',
firstName: 'first name',
fullName: 'full name',
email: 'ronald@raygun.com',
firstName: 'Ronald',
fullName: 'Ronald Raygun',
uuid: 'uuid'
}

Expand Down
4 changes: 2 additions & 2 deletions demo/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "raygun4reactnativedemo",
"version": "1.0.0-beta",
"version": "1.0.0",
"private": true,
"scripts": {
"android": "react-native run-android",
Expand All @@ -14,7 +14,7 @@
"@react-native-community/checkbox": "^0.5.7",
"@react-navigation/bottom-tabs": "^5.11.7",
"@react-navigation/native": "^5.9.2",
"raygun4reactnative": "^1.0.0-beta",
"raygun4reactnative": "^1.0.0",
"react": "16.13.1",
"react-native": "0.63.0",
"react-native-safe-area-context": "^3.1.9",
Expand Down
2 changes: 1 addition & 1 deletion sdk/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "raygun4reactnative",
"title": "Raygun4reactnative",
"version": "1.0.0-beta",
"version": "1.0.0",
"description": "Raygun React Native SDK",
"main": "dist/index.js",
"typescript": {
Expand Down

0 comments on commit e61e02d

Please sign in to comment.