Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/main into docs
Browse files Browse the repository at this point in the history
  • Loading branch information
Fluvio Authors committed Oct 11, 2024
2 parents 40760f6 + 53ee177 commit 922e7a8
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 9 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -165,7 +165,7 @@ jobs:
path: dist
merge-multiple: true

- uses: pypa/gh-action-pypi-publish@v1.9.0
- uses: pypa/gh-action-pypi-publish@v1.10.0
with:
user: __token__
password: ${{ secrets.PYPI_ACCESS_TOKEN }}
Expand Down
15 changes: 9 additions & 6 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "_fluvio_python"
version = "0.16.3"
version = "0.16.4"
edition = "2021"
authors = ["Fluvio Contributors <[email protected]>"]

Expand All @@ -18,7 +18,7 @@ async-h1 = "2.3.3"
async-lock = "3.3.0"
async-std = "1.6.5"
aws-lc-rs = { version = "1", features = ["bindgen"] }
cc = "=1.1.12"
cc = "=1.1.15"
dirs = "5.0.1"
futures = "0.3.30"
hex = "0.4.2"
Expand All @@ -38,7 +38,10 @@ url = "2.5.0"
webbrowser = "1.0.0"

fluvio-future = { version = "0.7.0", features = ["task", "io", "native_tls", "subscriber"] }
fluvio = { features = ["admin", "rustls"], git = "https://github.com/infinyon/fluvio.git", tag = "v0.11.11" }
fluvio-types = { git = "https://github.com/infinyon/fluvio.git", tag = "v0.11.11" }
fluvio-sc-schema = { git = "https://github.com/infinyon/fluvio.git", tag = "v0.11.11" }
fluvio-controlplane-metadata = { git = "https://github.com/infinyon/fluvio.git", tag = "v0.11.11" }
fluvio = { features = ["admin", "rustls"], git = "https://github.com/infinyon/fluvio.git", tag = "v0.12.0" }
fluvio-types = { git = "https://github.com/infinyon/fluvio.git", tag = "v0.12.0" }
fluvio-sc-schema = { git = "https://github.com/infinyon/fluvio.git", tag = "v0.12.0" }
fluvio-controlplane-metadata = { git = "https://github.com/infinyon/fluvio.git", tag = "v0.12.0" }

# transitive version selection
parking_lot = "0.12.3"
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,13 +30,14 @@ from fluvio import Fluvio
fluvio = Fluvio.connect()
producer = fluvio.topic_producer('my-topic')
producer.send_string("FOOBAR")
producer.flush()
```

## Consumer
```python
from fluvio import (Fluvio, Offset)
fluvio = Fluvio.connect()
consumer = fluvio.partition_consumer('my-topic-while', 0)
consumer = fluvio.partition_consumer('my-topic', 0)
stream = consumer.stream(Offset.beginning())

for i in stream:
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

setup(
name="fluvio",
version="0.16.3",
version="0.16.4",
long_description=open("README.md").read(),
long_description_content_type="text/markdown",
author="Fluvio Contributors",
Expand Down

0 comments on commit 922e7a8

Please sign in to comment.