Skip to content

Commit 1772247

Browse files
authored
docs: update and rename the clients (#836)
1 parent f7ca0ad commit 1772247

File tree

7 files changed

+26
-27
lines changed

7 files changed

+26
-27
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ Please make sure to follow the [contribution guidelines](CONTRIBUTING.md). It co
1919
EventStoreDB clients:
2020
- C# - [see more](https://github.com/EventStore/EventStore-Client-Dotnet/tree/master/samples)
2121
- NodeJS - [see more](https://github.com/EventStore/EventStore-Client-NodeJS/tree/master/packages/test/src/samples)
22-
- Java - [see more](https://github.com/EventStore/EventStoreDB-Client-Java/tree/trunk/db-client-java/src/test/java/com/eventstore/dbclient/samples)
22+
- Java - [see more](https://github.com/EventStore/EventStoreDB-Client-Java/tree/trunk/src/test/java/io/kurrent/dbclient/samples)
2323
- Rust - [see more](https://github.com/EventStore/EventStoreDB-Client-Rust/tree/master/examples)
2424
- Go - [see more](https://github.com/EventStore/EventStore-Client-Go/tree/master/samples)
2525

docs/.vuepress/lib/samples.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -48,23 +48,23 @@ export function resolveSamplesPath(src: string, srcCat: string | undefined) {
4848
},
4949
"cs": {
5050
label: "C#",
51-
path: "clients/dotnet/23.3.3"
51+
path: "clients/dotnet/23.3.8"
5252
},
5353
"go": {
5454
label: "Go",
55-
path: "clients/go/3.3.0"
55+
path: "clients/go/4.2.0"
5656
},
5757
"rs": {
5858
label: "Rust",
59-
path: "clients/rust/3.0.0"
59+
path: "clients/rust/4.0.1"
6060
},
6161
"py": {
6262
label: "Python",
6363
path: "clients/python/1.0.17"
6464
},
6565
"java": {
6666
label: "Java",
67-
path: "clients/java/5.3.1"
67+
path: "clients/java/5.4.5"
6868
},
6969
}
7070
};

docs/clients/grpc/getting-started.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -62,14 +62,14 @@ Add the `db-client-java` dependency to your Maven or Gradle project:
6262
@tab Maven
6363
```xml
6464
<dependency>
65-
<groupId>com.eventstore</groupId>
65+
<groupId>io.kurrent</groupId>
6666
<artifactId>db-client-java</artifactId>
6767
<version>5.2.0</version>
6868
</dependency>
6969
```
7070
@tab Gradle
7171
```groovy
72-
implementation 'com.eventstore:db-client-java:5.2.0'
72+
implementation 'io.kurrent:db-client-java:5.2.0'
7373
```
7474
:::
7575

docs/clients/grpc/observability.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ subscribe operations, which includes both 'Catchup' and 'Persistent' modes.
1717
You can click on the links below to view the full code for each client:
1818

1919
- [NodeJS](https://github.com/EventStore/EventStore-Client-NodeJS/blob/master/packages/test/src/samples/opentelemetry.ts)
20-
- [Java](https://github.com/EventStore/EventStoreDB-Client-Java/blob/trunk/db-client-java/src/test/java/com/eventstore/dbclient/samples/opentelemetry/Instrumentation.java)
20+
- [Java](https://github.com/EventStore/EventStoreDB-Client-Java/blob/trunk/src/test/java/io/kurrent/dbclient/samples/opentelemetry/Instrumentation.java)
2121
- [C#](https://github.com/EventStore/EventStore-Client-Dotnet/blob/master/samples/diagnostics/Program.cs)
2222

2323
## Required packages

docs/clients/grpc/projections.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,15 +48,15 @@ Add the `db-client-java` dependency to your project using Maven or Gradle.
4848
@tab Maven
4949
```xml
5050
<dependency>
51-
<groupId>com.eventstore</groupId>
51+
<groupId>io.kurrent</groupId>
5252
<artifactId>db-client-java</artifactId>
5353
<version>5.2.0</version>
5454
</dependency>
5555
```
5656

5757
@tab Gradle
5858
```
59-
implementation 'com.eventstore:db-client-java:5.2.0'
59+
implementation 'io.kurrent:db-client-java:5.2.0'
6060
```
6161
:::
6262

docs/getting-started/quickstart/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -247,7 +247,7 @@ esdbclient==1.0.19
247247
@tab Java
248248
```xml
249249
<dependency>
250-
<groupId>com.eventstore</groupId>
250+
<groupId>io.kurrent</groupId>
251251
<artifactId>db-client-java</artifactId>
252252
<version>5.3.2</version>
253253
</dependency>
@@ -314,7 +314,7 @@ To view the source code in GitHub, click the link below:
314314
```sh
315315
java -cp \
316316
target/eventstoredb-demo-1.0-SNAPSHOT-jar-with-dependencies.jar \
317-
com.eventstoredb_demo.SampleWrite
317+
io.kurrentdb_demo.SampleWrite
318318
```
319319

320320
@tab .NET
@@ -566,7 +566,7 @@ To view the source code in GitHub, click the link below:
566566
```sh
567567
java -cp \
568568
target/eventstoredb-demo-1.0-SNAPSHOT-jar-with-dependencies.jar \
569-
com.eventstoredb_demo.SampleRead
569+
io.kurrentdb_demo.SampleRead
570570
```
571571

572572
@tab .NET

import/repos.json

Lines changed: 13 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
"docsRelativePath": ["docs"],
77
"samplesRelativePath": ["samples", "server"],
88
"currentBranch": "master",
9-
"repo": "https://github.com/EventStore/EventStore",
9+
"repo": "https://github.com/kurrent-io/EventStore",
1010
"branches": [
1111
{
1212
"version": "v25.0",
@@ -63,7 +63,7 @@
6363
"basePath": "http-api",
6464
"docsRelativePath": ["docs", "http-api"],
6565
"samplesRelativePath": ["samples", "http-api"],
66-
"repo": "https://github.com/EventStore/EventStore",
66+
"repo": "https://github.com/kurrent-io/EventStore",
6767
"branches": [
6868
{
6969
"version": "v25.0",
@@ -102,10 +102,10 @@
102102
"group": ".NET SDK",
103103
"basePath": "clients/dotnet",
104104
"samplesRelativePath": ["samples"],
105-
"repo": "https://github.com/EventStore/EventStore-Client-Dotnet",
105+
"repo": "https://github.com/kurrent-io/EventStore-Client-Dotnet",
106106
"branches": [
107107
{
108-
"version": "23.3.3",
108+
"version": "23.3.8",
109109
"name":"master"
110110
}
111111
]
@@ -115,19 +115,18 @@
115115
"group": "Java SDK",
116116
"basePath": "clients/java",
117117
"samplesRelativePath": [
118-
"db-client-java",
119118
"src",
120119
"test",
121120
"java",
122-
"com",
123-
"eventstore",
121+
"io",
122+
"kurrent",
124123
"dbclient",
125124
"samples"
126125
],
127-
"repo": "https://github.com/EventStore/EventStoreDB-Client-Java",
126+
"repo": "https://github.com/kurrent-io/KurrentDB-Client-Java",
128127
"branches": [
129128
{
130-
"version": "5.3.1",
129+
"version": "5.4.5",
131130
"name": "trunk"
132131
}
133132
]
@@ -137,10 +136,10 @@
137136
"group": "Rust SDK",
138137
"basePath": "clients/rust",
139138
"samplesRelativePath": ["examples"],
140-
"repo": "https://github.com/EventStore/EventStoreDB-Client-Rust",
139+
"repo": "https://github.com/kurrent-io/EventStoreDB-Client-Rust",
141140
"branches": [
142141
{
143-
"version": "3.0.0",
142+
"version": "4.0.1",
144143
"name": "master"
145144
}
146145
]
@@ -155,7 +154,7 @@
155154
"src",
156155
"samples"
157156
],
158-
"repo": "https://github.com/EventStore/EventStore-Client-NodeJS",
157+
"repo": "https://github.com/kurrent-io/KurrentDB-Client-NodeJS",
159158
"branches": [
160159
{
161160
"version": "6.2.1",
@@ -172,10 +171,10 @@
172171
"group": "Go SDK",
173172
"basePath": "clients/go",
174173
"samplesRelativePath": ["samples"],
175-
"repo": "https://github.com/EventStore/EventStore-Client-Go",
174+
"repo": "https://github.com/kurrent-io/EventStore-Client-Go",
176175
"branches": [
177176
{
178-
"version": "3.3.0",
177+
"version": "4.2.0",
179178
"name": "master"
180179
}
181180
]

0 commit comments

Comments
 (0)