Skip to content

Commit 6ee6267

Browse files
committed
Version 1.0.0 🔥
1 parent 9253c43 commit 6ee6267

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Pinecone Scala Client 🗂️
2-
[![version](https://img.shields.io/badge/version-0.1.6-green.svg)](https://cequence.io) [![License](https://img.shields.io/badge/License-MIT-lightgrey.svg)](https://opensource.org/licenses/MIT) ![GitHub Stars](https://img.shields.io/github/stars/cequence-io/pinecone-scala?style=social) [![Twitter Follow](https://img.shields.io/twitter/follow/0xbnd?style=social)](https://twitter.com/0xbnd)
2+
[![version](https://img.shields.io/badge/version-1.0.0-green.svg)](https://cequence.io) [![License](https://img.shields.io/badge/License-MIT-lightgrey.svg)](https://opensource.org/licenses/MIT) ![GitHub Stars](https://img.shields.io/github/stars/cequence-io/pinecone-scala?style=social) [![Twitter Follow](https://img.shields.io/twitter/follow/0xbnd?style=social)](https://twitter.com/0xbnd)
33

44
This is an intuitive async Scala client for Pinecone API supporting all the available vector and index/collection operations/endpoints, provided in two convenient services called [PineconeVectorService](./pinecone-core/src/main/scala/io/cequence/pineconescala/service/PineconeVectorService.scala) and [PineconeIndexService](./pinecone-core/src/main/scala/io/cequence/pineconescala/service/PineconeIndexService.scala). The supported calls are:
55

@@ -24,7 +24,7 @@ The currently supported Scala versions are **2.12, 2.13**, and **3**.
2424
To pull the library you have to add the following dependency to your *build.sbt*
2525

2626
```
27-
"io.cequence" %% "pinecone-scala-client" % "0.1.6"
27+
"io.cequence" %% "pinecone-scala-client" % "1.0.0"
2828
```
2929

3030
or to *pom.xml* (if you use maven)
@@ -33,7 +33,7 @@ or to *pom.xml* (if you use maven)
3333
<dependency>
3434
<groupId>io.cequence</groupId>
3535
<artifactId>pinecone-scala-client_2.12</artifactId>
36-
<version>0.1.6</version>
36+
<version>1.0.0</version>
3737
</dependency>
3838
```
3939

@@ -542,7 +542,7 @@ pinecone-scala-client {
542542
}
543543
```
544544

545-
2. _I got an exception like `com.typesafe.config.ConfigException$UnresolvedSubstitution: pinecone-scala-client.conf @ jar:file:.../io/cequence/pinecone-scala-client_2.13/0.1.6/pinecone-scala-client_2.13-0.1.6.jar!/pinecone-scala-client.conf: 4: Could not resolve substitution to a value: ${PINECONE_SCALA_CLIENT_API_KEY}`. What should I do?_
545+
2. _I got an exception like `com.typesafe.config.ConfigException$UnresolvedSubstitution: pinecone-scala-client.conf @ jar:file:.../io/cequence/pinecone-scala-client_2.13/1.0.0/pinecone-scala-client_2.13-1.0.0.jar!/pinecone-scala-client.conf: 4: Could not resolve substitution to a value: ${PINECONE_SCALA_CLIENT_API_KEY}`. What should I do?_
546546

547547
Set the env. variable `PINECONE_SCALA_CLIENT_API_KEY`. If you don't have one register [here](https://app.pinecone.io/?sessionType=signup).
548548

build.sbt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ val scala33 = "3.3.1"
88

99
ThisBuild / organization := "io.cequence"
1010
ThisBuild / scalaVersion := scala212
11-
ThisBuild / version := "0.1.6"
11+
ThisBuild / version := "1.0.0"
1212
ThisBuild / isSnapshot := false
1313

1414
lazy val core = (project in file("pinecone-core"))

0 commit comments

Comments
 (0)