Skip to content

Commit f44db9c

Browse files
committed
Docs: Update mongodb-crypt version
JAVA-3980
1 parent f373b72 commit f44db9c

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

docs/reference/content/driver-reactive/tutorials/client-side-encryption.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ See the [installation]({{< relref "driver-reactive/getting-started/installation.
3232

3333
There is a separate jar file containing`libmongocrypt` bindings.
3434

35-
{{< install artifactId="mongodb-crypt" version="1.1.0">}}
35+
{{< install artifactId="mongodb-crypt" version="1.2.0">}}
3636

3737
### mongocryptd configuration
3838

@@ -275,4 +275,4 @@ collection.find().first().subscribe(documentSubscriber);
275275
276276
Document doc = documentSubscriber.get().get(0);
277277
System.out.println(doc.toJson());
278-
```
278+
```

docs/reference/content/driver-scala/tutorials/client-side-encryption.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ See the [installation]({{< relref "driver-scala/getting-started/installation.md"
3535

3636
There is a separate jar file containing`libmongocrypt` bindings.
3737

38-
{{< install artifactId="mongodb-crypt" version="1.1.0">}}
38+
{{< install artifactId="mongodb-crypt" version="1.2.0">}}
3939

4040
### mongocryptd configuration
4141

@@ -249,4 +249,4 @@ collection.insertOne(Document("encryptedField" -> encryptedFieldValue)).headResu
249249
250250
val doc = collection.find.first().headResult()
251251
println(doc.toJson())
252-
```
252+
```

docs/reference/content/driver/tutorials/client-side-encryption.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ See the [installation]({{< relref "driver/getting-started/installation.md" >}})
2929

3030
There is a separate jar file containing`libmongocrypt` bindings.
3131

32-
{{< install artifactId="mongodb-crypt" version="1.1.0">}}
32+
{{< install artifactId="mongodb-crypt" version="1.2.0">}}
3333

3434
### mongocryptd configuration
3535

@@ -245,4 +245,4 @@ collection.insertOne(new Document("encryptedField", encryptedFieldValue));
245245
246246
// Automatically decrypts the encrypted field.
247247
System.out.println(collection.find().first().toJson());
248-
```
248+
```

0 commit comments

Comments
 (0)