Skip to content

Commit

Permalink
Merge branch 'main' into production
Browse files Browse the repository at this point in the history
  • Loading branch information
maxmouchet committed Jan 6, 2024
2 parents dec2ba8 + 9be8aee commit f560570
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 1.1.2
current_version = 1.1.3
commit = True
tag = True
message = release(project): {current_version} → {new_version}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
run: docker compose up -d -t 0 traefik clickhouse minio postgres redis
- name: Install caracal
run: |
sudo curl -L -o /usr/bin/caracal https://github.com/dioptra-io/caracal/releases/download/v0.15.1/caracal-linux-amd64
sudo curl -L -o /usr/bin/caracal https://github.com/dioptra-io/caracal/releases/download/v0.15.3/caracal-linux-amd64
sudo chmod +x /usr/bin/caracal
- name: Install package
run: poetry install
Expand Down
2 changes: 1 addition & 1 deletion dockerfiles/iris-agent.dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ RUN apt-get update \
zstd \
&& rm -rf /var/lib/apt/lists/*

RUN curl -L https://github.com/dioptra-io/caracal/releases/download/v0.15.2/caracal-linux-amd64 > /usr/bin/caracal \
RUN curl -L https://github.com/dioptra-io/caracal/releases/download/v0.15.3/caracal-linux-amd64 > /usr/bin/caracal \
&& chmod +x /usr/bin/caracal

WORKDIR /app
Expand Down
2 changes: 1 addition & 1 deletion docs/dev.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ To be able to access them from your own machine, you need to add the following e
You also need caracal in your $PATH if you intend to run Iris locally:
```bash
# Use caracal-macos-amd64 for macOS
curl -L https://github.com/dioptra-io/caracal/releases/download/v0.15.2/caracal-linux-amd64 > /usr/bin/caracal
curl -L https://github.com/dioptra-io/caracal/releases/download/v0.15.3/caracal-linux-amd64 > /usr/bin/caracal
chmod +x /usr/bin/caracal
```

Expand Down
2 changes: 1 addition & 1 deletion iris/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "1.1.2"
__version__ = "1.1.3"
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "iris"
version = "1.1.2"
version = "1.1.3"
description = "Resilient Internet-scale measurement system."
license = "MIT"
authors = [
Expand Down

0 comments on commit f560570

Please sign in to comment.