Skip to content

Commit 355acac

Browse files
authored
Bump version & generate release notes (#654)
## Usage and product changes We update VERSION to 2.28.2-rc0 and create release notes.
2 parents 0f17b00 + ee66f61 commit 355acac

File tree

2 files changed

+22
-23
lines changed

2 files changed

+22
-23
lines changed

RELEASE_NOTES_LATEST.md

Lines changed: 21 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ Documentation: https://typedb.com/docs/drivers/rust/overview
99

1010

1111
```sh
12-
cargo add [email protected].1
12+
cargo add [email protected].2-rc0
1313
```
1414

1515

@@ -29,7 +29,7 @@ Documentation: https://typedb.com/docs/drivers/java/overview
2929
<dependency>
3030
<groupid>com.vaticle.typedb</groupid>
3131
<artifactid>typedb-driver</artifactid>
32-
<version>2.28.1</version>
32+
<version>2.28.2-rc0</version>
3333
</dependency>
3434
</dependencies>
3535
```
@@ -42,7 +42,7 @@ Documentation: https://typedb.com/docs/drivers/python/overview
4242
Available through https://pypi.org
4343

4444
```
45-
pip install typedb-driver==2.28.1
45+
pip install typedb-driver==2.28.2-rc0
4646
```
4747

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

5353
```
54-
npm install [email protected].1
54+
npm install [email protected].2-rc0
5555
```
5656

5757
### C# driver
@@ -61,38 +61,37 @@ Documentation: https://typedb.com/docs/drivers/csharp/overview
6161

6262
```xml
6363
<ItemGroup>
64-
<PackageReference Include="TypeDB.Driver" Version="2.28.1" />
65-
<PackageReference Include="TypeDB.Driver.Pinvoke.osx-x64" Version="2.28.1" />
66-
<PackageReference Include="TypeDB.Driver.Pinvoke.linux-x64" Version="2.28.1" />
67-
<PackageReference Include="TypeDB.Driver.Pinvoke.win-x64" Version="2.28.1" />
68-
<PackageReference Include="TypeDB.Driver.Pinvoke.osx-arm64" Version="2.28.1" />
69-
<PackageReference Include="TypeDB.Driver.Pinvoke.linux-arm64" Version="2.28.1" />
64+
<PackageReference Include="TypeDB.Driver" Version="2.28.2-rc0" />
65+
<PackageReference Include="TypeDB.Driver.Pinvoke.osx-x64" Version="2.28.2-rc0" />
66+
<PackageReference Include="TypeDB.Driver.Pinvoke.linux-x64" Version="2.28.2-rc0" />
67+
<PackageReference Include="TypeDB.Driver.Pinvoke.win-x64" Version="2.28.2-rc0" />
68+
<PackageReference Include="TypeDB.Driver.Pinvoke.osx-arm64" Version="2.28.2-rc0" />
69+
<PackageReference Include="TypeDB.Driver.Pinvoke.linux-arm64" Version="2.28.2-rc0" />
7070
</ItemGroup>
7171
```
7272

7373
### C++ driver
7474

75-
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.1
75+
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.2-rc0
7676
Documentation: https://typedb.com/docs/drivers/cpp/overview
7777

7878
### C driver
7979

80-
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.1
80+
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.2-rc0
8181

8282

8383
## New Features
84-
- **Copy jni library from input stream rather than file**
85-
We now copy the jni library by reading from it as an input stream rather than as a file copy. This approach works when the JNI jars are nested, such as in Spring Boot projects.
84+
85+
86+
## Bugs Fixed
87+
- **JNI library loading uses a predetermined file name**
88+
The unpacked JNI library now uses a pre-determined filename. This replaces logic to extract the filename from the packaged resource.
89+
8690

8791

8892
## Code Refactors
89-
- **Fix misleading cloud encryption error message**
90-
The old version of the cloud encryption error message confused the user in case, for example, their endpoint is not encrypted, but the connection is. There are also other potential causes of the `received corrupt message` status message, that we can't understand on a deeper level, so it's more correct to have a less specific error message here.
91-
93+
9294

9395
## Other Improvements
94-
- **Each API reference is combined in a single partial for easier preview and usage**
95-
96-
For each driver, we move all AsciiDoc `include` directives to a dedicated partial called `api-reference.adoc` in the drivers repo.
97-
This way, all the content can be previewed from the typedb-driver repo and included in the docs web content with a single include directive.
98-
96+
97+

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
2.28.1
1+
2.28.2-rc0

0 commit comments

Comments
 (0)