Skip to content

Commit

Permalink
update: Release 3.1.7
Browse files Browse the repository at this point in the history
  • Loading branch information
fanyong920 committed Feb 5, 2025
1 parent 5d792c2 commit 4bf161f
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ Jvppeteer 通过 [DevTools](https://chromedevtools.github.io/devtools-protocol/)
<dependency>
<groupId>io.github.fanyong920</groupId>
<artifactId>jvppeteer</artifactId>
<version>3.1.6</version>
<version>3.1.7</version>
</dependency>
```

Expand All @@ -46,7 +46,7 @@ mavenCentral()
然后,您可以将最新版本添加到您的构建中。

```xml
compile "io.github.fanyong920:jvppeteer:3.1.6"
compile "io.github.fanyong920:jvppeteer:3.1.7"
```

#### Logging
Expand All @@ -73,7 +73,7 @@ compile "io.github.fanyong920:jvppeteer:3.1.6"

下表提供了 Jvppeteer 版本与绑定的浏览器版本之间的映射。如果没有列出完全匹配的 Jvppeteer 版本,则支持的浏览器版本是紧接在前的版本:

| 3.0.0--3.1.6 | [Chrome for Testing](https://googlechromelabs.github.io/chrome-for-testing/#stable) 131.0.6778.87 & Firefox stable_133.0 |
| 3.0.0--3.1.7 | [Chrome for Testing](https://googlechromelabs.github.io/chrome-for-testing/#stable) 131.0.6778.87 & Firefox stable_133.0 |
|:------------:| :----------------------------------------------------------: |
| 2.2.0--2.2.5 | [Chrome for Testing](https://googlechromelabs.github.io/chrome-for-testing/#stable) 130.0.6723.58 |
| 2.1.2 | [Chrome for Testing](https://googlechromelabs.github.io/chrome-for-testing/#stable) 128.0.6613.137 |
Expand Down
2 changes: 1 addition & 1 deletion example/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<junit.version>4.13.1</junit.version>
<jvppeteer.version>3.1.6</jvppeteer.version>
<jvppeteer.version>3.1.7</jvppeteer.version>
<slf4j.version>2.0.16</slf4j.version>
<maven.compiler.plugin.version>3.7.0</maven.compiler.plugin.version>
</properties>
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<groupId>io.github.fanyong920</groupId>
<artifactId>jvppeteer</artifactId>
<packaging>jar</packaging>
<version>3.1.6</version>
<version>3.1.7</version>
<name>jvppeteer</name>
<description>java version of puppeteer</description>
<url>https://github.com/fanyong920/jvppeteer</url>
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/com/ruiyun/jvppeteer/common/Constant.java
Original file line number Diff line number Diff line change
Expand Up @@ -246,7 +246,7 @@ public interface Constant {
// add("disabled-by-default-v8.cpu_profiler.hires");
}
};
String JVPPETEER_VERSION = "3.1.6";
String JVPPETEER_VERSION = "3.1.7";

String UTILITY_WORLD_NAME = "__puppeteer_utility_world__" + JVPPETEER_VERSION;

Expand Down

0 comments on commit 4bf161f

Please sign in to comment.