Skip to content

Commit 9adb5d0

Browse files
authored
Merge branch 'master' into use-embed_migration
2 parents 0cd4aa6 + dc9b487 commit 9adb5d0

File tree

28 files changed

+58
-56
lines changed

28 files changed

+58
-56
lines changed

.github/workflows/ci.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
- name: Check out
1010
uses: actions/checkout@v3
1111
- name: Setup pnpm
12-
uses: pnpm/action-setup@v2.2.4
12+
uses: pnpm/action-setup@v4
1313
with:
1414
version: 9.0.6
1515
run_install: |
@@ -39,7 +39,7 @@ jobs:
3939
- name: Check Formatting
4040
run: cargo fmt -- --check
4141
- name: Setup pnpm
42-
uses: pnpm/action-setup@v2.2.4
42+
uses: pnpm/action-setup@v4
4343
with:
4444
version: 9.0.6
4545
run_install: |
@@ -109,7 +109,7 @@ jobs:
109109
- name: Check out
110110
uses: actions/checkout@v3
111111
- name: Setup pnpm
112-
uses: pnpm/action-setup@v2.2.4
112+
uses: pnpm/action-setup@v4
113113
with:
114114
version: 9.0.6
115115
run_install: |

Cargo.lock

Lines changed: 22 additions & 22 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

README.md

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -76,17 +76,19 @@ There are already a number of existing streaming engines out there, including [A
7676
You can get started with a single node Arroyo cluster by running the following docker command:
7777

7878
```
79-
$ docker run -p 8000:8000 ghcr.io/arroyosystems/arroyo-single:latest
79+
$ docker run -p 5115:5115 ghcr.io/arroyosystems/arroyo:latest
8080
```
8181

82-
or if you have Cargo installed, you can use the `arroyo` cli:
82+
or you can download a binary for your platform from the [releases page](https://github.com/ArroyoSystems/arroyo/releases).
83+
84+
For example, for MacOS:
8385

8486
```
85-
$ cargo install arroyo
86-
$ arroyo start
87+
$ curl https://github.com/ArroyoSystems/arroyo/releases/download/v0.11.0/arroyo-macos-m1 -Lo arroyo && chmod +x arroyo
88+
$ ./arroyo cluster
8789
```
8890

89-
Then, load the Web UI at http://localhost:8000.
91+
Then, load the Web UI at http://localhost:5115.
9092

9193
For a more in-depth guide, see the [getting started guide](https://doc.arroyo.dev/getting-started).
9294

crates/arroyo-api/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "arroyo-api"
3-
version = "0.11.0-dev"
3+
version = "0.12.0-dev"
44
edition = "2021"
55
license = "MIT OR Apache-2.0"
66

crates/arroyo-compiler-service/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "arroyo-compiler-service"
3-
version = "0.11.0-dev"
3+
version = "0.12.0-dev"
44
edition = "2021"
55

66
[dependencies]

crates/arroyo-connectors/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "arroyo-connectors"
3-
version = "0.11.0-dev"
3+
version = "0.12.0-dev"
44
edition = "2021"
55

66
[features]

crates/arroyo-controller/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "arroyo-controller"
3-
version = "0.11.0-dev"
3+
version = "0.12.0-dev"
44
edition = "2021"
55

66
[features]

crates/arroyo-datastream/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "arroyo-datastream"
3-
version = "0.11.0-dev"
3+
version = "0.12.0-dev"
44
edition = "2021"
55

66

crates/arroyo-formats/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "arroyo-formats"
3-
version = "0.11.0-dev"
3+
version = "0.12.0-dev"
44
edition = "2021"
55

66
[dependencies]

crates/arroyo-metrics/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "arroyo-metrics"
3-
version = "0.11.0-dev"
3+
version = "0.12.0-dev"
44
edition = "2021"
55

66
[dependencies]

0 commit comments

Comments
 (0)