diff --git a/CHANGELOG.md b/CHANGELOG.md
index c2d7bf2c4..2af228aae 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,5 +1,19 @@
# Version changelog
+## [Release] Release v0.34.0
+
+### New Features and Improvements
+
+ * Experimental: Make retry strategy configurable ([#363](https://github.com/databricks/databricks-sdk-java/pull/363)).
+
+
+### Bug Fixes
+
+ * CommonHttpsClient Builder - set timeout correctly ([#362](https://github.com/databricks/databricks-sdk-java/pull/362)).
+
+
+
+
## [Release] Release v0.33.0
### Bug Fixes
diff --git a/databricks-sdk-java/pom.xml b/databricks-sdk-java/pom.xml
index 977d46677..cba1f7855 100644
--- a/databricks-sdk-java/pom.xml
+++ b/databricks-sdk-java/pom.xml
@@ -5,7 +5,7 @@
com.databricks
databricks-sdk-parent
- 0.33.0
+ 0.34.0
databricks-sdk-java
diff --git a/databricks-sdk-java/src/main/java/com/databricks/sdk/core/UserAgent.java b/databricks-sdk-java/src/main/java/com/databricks/sdk/core/UserAgent.java
index 13b056bb5..56c817d73 100644
--- a/databricks-sdk-java/src/main/java/com/databricks/sdk/core/UserAgent.java
+++ b/databricks-sdk-java/src/main/java/com/databricks/sdk/core/UserAgent.java
@@ -32,7 +32,7 @@ public String getValue() {
// TODO: check if reading from
// /META-INF/maven/com.databricks/databrics-sdk-java/pom.properties
// or getClass().getPackage().getImplementationVersion() is enough.
- private static final String version = "0.33.0";
+ private static final String version = "0.34.0";
public static void withProduct(String product, String productVersion) {
UserAgent.product = product;
diff --git a/examples/docs/pom.xml b/examples/docs/pom.xml
index 504a5cb2f..32731d879 100644
--- a/examples/docs/pom.xml
+++ b/examples/docs/pom.xml
@@ -24,7 +24,7 @@
com.databricks
databricks-sdk-java
- 0.33.0
+ 0.34.0
diff --git a/examples/spring-boot-oauth-u2m-demo/pom.xml b/examples/spring-boot-oauth-u2m-demo/pom.xml
index 780d08acf..4a89d1033 100644
--- a/examples/spring-boot-oauth-u2m-demo/pom.xml
+++ b/examples/spring-boot-oauth-u2m-demo/pom.xml
@@ -37,7 +37,7 @@
com.databricks
databricks-sdk-java
- 0.33.0
+ 0.34.0
com.fasterxml.jackson.datatype
diff --git a/pom.xml b/pom.xml
index 7c9ffddf8..789662edd 100644
--- a/pom.xml
+++ b/pom.xml
@@ -4,7 +4,7 @@
4.0.0
com.databricks
databricks-sdk-parent
- 0.33.0
+ 0.34.0
pom
Databricks SDK for Java
The Databricks SDK for Java includes functionality to accelerate development with Java for
diff --git a/shaded/pom.xml b/shaded/pom.xml
index 17ca3fa42..21713f8e5 100644
--- a/shaded/pom.xml
+++ b/shaded/pom.xml
@@ -4,7 +4,7 @@
4.0.0
- 0.33.0
+ 0.34.0
com.databricks