Skip to content

Commit

Permalink
Release 3.1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
valfirst committed Feb 8, 2025
1 parent d23e143 commit 7ea3e69
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 6 deletions.
8 changes: 7 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,12 @@
# Changelog

# [Unreleased - 3.1.1-SNAPSHOT]
# [3.1.1]
## Fixed
- (Fixes https://github.com/valfirst/browserup-proxy/issues/472) Fix hostname resolving (https://github.com/valfirst/browserup-proxy/pull/473)

## Changed
### Dependencies
- Bump Guice from `5.1.0` to `6.0.0` (https://github.com/valfirst/browserup-proxy/pull/474)

# [3.1.0]
## Added
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ To use BrowserUp Proxy in your tests or application, add the `browserup-proxy-co
<dependency>
<groupId>com.github.valfirst.browserup-proxy</groupId>
<artifactId>browserup-proxy-core</artifactId>
<version>3.1.0</version>
<version>3.1.1</version>
<scope>test</scope>
</dependency>
```
Expand Down Expand Up @@ -359,13 +359,13 @@ When you build the latest code from source, you'll have access to the latest sna
<dependency>
<groupId>com.github.valfirst.browserup-proxy</groupId>
<artifactId>browserup-proxy-core</artifactId>
<version>3.1.1-SNAPSHOT</version>
<version>3.1.1</version>
<scope>test</scope>
</dependency>
```

Or for gradle:

```gradle
testImplementation 'com.github.valfirst.browserup-proxy:browserup-proxy-core:3.1.1-SNAPSHOT'
testImplementation 'com.github.valfirst.browserup-proxy:browserup-proxy-core:3.1.1'
```
Original file line number Diff line number Diff line change
@@ -1 +1 @@
3.1.1-SNAPSHOT
3.1.1
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ subprojects {
apply plugin: 'maven-publish'

group = 'com.github.valfirst.browserup-proxy'
version = '3.1.1-SNAPSHOT'
version = '3.1.1'

sourceCompatibility=11

Expand Down

0 comments on commit 7ea3e69

Please sign in to comment.