Skip to content

Commit 1cde092

Browse files
author
Tim Bruijnzeels
committed
Prepare for release 0.7.4 'Multipass'
1 parent f89976c commit 1cde092

File tree

5 files changed

+14
-4
lines changed

5 files changed

+14
-4
lines changed

Cargo.lock

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
# Note: some of these values are also used when building Debian packages below.
33
name = "krill"
4-
version = "0.7.3-plus"
4+
version = "0.7.4"
55
edition = "2018"
66
authors = [ "The NLnet Labs RPKI team <[email protected]>" ]
77
description = "Resource Public Key Infrastructure (RPKI) daemon"

Changelog.md

+10
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,16 @@
33
Please see [here](https://github.com/NLnetLabs/krill/projects?query=is%3Aopen+sort%3Aname-asc)
44
for planned releases.
55

6+
## 0.7.4 'Multipass!'
7+
8+
There is no need to upgrade to this version. It was created only so that you can continue
9+
to compile Krill locally using the latest Rust compiler.
10+
11+
As it turns out the use of many asynchronous calls, the cool stuff which make Krill thread safe,
12+
cause the compiler to do quite a bit of work in a process called 'Monomorphization'. The latest
13+
compiler version will go on strike as a result, unless we instruct it beforehand that more work
14+
is coming its way.
15+
616
## 0.7.3 'Slow Food'
717

818
This release fixes an issue where the BGP Ris Dump files were reloaded and checked too

doc/openapi.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
openapi: "3.0.2"
22
info:
33
title: Krill RPKI Server API
4-
version: 0.7.3
4+
version: 0.7.4
55
description: |
66
# Introduction
77
Welcome to the documentation for the Krill server API, a JSON based

src/constants.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
pub const KRILL_VERSION: &str = "0.7.3-plus";
1+
pub const KRILL_VERSION: &str = "0.7.4";
22
pub const KRILL_SERVER_APP: &str = "Krill";
33
pub const KRILL_CLIENT_APP: &str = "Krill Client";
44

0 commit comments

Comments
 (0)