Skip to content

Commit

Permalink
Update VERSION to 2.28.6-rc0 and create release notes (#679)
Browse files Browse the repository at this point in the history
## Usage and product changes

Update VERSION to 2.28.6-rc0 and create release notes
  • Loading branch information
dmitrii-ubskii authored Aug 5, 2024
1 parent 1d40184 commit 2df397c
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 14 deletions.
24 changes: 12 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/drivers/rust/overview


```sh
cargo add [email protected].5-rc0
cargo add [email protected].6-rc0
```


Expand All @@ -29,7 +29,7 @@ Documentation: https://typedb.com/docs/drivers/java/overview
<dependency>
<groupid>com.vaticle.typedb</groupid>
<artifactid>typedb-driver</artifactid>
<version>2.28.5-rc0</version>
<version>2.28.6-rc0</version>
</dependency>
</dependencies>
```
Expand All @@ -42,7 +42,7 @@ Documentation: https://typedb.com/docs/drivers/python/overview
Available through https://pypi.org

```
pip install typedb-driver==2.28.5rc0
pip install typedb-driver==2.28.6rc0
```

### NodeJS driver
Expand All @@ -51,7 +51,7 @@ NPM package: https://www.npmjs.com/package/typedb-driver
Documentation: https://typedb.com/docs/drivers/nodejs/overview

```
npm install [email protected].5-rc0
npm install [email protected].6-rc0
```

### C# driver
Expand All @@ -61,23 +61,23 @@ Documentation: https://typedb.com/docs/drivers/csharp/overview

```xml
<ItemGroup>
<PackageReference Include="TypeDB.Driver" Version="2.28.5-rc0" />
<PackageReference Include="TypeDB.Driver.Pinvoke.osx-x64" Version="2.28.5-rc0" />
<PackageReference Include="TypeDB.Driver.Pinvoke.linux-x64" Version="2.28.5-rc0" />
<PackageReference Include="TypeDB.Driver.Pinvoke.win-x64" Version="2.28.5-rc0" />
<PackageReference Include="TypeDB.Driver.Pinvoke.osx-arm64" Version="2.28.5-rc0" />
<PackageReference Include="TypeDB.Driver.Pinvoke.linux-arm64" Version="2.28.5-rc0" />
<PackageReference Include="TypeDB.Driver" Version="2.28.6-rc0" />
<PackageReference Include="TypeDB.Driver.Pinvoke.osx-x64" Version="2.28.6-rc0" />
<PackageReference Include="TypeDB.Driver.Pinvoke.linux-x64" Version="2.28.6-rc0" />
<PackageReference Include="TypeDB.Driver.Pinvoke.win-x64" Version="2.28.6-rc0" />
<PackageReference Include="TypeDB.Driver.Pinvoke.osx-arm64" Version="2.28.6-rc0" />
<PackageReference Include="TypeDB.Driver.Pinvoke.linux-arm64" Version="2.28.6-rc0" />
</ItemGroup>
```

### C++ driver

Compiled distributions comprising headers and shared libraries available at: https://cloudsmith.io/~typedb/repos/public-release/packages/?q=name:^typedb-driver-cpp+version:2.28.5-rc0
Compiled distributions comprising headers and shared libraries available at: https://cloudsmith.io/~typedb/repos/public-release/packages/?q=name:^typedb-driver-cpp+version:2.28.6-rc0
Documentation: https://typedb.com/docs/drivers/cpp/overview

### C driver

Compiled distributions comprising headers and shared libraries available at: https://cloudsmith.io/~typedb/repos/public-release/packages/?q=name:^typedb-driver-clib+version:2.28.5-rc0
Compiled distributions comprising headers and shared libraries available at: https://cloudsmith.io/~typedb/repos/public-release/packages/?q=name:^typedb-driver-clib+version:2.28.6-rc0


## New Features
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
2.28.5-rc0
2.28.6-rc0
2 changes: 1 addition & 1 deletion dependencies/vaticle/repositories.bzl
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ def vaticle_typeql():
git_repository(
name = "vaticle_typeql",
remote = "https://github.com/typedb/typeql",
tag = "2.28.5", # sync-marker: do not remove this comment, this is used for sync-dependencies by @vaticle_typeql
tag = "2.28.6", # sync-marker: do not remove this comment, this is used for sync-dependencies by @vaticle_typeql
)

def vaticle_typedb_protocol():
Expand Down

0 comments on commit 2df397c

Please sign in to comment.