Skip to content

Commit

Permalink
bump-version
Browse files Browse the repository at this point in the history
  • Loading branch information
kochis committed Jul 25, 2023
1 parent 3d38293 commit 26af1f1
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 10 deletions.
14 changes: 7 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ Radar.initialize('prj_test_pk_...', { /* options */ });
Add the following script in your `html` file
```html
<script src="https://js.radar.com/v4.0.1-beta.1/radar.min.js"></script>
<script src="https://js.radar.com/v4.0.1/radar.min.js"></script>
```

Then initialize the Radar SDK
Expand All @@ -74,8 +74,8 @@ To create a map, first initialize the Radar SDK with your publishable key. Then
```html
<html>
<head>
<link href="https://js.radar.com/v4.0.1-beta.1/radar.css" rel="stylesheet">
<script src="https://js.radar.com/v4.0.1-beta.1/radar.min.js"></script>
<link href="https://js.radar.com/v4.0.1/radar.css" rel="stylesheet">
<script src="https://js.radar.com/v4.0.1/radar.min.js"></script>
</head>

<body>
Expand All @@ -99,8 +99,8 @@ To create an autocomplete input, first initialize the Radar SDK with your publis
```html
<html>
<head>
<link href="https://js.radar.com/v4.0.1-beta.1/radar.css" rel="stylesheet">
<script src="https://js.radar.com/v4.0.1-beta.1/radar.min.js"></script>
<link href="https://js.radar.com/v4.0.1/radar.css" rel="stylesheet">
<script src="https://js.radar.com/v4.0.1/radar.min.js"></script>
</head>

<body>
Expand Down Expand Up @@ -131,8 +131,8 @@ To power [geofencing](https://radar.com/documentation/geofencing/overview) exper
```html
<html>
<head>
<link href="https://js.radar.com/v4.0.1-beta.1/radar.css" rel="stylesheet">
<script src="https://js.radar.com/v4.0.1-beta.1/radar.min.js"></script>
<link href="https://js.radar.com/v4.0.1/radar.css" rel="stylesheet">
<script src="https://js.radar.com/v4.0.1/radar.min.js"></script>
</head>

<body>
Expand Down
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "radar-sdk-js",
"version": "4.0.1-beta.1",
"version": "4.0.1",
"description": "",
"type": "module",
"module": "dist/radar.js",
Expand Down
2 changes: 1 addition & 1 deletion src/version.ts
Original file line number Diff line number Diff line change
@@ -1 +1 @@
export default '4.0.1-beta.1';
export default '4.0.1';

0 comments on commit 26af1f1

Please sign in to comment.