diff --git a/CHANGELOG.md b/CHANGELOG.md index 851d2dd..a0ae57b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## [0.3.1](https://github.com/googleapis/langchain-google-bigtable-python/compare/v0.3.0...v0.3.1) (2024-08-14) + + +### Documentation + +* Update playbook to explain tests quota issue ([#90](https://github.com/googleapis/langchain-google-bigtable-python/issues/90)) ([8f10fe1](https://github.com/googleapis/langchain-google-bigtable-python/commit/8f10fe184056fb2cb6c4f4a11f46160e0e0b83b2)) + ## [0.3.0](https://github.com/googleapis/langchain-google-bigtable-python/compare/v0.2.3...v0.3.0) (2024-08-14) diff --git a/DEVELOPER.md b/DEVELOPER.md index 11189b1..bb65f36 100644 --- a/DEVELOPER.md +++ b/DEVELOPER.md @@ -26,6 +26,10 @@ Learn more by reading [How should I write my commits?](https://github.com/google pytest ``` +### Typical tests failures + +1. All the tests are running against the same instance, in the same project, using the same user. A common error is caused when too many tests run at the same time, using up all the quota for table creation\modification. This issue is multiplied when running tests through github actions, that run the tests against 5 different versions of Python. To remedy the issue, try not to run many test suites concurrently. + ### CI Platform Setup Cloud Build is used to run tests against Google Cloud resources in test project: langchain-bigtable-testing. diff --git a/requirements.txt b/requirements.txt index e03385c..fbb3dcb 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,3 +1,3 @@ -langchain-core==0.2.30 +langchain-core==0.2.31 google-cloud-bigtable==2.26.0 deprecated==1.2.14 diff --git a/src/langchain_google_bigtable/version.py b/src/langchain_google_bigtable/version.py index 2b5d97a..74905ca 100644 --- a/src/langchain_google_bigtable/version.py +++ b/src/langchain_google_bigtable/version.py @@ -12,4 +12,4 @@ # See the License for the specific language governing permissions and # limitations under the License. -__version__ = "0.3.0" +__version__ = "0.3.1"