Skip to content

Commit bc9e00a

Browse files
authored
DEVX-1736 Updates Makefile and Docs for 0.3.2 availability (#60)
1 parent ae8a94e commit bc9e00a

File tree

2 files changed

+10
-10
lines changed

2 files changed

+10
-10
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ check-dependency = $(if $(shell command -v $(1)),,$(error Make sure $(1) is inst
1111
CP_VERSION ?= 5.5.0
1212
OPERATOR_VERSION ?= 0
1313

14-
KAFKA_CONNECT_DATAGEN_VERSION ?= 0.3.1
14+
KAFKA_CONNECT_DATAGEN_VERSION ?= 0.3.2
1515
AGGREGATE_VERSION = $(KAFKA_CONNECT_DATAGEN_VERSION)-$(CP_VERSION)
1616
OPERATOR_AGGREGATE_VERSION = $(AGGREGATE_VERSION).$(OPERATOR_VERSION)
1717

README.md

Lines changed: 9 additions & 9 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.1` as an example, but you can substitute any of the other released versions.
17+
The instructions below use version `0.3.2` 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.1
31+
confluent-hub install confluentinc/kafka-connect-datagen:0.3.2
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.1` to reference the git tag for the `0.3.1` version, but the same pattern works for all released versions.
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.
4444

4545
```bash
46-
git checkout v0.3.1
46+
git checkout v0.3.2
4747
mvn clean package
48-
confluent-hub install target/components/packages/confluentinc-kafka-connect-datagen-0.3.1.zip
48+
confluent-hub install target/components/packages/confluentinc-kafka-connect-datagen-0.3.2.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.1-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.3.2-5.5.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
@@ -82,12 +82,12 @@ The [Makefile](Makefile) contains some default variables that affect the version
8282
```bash
8383
CP_VERSION ?= 5.5.0
8484

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

8989
```bash
90-
KAFKA_CONNECT_DATAGEN_VERSION=0.3.1 make build-docker-from-released
90+
KAFKA_CONNECT_DATAGEN_VERSION=0.3.2 make build-docker-from-released
9191
```
9292

9393
### Run connector in Docker Compose
@@ -235,7 +235,7 @@ The [Makefile](Makefile) contains some default variables that affect the version
235235

236236
```bash
237237
CP_VERSION ?= 5.5.0
238-
KAFKA_CONNECT_DATAGEN_VERSION ?= 0.3.1
238+
KAFKA_CONNECT_DATAGEN_VERSION ?= 0.3.2
239239
OPERATOR_VERSION ?= 0 # Operator is a 'rev' version appended at the end of the CP version, like so: 5.5.0.0
240240
```
241241

0 commit comments

Comments
 (0)