From e38602a63973d54e377ffbe1c24863ab6dc17492 Mon Sep 17 00:00:00 2001 From: Felipe Cardozo Date: Wed, 7 Aug 2024 16:02:04 -0300 Subject: [PATCH] build: bump to 0.2.10 (#142) --- README.md | 10 +++++----- crates/http-sink/Cargo.toml | 2 +- crates/http-sink/Connector.toml | 2 +- 3 files changed, 7 insertions(+), 7 deletions(-) diff --git a/README.md b/README.md index d7d89ec..41d1776 100644 --- a/README.md +++ b/README.md @@ -16,7 +16,7 @@ HTTP Sink is configured using a YAML file: # config-example.yaml apiVersion: 0.1.0 meta: - version: 0.2.9 + version: 0.2.10 name: my-http-sink type: http-sink topic: http-sink-topic @@ -34,7 +34,7 @@ http: | method | POST | String | POST, PUT | | endpoint | - | String | HTTP URL endpoint | | headers | - | Array\ | Request header(s) "Key:Value" pairs | -| user-agent | `fluvio/http-sink 0.2.9` | String | Request user-agent | +| user-agent | `fluvio/http-sink 0.2.10` | String | Request user-agent | | http_request_timeout | 1s | String | HTTP Request Timeout | | http_connect_timeout | 15s | String | HTTP Connect Timeout | @@ -57,7 +57,7 @@ HTTP request to `http://httpbin.org/post`. # config.yaml apiVersion: 0.1.0 meta: - version: 0.2.9 + version: 0.2.10 name: httpbin type: http-sink topic: httpbin-send-post @@ -133,7 +133,7 @@ The previous example can be extended to add extra transformations to outgoing re # config-example.yaml apiVersion: 0.1.0 meta: - version: 0.2.9 + version: 0.2.10 name: my-http-sink type: http-sink topic: http-sink-topic @@ -165,7 +165,7 @@ See the example below: ```yaml apiVersion: 0.2.0 meta: - version: 0.2.9 + version: 0.2.10 name: my-http-sink type: http-sink topic: diff --git a/crates/http-sink/Cargo.toml b/crates/http-sink/Cargo.toml index 121f8cf..4380ea0 100644 --- a/crates/http-sink/Cargo.toml +++ b/crates/http-sink/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "http-sink" -version = "0.2.9" +version = "0.2.10" authors = ["Fluvio Contributors "] description = "Connector that reads data from a topic and sends to external HTTP webhook" edition = "2021" diff --git a/crates/http-sink/Connector.toml b/crates/http-sink/Connector.toml index e939ee4..a6dbd19 100644 --- a/crates/http-sink/Connector.toml +++ b/crates/http-sink/Connector.toml @@ -1,7 +1,7 @@ [package] name = "http-sink" group = "infinyon" -version = "0.2.9" +version = "0.2.10" apiVersion = "0.1.0" fluvio = "0.11.11" description = "HTTP sink connector reads records from data streaming and generates an HTTP request"