Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ If you're using [Maven](https://maven.apache.org/), add this to your [`pom.xml`]

```xml
<!-- in your <properties> block -->
<bookkeeper.version>4.17.3</bookkeeper.version>
<bookkeeper.version>4.17.4</bookkeeper.version>

<!-- in your <dependencies> block -->
<dependency>
Expand All @@ -37,7 +37,7 @@ shaded library, which relocate classes of protobuf and guava into a different na

```xml
<!-- in your <properties> block -->
<bookkeeper.version>4.17.3</bookkeeper.version>
<bookkeeper.version>4.17.4</bookkeeper.version>

<!-- in your <dependencies> block -->
<dependency>
Expand All @@ -53,12 +53,12 @@ If you're using [Gradle](https://gradle.org/), add this to your [`build.gradle`]

```groovy
dependencies {
compile group: 'org.apache.bookkeeper', name: 'bookkeeper-server', version: '4.17.3'
compile group: 'org.apache.bookkeeper', name: 'bookkeeper-server', version: '4.17.4'
}

// Alternatively:
dependencies {
compile 'org.apache.bookkeeper:bookkeeper-server:4.17.3'
compile 'org.apache.bookkeeper:bookkeeper-server:4.17.4'
}
```

Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
id: overview
title: Apache BookKeeper 4.17.3
title: Apache BookKeeper 4.17.4
---
<!--
Licensed to the Apache Software Foundation (ASF) under one
Expand All @@ -21,7 +21,7 @@ specific language governing permissions and limitations
under the License.
-->

This documentation is for Apache BookKeeper&trade; version 4.17.3.
This documentation is for Apache BookKeeper&trade; version 4.17.4.

Apache BookKeeper&trade; is a scalable, fault-tolerant, low-latency storage service optimized for real-time workloads. It offers durability, replication, and strong consistency as essentials for building reliable real-time applications.

Expand All @@ -39,7 +39,7 @@ Object/[BLOB](https://en.wikipedia.org/wiki/Binary_large_object) storage | Stori

Learn more about Apache BookKeeper&trade; and what it can do for your organization:

- [Apache BookKeeper 4.17.3 Release Notes](/release-notes#4173)
- [Apache BookKeeper 4.17.4 Release Notes](/release-notes#4174)
- [Java API docs]({{site.javadoc_base_url}})

Or start [using](../getting-started/installation) Apache BookKeeper today.
Expand Down
2 changes: 1 addition & 1 deletion site3/website/versions.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[
"4.17.3",
"4.17.4",
"4.16.7",
"4.15.5",
"4.14.8",
Expand Down
Loading