diff --git a/src/docs/asciidoc/chapters/connection/connection.adoc b/src/docs/asciidoc/chapters/connection/connection.adoc
index 8267d86..3fec55c 100644
--- a/src/docs/asciidoc/chapters/connection/connection.adoc
+++ b/src/docs/asciidoc/chapters/connection/connection.adoc
@@ -462,6 +462,7 @@ When using Jaybird 3 and later, you can use a library to provide the Firebird cl
For Windows, Linux, and macOS, you can add the `org.firebirdsql.jdbc:fbclient` dependency on your classpath.
This dependency does not support the `embedded` protocol.
+.Native libraries for all supported OS and architectures
[source,xml,subs="verbatim,attributes"]
----
@@ -471,6 +472,21 @@ This dependency does not support the `embedded` protocol.
----
+Since version 5.0.1.1, you can also specify the desired OS, or OS and architecture using the `classifier`:
+
+.Only native libraries for Linux (all supported architectures)
+[source,xml,subs="verbatim,attributes"]
+----
+
+ org.firebirdsql.jdbc
+ fbclient
+ {jaybird-fbclient-version}
+ linux
+
+----
+
+See https://github.com/mrotteveel/jaybird-fbclient#os-specific-packages[mrotteveel/jaybird-fbclient] for the available classifiers.
+
You can also download the library (see https://github.com/mrotteveel/jaybird-fbclient#download[mrotteveel/jaybird-fbclient] for download link) and add it your classpath.
See next sections for other solutions.
diff --git a/src/docs/asciidoc/jaybird_manual.adoc b/src/docs/asciidoc/jaybird_manual.adoc
index 44a861e..d486dda 100644
--- a/src/docs/asciidoc/jaybird_manual.adoc
+++ b/src/docs/asciidoc/jaybird_manual.adoc
@@ -19,7 +19,7 @@ Roman Rokytskyy; Mark Rotteveel
:jaybird4-example-version: {jaybird4-full-version}.java11
:jaybird3-full-version: 3.0.12
:jaybird22-full-version: 2.2.15
-:jaybird-fbclient-version: 5.0.1.0
+:jaybird-fbclient-version: 5.0.1.1
:jaybird-version: 5
:jaybird-full-version: {jaybird5-full-version}
:jaybird-example-version: {jaybird5-example-version}