diff --git a/README.md b/README.md
index 118e9bba5..e3d6a058d 100644
--- a/README.md
+++ b/README.md
@@ -17,7 +17,7 @@ Please refer to [Key features](#key-features) for more information
#### Why the word "stubby"?
It is a stub HTTP server after all, hence the "stubby". Fun fact: in Australian slang "stubby" means _beer bottle_
-## User manual for stubby4j v7.3.2-SNAPSHOT
+## User manual for stubby4j v7.3.3-SNAPSHOT
### Table of contents
* [Key features](#key-features)
@@ -127,7 +127,7 @@ $ docker build --rm --no-cache -t stubby4j:latest .
or the following command to build from a specific tag, e.g.:
```shell script
-$ docker build --build-arg REVISION=v7.3.1 --rm --no-cache -t stubby4j:latest .
+$ docker build --build-arg REVISION=v7.3.2 --rm --no-cache -t stubby4j:latest .
```
Refer to https://hub.docker.com/r/azagniotov/stubby4j README `How to use this image` section regarding how to use the built image
@@ -188,12 +188,12 @@ The following are the stubby4j artifacts that are hosted on [Maven Central][mave
#### Gradle
```xml
-compile("io.github.azagniotov:stubby4j:7.3.1")
+compile("io.github.azagniotov:stubby4j:7.3.2")
```
or by adding a `classifier` to the JAR name like `no-dependencies` or `no-jetty`, i.e.:
```xml
-compile("io.github.azagniotov:stubby4j:7.3.1:no-jetty")
+compile("io.github.azagniotov:stubby4j:7.3.2:no-jetty")
```
#### Maven
@@ -201,7 +201,7 @@ compile("io.github.azagniotov:stubby4j:7.3.1:no-jetty")
io.github.azagniotov
stubby4j
- 7.3.1
+ 7.3.2
```
or by adding a `classifier` to the JAR name like `no-dependencies` or `no-jetty`, i.e.:
@@ -210,7 +210,7 @@ or by adding a `classifier` to the JAR name like `no-dependencies` or `no-jetty`
io.github.azagniotov
stubby4j
- 7.3.1
+ 7.3.2
no-dependencies
```
@@ -219,17 +219,17 @@ or by adding a `classifier` to the JAR name like `no-dependencies` or `no-jetty`
Run `./gradlew installToMavenLocal` command to:
-* Install `stubby4j-7.3.2-SNAPSHOT*.jar` to local `~/.m2/repository`
-* All the artifacts will be installed under `~/.m2/repository/{groupId}/{artifactId}/{version}/`, e.g.: `~/.m2/repository/io/github/azagniotov/stubby4j/7.3.2-SNAPSHOT/`
+* Install `stubby4j-7.3.3-SNAPSHOT*.jar` to local `~/.m2/repository`
+* All the artifacts will be installed under `~/.m2/repository/{groupId}/{artifactId}/{version}/`, e.g.: `~/.m2/repository/io/github/azagniotov/stubby4j/7.3.3-SNAPSHOT/`
Now you can include locally installed stubby4j `SNAPSHOT` artifacts in your project:
```xml
-compile("io.github.azagniotov:stubby4j:7.3.2-SNAPSHOT")
+compile("io.github.azagniotov:stubby4j:7.3.3-SNAPSHOT")
```
or by adding a `classifier` to the JAR name like `no-dependencie`s or `no-jetty`, i.e.:
```xml
-compile("io.github.azagniotov:stubby4j:7.3.2-SNAPSHOT:no-jetty")
+compile("io.github.azagniotov:stubby4j:7.3.3-SNAPSHOT:no-jetty")
```
[Back to top](#table-of-contents)
diff --git a/docs/CHANGELOG.md b/docs/CHANGELOG.md
index 0304c1a49..5b1fd7742 100644
--- a/docs/CHANGELOG.md
+++ b/docs/CHANGELOG.md
@@ -1,6 +1,8 @@
[Back to the main README.md](../README.md#change-log)
-#### 7.3.2-SNAPSHOT
+#### 7.3.3-SNAPSHOT
+
+#### 7.3.2
* PR [#270](https://github.com/azagniotov/stubby4j/pull/270) - Added `additive` proxy strategy behavior that sets additional headers to the request (https://github.com/azagniotov)
diff --git a/gradle.properties b/gradle.properties
index ef8a63729..ef501a2fc 100644
--- a/gradle.properties
+++ b/gradle.properties
@@ -6,4 +6,4 @@ xmlUnitVersion=2.8.2
jettyVersion=9.4.38.v20210224
stubbyProjectName=stubby4j
stubbyProjectGroup=io.github.azagniotov
-stubbyProjectVersion=7.3.2-SNAPSHOT
+stubbyProjectVersion=7.3.3-SNAPSHOT