Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ running [Faasm](https://github.com/faasm/faasm) cluster.
To install `faasmctl` you need a working `pip` (virtual-)environment. Then:

```bash
pip install faasmctl==0.48.0
pip install faasmctl==0.49.0
```

## Usage
Expand Down
2 changes: 1 addition & 1 deletion faasmctl/bin/gen_proto_files.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
# able to run this file in standalone mode, as if the proto files are not
# generated, some imports in `faasmctl` will fail
GEN_PROTO_DIR = join(FAASMCTL_ROOT, "util", "gen_proto")
FAASM_CLI_IMAGE = "faasm.azurecr.io/cli"
FAASM_CLI_IMAGE = "ghcr.io/faasm/cli"

PROTO_FILES = [
"faabric_pb2.py",
Expand Down
4 changes: 2 additions & 2 deletions faasmctl/util/faasm.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
from os import environ

FAASM_VERSION = "0.27.0"
FAASM_VERSION = "0.29.0"


def get_version():
Expand All @@ -21,5 +21,5 @@ def get_version():


# Define this constants after the above method to be able to use it
FAASM_DOCKER_REGISTRY = "faasm.azurecr.io"
FAASM_DOCKER_REGISTRY = "ghcr.io/faasm"
FAASM_CLI_IMAGE = "{}/cli:{}".format(FAASM_DOCKER_REGISTRY, get_version())
2 changes: 1 addition & 1 deletion faasmctl/util/version.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FAASMCTL_VERSION = "0.48.0"
FAASMCTL_VERSION = "0.49.0"


def get_version():
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"

[project]
name = "faasmctl"
version = "0.48.0"
version = "0.49.0"
authors = [
{ name="Faasm Team", email="foo@bar.com" },
]
Expand Down