Skip to content

Commit 4b32d99

Browse files
Merge pull request #86 from BranchMetrics/main
[RELEASE] 02-20-2023 release
2 parents 93f17e7 + dd73651 commit 4b32d99

File tree

7 files changed

+14
-8
lines changed

7 files changed

+14
-8
lines changed

.github/workflows/deploy-prod.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,10 @@ jobs:
104104
- name: Sync S3 CDN
105105
id: s3synccdn
106106
if: steps.s3syncbuilds.outcome == 'success'
107-
run: aws s3 cp ./dist/branch-connected.min.js s3://branch-cdn/branch-connected.min.js
107+
run: |
108+
aws s3 cp ./dist/branch-connected.min.js s3://branch-cdn/branch-connected.min.js
109+
aws s3 cp ./dist/branch-connected.js s3://branch-cdn/branch-connected.js
110+
aws s3 cp ./dist/connected-example.html s3://branch-cdn/connected-example.html
108111
109112
- name: Remove npmrc
110113
run: rm -f ~/.npmrc

.github/workflows/gate-keep.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ jobs:
3737
run: npm install
3838

3939
- name: Run tests
40-
run: echo "Running tests"
40+
run: npm run test
4141

4242
test-lint:
4343
name: Lint

CHANGELOG.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,7 @@ The Branch Connected SDK adheres to [Semantic Versioning](http://semver.org/).
55
## [VERSION] - unreleased
66

77
## [1.2.0] - 2023-02-17
8-
– Fix GHA CI/CD
8+
– Fix GHA CI/CD
9+
10+
## [1.2.1] - 2023-02-20
11+
– Fix example page src

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "branch-connected-sdk",
3-
"version": "1.2.0",
3+
"version": "1.2.1",
44
"description": "Branch Metrics Deep Linking Connected SDK",
55
"main": "dist/branch-connected.min.js",
66
"files": [
@@ -24,7 +24,7 @@
2424
"url": "https://github.com/BranchMetrics/connected-sdk/issues",
2525
"email": "[email protected]"
2626
},
27-
"homepage": "https://help.branch.io/developers-hub/docs/web-sdk-overview",
27+
"homepage": "https://help.branch.io/developers-hub/docs/connected-sdk",
2828
"devDependencies": {
2929
"falafel": "1.0.1",
3030
"grunt": "^0.4.5",

src/0_config.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,6 @@ goog.provide('config');
66
config.app_service_endpoint = 'https://app.link';
77
config.link_service_endpoint = 'https://bnc.lt';
88
config.api_endpoint = 'https://api2.branch.io';
9-
config.version = '1.2.0';
9+
config.version = '1.2.1';
1010
config.sdk = 'connected';
1111

src/web/example.template.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ <h4>Sharing and Tracking</h4>
7575
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
7676
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.2.0/js/bootstrap.min.js"></script>
7777
<script type="text/javascript">
78-
(function(b,r,a,n,c,h,_,s,d,k){if(!b[n]||!b[n]._q){for(;s<_.length;)c(h,_[s++]);d=r.createElement(a);d.async=1;d.src="https://branch-builds.s3.us-west-1.amazonaws.com/connected-sdk/branch-connected.js";k=r.getElementsByTagName(a)[0];k.parentNode.insertBefore(d,k);b[n]=h}})(window,document,"script","branch",function(b,r){b[r]=function(){b._q.push([r,arguments])}},{_q:[],_v:1},"data first init link logout setIdentity track logEvent disableTracking".split(" "), 0);
78+
(function(b,r,a,n,c,h,_,s,d,k){if(!b[n]||!b[n]._q){for(;s<_.length;)c(h,_[s++]);d=r.createElement(a);d.async=1;d.src="https://cdn.branch.io/branch-connected.min.js";k=r.getElementsByTagName(a)[0];k.parentNode.insertBefore(d,k);b[n]=h}})(window,document,"script","branch",function(b,r){b[r]=function(){b._q.push([r,arguments])}},{_q:[],_v:1},"data first init link logout setIdentity track logEvent disableTracking qrCode".split(" "), 0);
7979
// Take the Branch key from a meta tag
8080
var options = {
8181
advertising_ids: {

test/web-config.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,6 @@
66
config.app_service_endpoint = 'https://app.link';
77
config.link_service_endpoint = 'https://bnc.lt';
88
config.api_endpoint = 'https://api2.branch.io';
9-
config.version = '1.2.0';
9+
config.version = '1.2.1';
1010
config.sdk='connected';
1111

0 commit comments

Comments
 (0)