Skip to content

Commit f824c2f

Browse files
committed
release v0.25.0
Signed-off-by: Luminita Voicu <[email protected]>
1 parent 677d5bf commit f824c2f

File tree

7 files changed

+22
-8
lines changed

7 files changed

+22
-8
lines changed

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Changelog
22

3-
## [Unreleased]
3+
## [0.25.0]
44

55
### Added
66

CREDITS.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ Contributors to the Firecracker repository:
1919

2020
* Aaron Hill <[email protected]>
2121
* Abhijeet Kasurde <[email protected]>
22+
* Adam Leskis <[email protected]>
2223
* Adrian Catangiu <[email protected]>
2324
* Ahmed Abouzied <[email protected]>
2425
* Alakesh <[email protected]>
@@ -40,11 +41,14 @@ Contributors to the Firecracker repository:
4041
* Arunav Sanyal <[email protected]>
4142
* Atsushi Ishibashi <[email protected]>
4243
* Aussie Schnore <[email protected]>
44+
* Ayato Tokubi <[email protected]>
4345
* Babis Chalios <[email protected]>
46+
* Bartosz Zbytniewski <[email protected]>
4447
* Begley Brothers Inc <[email protected]>
4548
* Benjamin Fry <[email protected]>
4649
* Liviu Berciu <[email protected]>
4750
* bin liu <[email protected]>
51+
* binoychitale <[email protected]>
4852
* Bob Potter <[email protected]>
4953
* Bogdan Ionita <[email protected]>
5054
* Caleb Albers <[email protected]>
@@ -64,6 +68,8 @@ Contributors to the Firecracker repository:
6468
* Denis Andrejew <[email protected]>
6569
* Diana Popa <[email protected]>
6670
* Dmitrii <[email protected]>
71+
* Eduard Kyvenko <[email protected]>
72+
6773
* Filippo Sironi <[email protected]>
6874
* Fraser Pringle <[email protected]>
6975
* Gabe Jackson <[email protected]>
@@ -72,6 +78,7 @@ Contributors to the Firecracker repository:
7278
* George Pisaltu <[email protected]>
7379
* german gomez <[email protected]>
7480
* Greg Dunn <[email protected]>
81+
* Gregory Brzeski <[email protected]>
7582
* Gulshan Kumar <[email protected]>
7683
* Gábor Lipták <[email protected]>
7784
* hacker65536 <[email protected]>
@@ -86,6 +93,7 @@ Contributors to the Firecracker repository:
8693
* James Turnbull <[email protected]>
8794
* Javier Romero <[email protected]>
8895
* Jerome Gravel-Niquet <[email protected]>
96+
* Joel Winarske <[email protected]>
8997
* jonas serrano <[email protected]>
9098
* Josh Abraham <[email protected]>
9199
* Josh McConnell <[email protected]>
@@ -116,6 +124,7 @@ Contributors to the Firecracker repository:
116124
* Michael Saah <[email protected]>
117125
* Mihai Stan <[email protected]>
118126
* moricho <[email protected]>
127+
* Narek Galstyan <[email protected]>
119128
* Nathan Hoang <[email protected]>
120129
* Nathan Sizemore <[email protected]>
121130
* Nicolas Mesa <[email protected]>
@@ -131,6 +140,7 @@ Contributors to the Firecracker repository:
131140
* Radu Matei Lăcraru <[email protected]>
132141
* Radu Weiss <[email protected]>
133142
* Ram Sripracha <[email protected]>
143+
134144
* Rob Devereux <[email protected]>
135145
* Robert Grimes <[email protected]>
136146
* Rodrigue Chakode <[email protected]>
@@ -152,15 +162,19 @@ Contributors to the Firecracker repository:
152162
* Tim Bannister <[email protected]>
153163
* Tim Deegan <[email protected]>
154164
* timvisee <[email protected]>
165+
* Tobias Pfandzelter <[email protected]>
155166
* Tyler Anton <[email protected]>
156167
* Urvil Patel <[email protected]>
157168
* Wei Yang <[email protected]>
158169
* Weixiao Huang <[email protected]>
159170
* Wesley Norris <[email protected]>
171+
* William Hammond <[email protected]>
160172
161173
162174
* xiekeyang <[email protected]>
175+
* Yichen Zhang <[email protected]>
163176
164177
* Yuval Kohavi <[email protected]>
178+
* Yılmaz ŞEN <[email protected]>
165179
* Zi Shen Lim <[email protected]>
166180
* Дамјан Георгиевски <[email protected]>

Cargo.lock

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

src/api_server/swagger/firecracker.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ info:
55
The API is accessible through HTTP calls on specific URLs
66
carrying JSON modeled data.
77
The transport medium is a Unix Domain Socket.
8-
version: 0.24.0
8+
version: 0.25.0
99
termsOfService: ""
1010
contact:
1111

src/firecracker/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "firecracker"
3-
version = "0.24.0"
3+
version = "0.25.0"
44
authors = ["Amazon Firecracker team <[email protected]>"]
55
edition = "2018"
66
build = "../../build.rs"

src/jailer/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "jailer"
3-
version = "0.24.0"
3+
version = "0.25.0"
44
authors = ["Amazon Firecracker team <[email protected]>"]
55
edition = "2018"
66
build = "../../build.rs"

src/seccompiler/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "seccompiler"
3-
version = "0.24.0"
3+
version = "0.25.0"
44
authors = ["Amazon Firecracker team <[email protected]>"]
55
edition = "2018"
66
description = "Program that compiles multi-threaded seccomp-bpf filters expressed as JSON into raw BPF programs, serializing them and outputting them to a file."

0 commit comments

Comments
 (0)