summaryrefslogtreecommitdiff
path: root/bumper.md
diff options
context:
space:
mode:
Diffstat (limited to 'bumper.md')
-rw-r--r--bumper.md11
1 files changed, 11 insertions, 0 deletions
diff --git a/bumper.md b/bumper.md
index b4a269f..130e980 100644
--- a/bumper.md
+++ b/bumper.md
@@ -92,11 +92,14 @@ project. We use a Rust project for simplicity.
~~~scenario
given an installed Bumper
given file foo/Cargo.toml from Cargo.toml
+given file foo/debian/changelog from changelog
given all files in foo are committed to git
given the HEAD commit in foo is COMMIT
when I run, in foo, bumper 1.2.0
then in foo, git tag v1.2.0 is a signed tag pointing at <COMMIT>
then file foo/Cargo.toml matches regex /version\s*=\s*"1\.2\.0"/
+then file foo/debian/changelog matches regex / \(0\.1\.0-1\) /
+then file foo/debian/changelog matches regex / \(1\.2\.0-1\) /
~~~
~~~{#Cargo.toml .file .ini}
@@ -109,6 +112,14 @@ edition = "2018"
[dependencies]
~~~
+~~~{#changelog .file}
+dummy (0.1.0-1) unstable; urgency=low
+
+ * This is a debian/changelog file. Syntax is finicky.
+
+ -- Lars Wirzenius <liw@liw.fi> Tue, 30 Mar 2021 08:33:35 +0300
+~~~
+
---