Skip to content

Commit

Permalink
update: version 改成 3.1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
fanyong920 committed Dec 20, 2024
1 parent 444589d commit 120d4a1
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
8 changes: 4 additions & 4 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.0<version>
<version>3.1.1<version>
</dependency>
```

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

```xml
compile "io.github.fanyong920:jvppeteer:3.1.0"
compile "io.github.fanyong920:jvppeteer:3.1.1"
```

#### Logging
Expand Down Expand Up @@ -114,8 +114,8 @@ Jvpeteer 提供 Chrome、Chromium、ChromeDriver、Chrome Headless Shell 四种

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

| 3.0.0 | [Chrome for Testing](https://googlechromelabs.github.io/chrome-for-testing/#stable) 131.0.6778.87 & Firefox stable_133.0 |
| :----------: | :----------------------------------------------------------: |
| 3.0.0--3.1.1 | [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 |
| 2.1.1 | [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.0</jvppeteer.version>
<jvppeteer.version>3.1.1</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.0</version>
<version>3.1.1</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.0";
String JVPPETEER_VERSION = "3.1.1";

String UTILITY_WORLD_NAME = "__puppeteer_utility_world__" + JVPPETEER_VERSION;

Expand Down

0 comments on commit 120d4a1

Please sign in to comment.