Skip to content

Commit 95a31fa

Browse files
committed
Release v0.0.4
1 parent 5c4b957 commit 95a31fa

11 files changed

Lines changed: 19 additions & 19 deletions

File tree

Doxyfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ PROJECT_NAME = "SCION-CPP"
4848
# could be handy for archiving the generated documentation or if some version
4949
# control system is used.
5050

51-
PROJECT_NUMBER = "0.0.3"
51+
PROJECT_NUMBER = "0.0.4"
5252

5353
# Using the PROJECT_BRIEF tag one can provide an optional one line description
5454
# for a project that appears at the top of each page and should give viewer a

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ BUILD_DIR := $(SRC_ROOT)/build
77
PKG_DIR := $(SRC_ROOT)/out
88
PYTHONPATH := $(PYTHONPATH):$(SRC_ROOT)/python
99

10-
DOCKER_TAG := 0.0.3
10+
DOCKER_TAG := 0.0.4
1111
HOST_UID := $(shell id -u):$(shell id -g)
1212

1313
TEST_DATA=$(addsuffix .bin,$(basename $(shell find tests scitra/tests -name '*.py')))

cmake/version.cmake

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,16 @@
11
# Set version numbers
22

3-
set(PROJECT_VERSION 0.0.3)
3+
set(PROJECT_VERSION 0.0.4)
44

5-
set(SCION_CPP_VERSION 0.0.3)
5+
set(SCION_CPP_VERSION 0.0.4)
66
set(SCION_CPP_SO_VERSION 0)
77

8-
set(SCION_C_VERSION 0.0.3)
8+
set(SCION_C_VERSION 0.0.4)
99
set(SCION_C_SO_VERSION 0)
1010

11-
set(INTERPOSER_VERSION 0.0.3)
11+
set(INTERPOSER_VERSION 0.0.4)
1212
set(INTERPOSER_SO_VERSION 0)
1313

14-
set(SCITRA_TUN_VERSION 0.0.3)
14+
set(SCITRA_TUN_VERSION 0.0.4)
1515

16-
set(SCION2IP_VERSION 0.0.3)
16+
set(SCION2IP_VERSION 0.0.4)

docker/scitra-tun/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@ without requiring dependencies on the host except for Docker and the SCION Daemo
66

77
Building the image require the scitra-tun Debian packages in the build context:
88
```bash
9-
cp ../../out/scion++-tools_0.0.3-1_amd64.deb ./scitra-tun
10-
cp ../../out/scitra-tun_0.0.3-1_amd64.deb ./scitra-tun
9+
cp ../../out/scion++-tools_0.0.4-1_amd64.deb ./scitra-tun
10+
cp ../../out/scitra-tun_0.0.4-1_amd64.deb ./scitra-tun
1111
docker compose build
1212
```
1313

docker/scitra-tun/scitra-tun/Dockerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@ FROM ubuntu:24.04
55
RUN apt-get update && apt-get -y upgrade
66

77
# Install deb package but ignore daemon dependency
8-
COPY scion++-tools_0.0.3-1_amd64.deb /
9-
COPY scitra-tun_0.0.3-1_amd64.deb /
10-
RUN apt-get install -y /scion++-tools_0.0.3-1_amd64.deb /scitra-tun_0.0.3-1_amd64.deb
8+
COPY scion++-tools_0.0.4-1_amd64.deb /
9+
COPY scitra-tun_0.0.4-1_amd64.deb /
10+
RUN apt-get install -y /scion++-tools_0.0.4-1_amd64.deb /scitra-tun_0.0.4-1_amd64.deb
1111

1212
ENTRYPOINT ["scitra-tun"]
1313
CMD ["lo", "127.0.0.1"]

interposer/man/scion-interposer.7.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
% scion-interposer(7) Version 0.0.3 | SCION++ Manual
1+
% scion-interposer(7) Version 0.0.4 | SCION++ Manual
22

33
## NAME ##
44

scitra/man/scitra-policy.json.5.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
% scitra-policy.json(5) Version 0.0.3 | Scitra Manual
1+
% scitra-policy.json(5) Version 0.0.4 | Scitra Manual
22

33
## NAME ##
44

scitra/man/scitra-tun.8.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
% scitra-tun(8) Version 0.0.3 | Scitra Manual
1+
% scitra-tun(8) Version 0.0.4 | Scitra Manual
22

33
## NAME ##
44

scitra/tools/scion2ip/man/scion2ip.1.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
% scion2ip(1) Version 0.0.3 | Scitra Manual
1+
% scion2ip(1) Version 0.0.4 | Scitra Manual
22

33
## NAME ##
44

src/path/policy.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -511,7 +511,7 @@ void PolicySet::parse(const boost::json::value& data)
511511
auto failover = raw->as_string();
512512
if (failover == "default") {
513513
nextPolicy = POLICY_INDEX_DEFAULT;
514-
} if (auto i = policyNames.find(failover); i != policyNames.end()) {
514+
} else if (auto i = policyNames.find(failover); i != policyNames.end()) {
515515
nextPolicy = i->second;
516516
} else {
517517
throw ParserError(std::format(

0 commit comments

Comments
 (0)