Skip to content

Commit

Permalink
build: bump to 0.2.10 (#142)
Browse files Browse the repository at this point in the history
  • Loading branch information
fraidev authored Aug 7, 2024
1 parent 3fb9915 commit e38602a
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -34,7 +34,7 @@ http:
| method | POST | String | POST, PUT |
| endpoint | - | String | HTTP URL endpoint |
| headers | - | Array\<String\> | 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 |

Expand All @@ -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
Expand Down Expand Up @@ -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
Expand Down Expand Up @@ -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:
Expand Down
2 changes: 1 addition & 1 deletion crates/http-sink/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "http-sink"
version = "0.2.9"
version = "0.2.10"
authors = ["Fluvio Contributors <[email protected]>"]
description = "Connector that reads data from a topic and sends to external HTTP webhook"
edition = "2021"
Expand Down
2 changes: 1 addition & 1 deletion crates/http-sink/Connector.toml
Original file line number Diff line number Diff line change
@@ -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"
Expand Down

0 comments on commit e38602a

Please sign in to comment.