Skip to content

Commit 0a6c432

Browse files
authored
DEVX-2085: Updating docs to late model version numbers (#73)
* DEVX-2085: Updating docs to late model version numbers * DEVX-2085: Updating docs to late model version numbers
1 parent 98e7dc9 commit 0a6c432

File tree

1 file changed

+10
-10
lines changed

1 file changed

+10
-10
lines changed

README.md

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
# Versions
1515

1616
There are multiple [released versions](https://github.com/confluentinc/kafka-connect-datagen/releases) of this connector, starting with `0.1.0`.
17-
The instructions below use version `0.3.2` as an example, but you can substitute any of the other released versions.
17+
The instructions below use version `0.4.0` as an example, but you can substitute any of the other released versions.
1818
In fact, unless specified otherwise, we recommend using the latest released version to get all of the features and bug fixes.
1919

2020
# Usage
@@ -28,7 +28,7 @@ Using the [Confluent Hub Client](https://docs.confluent.io/current/connect/manag
2828
To install a specific release version you can run:
2929

3030
```bash
31-
confluent-hub install confluentinc/kafka-connect-datagen:0.3.2
31+
confluent-hub install confluentinc/kafka-connect-datagen:0.4.0
3232
```
3333

3434
or to install the latest released version:
@@ -40,12 +40,12 @@ confluent-hub install confluentinc/kafka-connect-datagen:latest
4040
### Build connector from latest code
4141

4242
Alternatively, you may build and install the `kafka-connect-datagen` connector from latest code.
43-
Here we use `v0.3.2` to reference the git tag for the `0.3.2` version, but the same pattern works for all released versions.
43+
Here we use `v0.4.0` to reference the git tag for the `0.4.0` version, but the same pattern works for all released versions.
4444

4545
```bash
46-
git checkout v0.3.2
46+
git checkout v0.4.0
4747
mvn clean package
48-
confluent-hub install target/components/packages/confluentinc-kafka-connect-datagen-0.3.2.zip
48+
confluent-hub install target/components/packages/confluentinc-kafka-connect-datagen-0.4.0.zip
4949
```
5050

5151
### Run connector in local install
@@ -70,7 +70,7 @@ You can create a Docker image packaged with the locally built source by running
7070
make build-docker-from-local CP_VERSION=5.5.0
7171
```
7272

73-
This will build the connector from source and create a local image with an aggregate version number. The aggregate version number is the kafka-connect-datagen connector version number and the Confluent Platform version number separated with a `-`. The local kafka-connect-datagen version number is defined in the `pom.xml` file, and the Confluent Platform version defined in the [Makefile](Makfile). An example of the aggregate version number might be: `0.3.2-5.5.0`.
73+
This will build the connector from source and create a local image with an aggregate version number. The aggregate version number is the kafka-connect-datagen connector version number and the Confluent Platform version number separated with a `-`. The local kafka-connect-datagen version number is defined in the `pom.xml` file, and the Confluent Platform version defined in the [Makefile](Makfile). An example of the aggregate version number might be: `0.4.0-6.0.0`.
7474

7575
Alternatively, you can install the `kafka-connect-datagen` connector from [Confluent Hub](https://www.confluent.io/connector/kafka-connect-datagen/) into a Docker image by running:
7676
```bash
@@ -80,9 +80,9 @@ make build-docker-from-released CP_VERSION=5.5.0
8080
The [Makefile](Makefile) contains some default variables that affect the version numbers of both the installed `kafka-connect-datagen` as well as the base Confluent Platform version. The variables are located near the top of the [Makefile](Makefile) with the following names and current default values:
8181

8282
```bash
83-
CP_VERSION ?= 5.5.0
83+
CP_VERSION ?= 6.0.0
8484

85-
KAFKA_CONNECT_DATAGEN_VERSION ?= 0.3.2
85+
KAFKA_CONNECT_DATAGEN_VERSION ?= 0.4.0
8686
```
8787
These values can be overriden with variable declarations before the `make` command. For example:
8888

@@ -247,8 +247,8 @@ To release new versions of the Docker images to Dockerhub (https://hub.docker.co
247247
The [Makefile](Makefile) contains some default variables that affect the version numbers of both the installed `kafka-connect-datagen` as well as the base Confluent Platform version. The variables are located near the top of the [Makefile](Makefile) with the following names and current default values:
248248

249249
```bash
250-
CP_VERSION ?= 5.5.0
251-
KAFKA_CONNECT_DATAGEN_VERSION ?= 0.3.2
250+
CP_VERSION ?= 6.0.0
251+
KAFKA_CONNECT_DATAGEN_VERSION ?= 0.4.0
252252
OPERATOR_VERSION ?= 0 # Operator is a 'rev' version appended at the end of the CP version, like so: 5.5.0.0
253253
```
254254

0 commit comments

Comments
 (0)