diff --git a/README.md b/README.md index b99ade8..1b1fe22 100644 --- a/README.md +++ b/README.md @@ -12,10 +12,9 @@ [![npm downloads](https://img.shields.io/npm/dw/@terminusdb/terminusdb-client?color=red&label=npm%20package&logo=npm&style=flat)](https://www.npmjs.com/package/@terminusdb/terminusdb-client) [![Coverage Status](https://coveralls.io/builds/76119876/badge)](https://coveralls.io/builds/76119876) -> This repository is for the JavaScript client library for TerminusDB and -> TerminusCMS. +> This repository is for the JavaScript client library for TerminusDB -[**TerminusDB**][terminusdb] is an [open-source][terminusdb-repo] graph database and document store. It allows you to link JSON documents in a powerful knowledge graph all through a simple document API. +[**TerminusDB**][terminusdb] is an [open-source][terminusdb-repo] graph database and document store. It allows you to link and process structured and unstructured JSON documents in a powerful knowledge graph all through a simple document API. [terminusdb]: https://terminusdb.org/ [terminusdb-docs]: https://terminusdb.org/docs/ diff --git a/RELEASE_NOTES.md b/RELEASE_NOTES.md index 7c831ca..05763ed 100644 --- a/RELEASE_NOTES.md +++ b/RELEASE_NOTES.md @@ -1,3 +1,14 @@ +# TerminusDB Client v12.0.0 +## New 🚀 +* Add WOQL `slice()`, and `idgen_random()` operators + +## Fixes and maintenance +* Update with latest security fixes +* Follow latest release of TerminusDB v12.0.0 +* Make `dot()` operator work correctly again +* Fix handling of list-nested WOQL document templates (#346) +* Make VarUnique process correctly + # TerminusDB Client v11.1.2 ## Fixes * Adjust the release process to include version update task diff --git a/package-lock.json b/package-lock.json index 1d023b7..6e89af1 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "@terminusdb/terminusdb-client", - "version": "11.1.2", + "version": "12.0.0", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "@terminusdb/terminusdb-client", - "version": "11.1.2", + "version": "12.0.0", "license": "Apache-2.0", "dependencies": { "axios": "^1.7.2", diff --git a/package.json b/package.json index f966819..6a955bd 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@terminusdb/terminusdb-client", - "version": "11.1.2", + "version": "12.0.0", "description": "TerminusDB client library", "main": "index.js", "types": "./dist/typescript/index.d.ts",