Skip to content

Commit 786d502

Browse files
committed
Bump version 0.7.35
1 parent 5b8adfe commit 786d502

File tree

7 files changed

+18
-9
lines changed

7 files changed

+18
-9
lines changed

Diff for: bower.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "ua-parser-js",
3-
"version": "0.7.34",
3+
"version": "0.7.35",
44
"authors": [
55
"Faisal Salman <[email protected]>"
66
],

Diff for: changelog.md

+9
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,15 @@
44

55
Version 1.0.x is basically the equivalent of version 0.7.x. See [#536](https://github.com/faisalman/ua-parser-js/issues/536) for the reason behind this confusion.
66

7+
## Version 0.7.35 / 1.0.35
8+
- Fix result from user-supplied user-agent being altered
9+
- Add new browser: Heytap, TikTok
10+
- Add new engine: LibWeb
11+
- Add new OS: SerenityOS
12+
- Improve browser detection: Yandex
13+
- Improve device detection: iPhone, Amazon Echo
14+
- Improve OS detection: iOS
15+
716
## Version 0.7.34 / 1.0.34
817
- Fix Sharp Mobile detected as Huawei Tablet
918
- Fix IE8 bug

Diff for: dist/ua-parser.min.js

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Diff for: dist/ua-parser.pack.js

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Diff for: package.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Package.describe({
22
name: 'faisalman:ua-parser-js',
3-
version: '0.7.34',
3+
version: '0.7.35',
44
summary: 'Lightweight JavaScript-based user-agent string parser',
55
git: 'https://github.com/faisalman/ua-parser-js.git',
66
documentation: 'readme.md'

Diff for: package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"title": "UAParser.js",
33
"name": "ua-parser-js",
4-
"version": "0.7.34",
4+
"version": "0.7.35",
55
"author": "Faisal Salman <[email protected]> (http://faisalman.com)",
66
"description": "Detect Browser, Engine, OS, CPU, and Device type/model from User-Agent data. Supports browser & node.js environment",
77
"keywords": [

Diff for: src/ua-parser.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/////////////////////////////////////////////////////////////////////////////////
2-
/* UAParser.js v0.7.34
2+
/* UAParser.js v0.7.35
33
Copyright © 2012-2021 Faisal Salman <[email protected]>
44
MIT License *//*
55
Detect Browser, Engine, OS, CPU, and Device type/model from User-Agent data.
@@ -17,7 +17,7 @@
1717
/////////////
1818

1919

20-
var LIBVERSION = '0.7.34',
20+
var LIBVERSION = '0.7.35',
2121
EMPTY = '',
2222
UNKNOWN = '?',
2323
FUNC_TYPE = 'function',

0 commit comments

Comments
 (0)