Skip to content

Commit 6b1ec3d

Browse files
committed
v0.3-1
1 parent f37c509 commit 6b1ec3d

File tree

3 files changed

+19
-3
lines changed

3 files changed

+19
-3
lines changed

NEWS.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Version UNRELEASED
1+
# Version 0.3
22

33
* Default for imagedir changed from `./images` to `/var/lib/machines` (#25)
44
* Added a `tmpfs` configuration, both global and per-image, to use `tmpfs`

fedora/SPECS/moncic-ci.spec

Lines changed: 17 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55

66
Name: moncic-ci
7-
Version: 0.2
7+
Version: 0.3
88
Release: %{releaseno}%{dist}
99
Summary: Continuous integration tool and development helper
1010

@@ -59,6 +59,22 @@ as you would run it on your normal system, keeping iteration lags low.
5959
%{python3_sitelib}/moncic*
6060

6161
%changelog
62+
* Thu Apr 28 2022 Daniele Branchini <dbranchini@arpa.emr.it> - 0.3-1
63+
- Default for imagedir changed from `./images` to `/var/lib/machines` (#25)
64+
- Added a `tmpfs` configuration, both global and per-image, to use `tmpfs`
65+
backing for ephemeral images instead of btrfs snapshots. If the machine is
66+
configured with enough ram and swap, it makes for faster CI runs (#27)
67+
- Support non-btrfs image storage, by forcing ephemeral images to use `tmpfs`
68+
backing instead of btrfs snapshots
69+
- Add `-C`/`--config` option to specify a config file from command line (#34)
70+
- Made non-ephemeral containers transactional on BTRFS: updates are run on a
71+
snapshot of the OS image, which is swapped with the original if the operation
72+
succeeds, or removed without changing the original if it fails (#29)
73+
- Run containers with `--suppress-sync=yes` on systemd >= 250 (#28)
74+
- Run commands in container with /dev/null redirectd to stdin, instead of stdin
75+
being a closed file descriptor (#37)
76+
- Fixed selection of build-dep command in ARPA-style builds (#38)
77+
6278
* Thu Mar 24 2022 Daniele Branchini <dbranchini@arpa.emr.it> - 0.2-1
6379
- Implemented simple deduplication of files with the same name and size across
6480
OS images. (#19)

monci

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import sys
66
from moncic.cli import run
77
from moncic.ci import CI, Bootstrap, Shell, Update, Remove, Images, Distros, Run, Dedup
88

9-
VERSION = "0.2"
9+
VERSION = "0.3"
1010

1111
log = logging.getLogger(__name__)
1212

0 commit comments

Comments
 (0)