Skip to content

Commit 782e639

Browse files
committed
v0.7-1
1 parent 9926472 commit 782e639

File tree

3 files changed

+20
-3
lines changed

3 files changed

+20
-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.7
22

33
* Removed support for a btrfs filesystem in a file (#41)
44
* Prototype `Builder` for building Debian packages (#47)

fedora/SPECS/moncic-ci.spec

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

55

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

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

6262
%changelog
63+
* Fri Sep 2 2022 Daniele Branchini <dbranchini@arpae.it> - 0.7-1
64+
- Removed support for a btrfs filesystem in a file (#41)
65+
- Prototype `Builder` for building Debian packages (#47)
66+
- Added option `--bind-volatile`, working as `--bind-ro` plus a temporary
67+
writable overlay (#50)
68+
- Added option `--workdir-volatile` working as `--workdir` but with a volatile
69+
mount (#50)
70+
- Use volatile mounts for CI (#51)
71+
- Added config option `build_artifacts_dir` and command line option `monci ci
72+
--artifacts` to collect build artifacts in a directory (#10)
73+
- Added option `debcachedir` to point to a directory where downloaded `.deb`
74+
files can be cached across container runs (#52)
75+
- Added option `extra_packages_dir` and `--extra-packages-dir` to provide extra
76+
packages as dependencies for builds (#49)
77+
- Added `echo 7 > /etc/yum/vars/releasever` to Centos7 bootstrap
78+
- Added `monci ci --shell` to open a shell in the container after the build
79+
6380
* Fri Jun 3 2022 Daniele Branchini <dbranchini@arpae.it> - 0.6-1
6481
- Fixed network issues with systemd-resolved based images (Fedora 36)
6582

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.6"
9+
VERSION = "0.7"
1010

1111
log = logging.getLogger(__name__)
1212

0 commit comments

Comments
 (0)