Skip to content

Commit c9a848b

Browse files
authored
v0.3.1 (#140)
1 parent 320dd2c commit c9a848b

File tree

5 files changed

+10
-5
lines changed

5 files changed

+10
-5
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
# Contest Server Changelog
22

3+
#### 0.3.1
4+
5+
- the generated example configuration now uses globs instead of regular
6+
expressions
7+
38
#### 0.3.0
49

510
- The new "quit" command ends the server remotely. This is useful if the

Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "contest"
33
description = "server component for the continuous testing framework"
4-
version = "0.3.0"
4+
version = "0.3.1"
55
authors = ["Kevin Goslar <kevin.goslar@gmail.com>"]
66
edition = "2024"
77

RELEASE.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,12 @@
22

33
- in a branch:
44
- update [CHANGELOG.md](CHANGELOG.md)
5-
- update all occurrences of `0.3.0`
5+
- update all occurrences of `0.3.1`
66
- ship into `main`
77
- create a new tag:
88

99
```bash
10-
git tag v0.3.0 && git push --tags
10+
git tag v0.3.1 && git push --tags
1111
```
1212

1313
- the CI server creates a draft release - review and publish it

features/commands/version.feature

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ Feature: display the installed version
44
When I run "contest <ARG>"
55
Then it exits with this output
66
"""
7-
contest 0.3.0
7+
contest 0.3.1
88
"""
99

1010
Examples:

0 commit comments

Comments
 (0)