Skip to content

Commit

Permalink
Update VERSION and depedendencies to 2.24.11
Browse files Browse the repository at this point in the history
  • Loading branch information
flyingsilverfin committed Oct 3, 2023
1 parent 5637f2b commit 85e58e4
Show file tree
Hide file tree
Showing 10 changed files with 21 additions and 25 deletions.
2 changes: 1 addition & 1 deletion .github/ISSUE_TEMPLATE/BUG_REPORT.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
name: Bug Report
about: Report a bug here, or visit forum.vaticle.com for troubleshooting discussions
about: Report a bug here, or visit typedb.com/forum for troubleshooting discussions
labels: bug
---

Expand Down
2 changes: 1 addition & 1 deletion .github/ISSUE_TEMPLATE/FEATURE_REQUEST.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
name: Feature Request
about: Request a feature here, or visit forum.vaticle.com for ideas and questions
about: Request a feature here, or visit typedb.com/forum for ideas and questions
labels: feature
---

Expand Down
2 changes: 1 addition & 1 deletion .github/ISSUE_TEMPLATE/bug-report.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
name: Bug Report
about: Report a bug here, or visit forum.vaticle.com for troubleshooting discussions
about: Report a bug here, or visit typedb.com/forum for troubleshooting discussions
labels: bug
---

Expand Down
2 changes: 1 addition & 1 deletion .github/ISSUE_TEMPLATE/feature-request.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
name: Feature Request
about: Request a feature here, or visit forum.vaticle.com for ideas and questions
about: Request a feature here, or visit typedb.com/forum for ideas and questions
labels: feature
---

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

