Skip to content
This repository was archived by the owner on Jul 16, 2024. It is now read-only.

Commit 1caf305

Browse files
committed
Version bump - 0.1.0
1 parent 59e7335 commit 1caf305

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Pinecone Scala Client - Demo/Seed Project
2-
[![version](https://img.shields.io/badge/version-0.0.1-green.svg)](https://cequence.io) [![License](https://img.shields.io/badge/License-MIT-lightgrey.svg)](https://opensource.org/licenses/MIT) [![Twitter Follow](https://img.shields.io/twitter/follow/0xbnd?style=social)](https://twitter.com/0xbnd)
2+
[![version](https://img.shields.io/badge/version-0.1.0-green.svg)](https://cequence.io) [![License](https://img.shields.io/badge/License-MIT-lightgrey.svg)](https://opensource.org/licenses/MIT) [![Twitter Follow](https://img.shields.io/twitter/follow/0xbnd?style=social)](https://twitter.com/0xbnd)
33

44
This is a ready-to-fork, example/demo project demonstrating how to use [Pinecone Scala Client](https://github.com/cequence-io/pinecone-scala).
55

build.sbt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ organization := "io.cequence"
22

33
name := "pinecone-scala-demo"
44

5-
version := "0.0.1"
5+
version := "0.1.0"
66

77
// Supported Scala versions
88
val scala212 = "2.12.15"

src/main/scala/io/cequence/pineconescala/demo/QueryVectors.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ object QueryVectors extends PineconeDemoApp {
1616
println(s"Matched vector id: ${matchInfo.id}")
1717
println(s"Matched vector values: ${matchInfo.values.take(20).mkString(", ")}..") // by default values are not included
1818
println(s"Matched vector score: ${matchInfo.score}")
19-
println(s"Matched vector metadata: ${matchInfo.metadata.get}") // by default metadata is included
19+
println(s"Matched vector metadata: ${matchInfo.metadataUnwrapped}") // by default metadata is included
2020
}
2121
}
2222
}

0 commit comments

Comments
 (0)