Skip to content

Commit

Permalink
Merge pull request webrtcHacks#1153 from webrtcHacks/bumpVersion
Browse files Browse the repository at this point in the history
Bump version to 9.0.1
fippo authored Mar 28, 2024

Verified

This commit was signed with the committer’s verified signature.
snyk-bot Snyk bot
2 parents b2c0d15 + 00645a7 commit 548d85d
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "webrtc-adapter",
"version": "9.0.0",
"version": "9.0.1",
"description": "A shim to insulate apps from WebRTC spec changes and browser prefix differences",
"license": "BSD-3-Clause",
"main": "./dist/adapter_core.js",
@@ -34,7 +34,7 @@
"devDependencies": {
"@babel/core": "^7.21.0",
"@babel/preset-env": "^7.20.2",
"@puppeteer/browsers": "^1.4.1",
"@puppeteer/browsers": "^2.2.0",
"babel-preset-env": "^1.7.0",
"brfs": "^1.5.0",
"chai": "^3.5.0",
2 changes: 1 addition & 1 deletion release/adapter.js
Original file line number Diff line number Diff line change
@@ -2374,7 +2374,7 @@ function detectBrowser(window) {
if (chromium) {
return {
browser: 'chrome',
version: chromium.version
version: parseInt(chromium.version, 10)
};
}
}
2 changes: 1 addition & 1 deletion release/adapter_no_global.js
Original file line number Diff line number Diff line change
@@ -2374,7 +2374,7 @@ function detectBrowser(window) {
if (chromium) {
return {
browser: 'chrome',
version: chromium.version
version: parseInt(chromium.version, 10)
};
}
}

0 comments on commit 548d85d

Please sign in to comment.