[![Factory](https://factory.vaticle.com/api/status/vaticle/typedb-driver/badge.svg)](https://factory.vaticle.com/vaticle/typedb-driver)
[![Discord](https://img.shields.io/discord/665254494820368395?color=7389D8&label=chat&logo=discord&logoColor=ffffff)](https://vaticle.com/discord)
[![Discussion Forum](https://img.shields.io/discourse/https/forum.vaticle.com/topics.svg)](https://forum.vaticle.com)
[![Discussion Forum](https://img.shields.io/discourse/https/typedb.com/forum/topics.svg)](https://typedb.com/forum)
[![Stack Overflow](https://img.shields.io/badge/stackoverflow-typedb-796de3.svg)](https://stackoverflow.com/questions/tagged/typedb)
[![Stack Overflow](https://img.shields.io/badge/stackoverflow-typeql-3dce8c.svg)](https://stackoverflow.com/questions/tagged/typeql)

Expand Down
20 changes: 8 additions & 12 deletions RELEASE_NOTES_LATEST.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ Documentation: https://typedb.com/docs/clients/2.x/rust/rust-api-ref


```sh
cargo add typedb-driver@2.24.8
cargo add typedb-driver@2.24.11
```


Expand All @@ -29,7 +29,7 @@ Documentation: https://typedb.com/docs/clients/2.x/java/java-api-ref
<dependency>
<groupid>com.vaticle.typedb</groupid>
<artifactid>typedb-driver</artifactid>
<version>2.24.8</version>
<version>2.24.11</version>
</dependency>
</dependencies>
```
Expand All @@ -42,7 +42,7 @@ Documentation: https://typedb.com/docs/clients/2.x/python/python-api-ref
Available through https://pypi.org

```
pip install typedb-driver==2.24.8
pip install typedb-driver==2.24.11
```

### NodeJS driver
Expand All @@ -51,7 +51,7 @@ NPM package: https://www.npmjs.com/package/typedb-driver
Documentation: https://typedb.com/docs/clients/2.x/node-js/node-js-api-ref

```
npm install typedb-driver@2.24.8
npm install typedb-driver@2.24.11
```


Expand All @@ -60,18 +60,14 @@ npm install typedb-driver@2.24.8

## Bugs Fixed

- **Fix crate**

We fix crate deployment metadata when uploading to crates.io

## Code Refactors


## Other Improvements
- **Update pest 2.4.0 => 2.7.4**

We update to pest and pest-derive v2.7.4, which among other things purports to fix the error where [deriving Parser fails on "undeclared crate or module `alloc`"](https://github.com/pest-parser/pest/issues/899) (https://github.com/pest-parser/pest/pull/900).


- **Merge master into development**

Synchronise changes for release into the development branch.


- **Fix URLs and README**
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
2.24.8
2.24.11
6 changes: 3 additions & 3 deletions dependencies/vaticle/repositories.bzl
Original file line number Diff line number Diff line change
Expand Up @@ -25,21 +25,21 @@ def vaticle_dependencies():
git_repository(
name = "vaticle_dependencies",
remote = "https://github.com/vaticle/dependencies",
commit = "fcc9a56b65e6ab69bbf0f1680affe38e12617ed6", # sync-marker: do not remove this comment, this is used for sync-dependencies by @vaticle_dependencies
commit = "5bf5826067d9a371efc2144343cd4f5c2649ee8e", # sync-marker: do not remove this comment, this is used for sync-dependencies by @vaticle_dependencies
)

def vaticle_typedb_common():
git_repository(
name = "vaticle_typedb_common",
remote = "https://github.com/vaticle/typedb-common",
tag = "2.24.5", # sync-marker: do not remove this comment, this is used for sync-dependencies by @vaticle_typedb_common
tag = "2.24.10", # sync-marker: do not remove this comment, this is used for sync-dependencies by @vaticle_typedb_common
)

def vaticle_typeql():
git_repository(
name = "vaticle_typeql",
remote = "https://github.com/vaticle/typeql",
tag = "2.24.8", # sync-marker: do not remove this comment, this is used for sync-dependencies by @vaticle_typeql
tag = "2.24.11", # sync-marker: do not remove this comment, this is used for sync-dependencies by @vaticle_typeql
)

def vaticle_typedb_protocol():
Expand Down
2 changes: 1 addition & 1 deletion nodejs/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

[![Factory](https://factory.vaticle.com/api/status/vaticle/typedb-driver-nodejs/badge.svg)](https://factory.vaticle.com/vaticle/typedb-driver-nodejs)
[![Discord](https://img.shields.io/discord/665254494820368395?color=7389D8&label=chat&logo=discord&logoColor=ffffff)](https://vaticle.com/discord)
[![Discussion Forum](https://img.shields.io/discourse/https/forum.vaticle.com/topics.svg)](https://forum.vaticle.com)
[![Discussion Forum](https://img.shields.io/discourse/https/typedb.com/forum/topics.svg)](https://typedb.com/forum)
[![Stack Overflow](https://img.shields.io/badge/stackoverflow-typedb-796de3.svg)](https://stackoverflow.com/questions/tagged/typedb)
[![Stack Overflow](https://img.shields.io/badge/stackoverflow-typeql-3dce8c.svg)](https://stackoverflow.com/questions/tagged/typeql)

Expand Down
6 changes: 3 additions & 3 deletions rust/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

[![Factory](https://factory.vaticle.com/api/status/vaticle/typedb-driver/badge.svg)](https://factory.vaticle.com/vaticle/typedb-driver)
[![Discord](https://img.shields.io/discord/665254494820368395?color=7389D8&label=chat&logo=discord&logoColor=ffffff)](https://vaticle.com/discord)
[![Discussion Forum](https://img.shields.io/discourse/https/forum.vaticle.com/topics.svg)](https://forum.vaticle.com)
[![Discussion Forum](https://img.shields.io/discourse/https/typedb.com/forum/topics.svg)](https://typedb.com/forum)
[![Stack Overflow](https://img.shields.io/badge/stackoverflow-typedb-796de3.svg)](https://stackoverflow.com/questions/tagged/typedb)
[![Stack Overflow](https://img.shields.io/badge/stackoverflow-typeql-3dce8c.svg)](https://stackoverflow.com/questions/tagged/typeql)

Expand All @@ -16,8 +16,8 @@ To learn about the methods available for executing queries and retrieving their

## Quickstart
1. Import `typedb-driver` through Cargo:
```toml
typedb-driver = "2.24.2"
```bash
cargo add typedb-driver
```
2. Make sure the [TypeDB Server](https://docs.vaticle.com/docs/running-typedb/install-and-run#start-the-typedb-server) is running.
3. See `rust/tests/integration` for examples of usage.
Expand Down

0 comments on commit 85e58e4

Please sign in to comment.