Skip to content

Commit a9808f8

Browse files
committed
update
1 parent 2e4f238 commit a9808f8

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717

1818
**Usage**
1919
```sh
20-
$ go get github.com/3JoB/ulib@v1.37.0
20+
$ go get github.com/3JoB/ulib@v1.38.0
2121
```
2222

2323
# License

net/ua/ua.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ const (
1010
Chrome string = "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/110.0.0.0 Safari/537.36"
1111
Edge string = "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/110.0.0.0 Safari/537.36 Edg/110.0.1587.57"
1212
AndroidChrome string = "Mozilla/5.0 (Linux; Android 11; Jelly2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/110.0.0.0 Mobile Safari/537.36"
13-
ULIBDefault string = "Mozilla/5.0 (compatible; ulib/1.36.2; +https://github.com/3JoB/ulib/)"
13+
ULIBDefault string = "Mozilla/5.0 (compatible; ulib/1.38.0; +https://github.com/3JoB/ulib/)"
1414
Nex string = "; "
1515
)
1616

@@ -41,7 +41,7 @@ func GenerateUA(c Config) string {
4141
builder.WriteString(h.OS)
4242
builder.WriteString(Nex)
4343
if !c.DisableULIB {
44-
builder.WriteString("ulib/1.36.2")
44+
builder.WriteString("ulib/1.38.0")
4545
builder.WriteString(Nex)
4646
}
4747
if !c.DisableSysInfo {

ulib.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@ package ulib
22

33
const (
44
// ULIB Version (int64)
5-
Version int64 = 13700
5+
Version int64 = 13800
66

77
// ULIB Version (String)
8-
VersionLong string = "v1.37.0"
8+
VersionLong string = "v1.38.0"
99
)

0 commit comments

Comments
 (0)