Skip to content

Commit 2c175d0

Browse files
authored
Merge pull request #2278 from input-output-hk/sfa/2260/add_release_to_build_command_in_makefile
Restore `release` option for build in Makefile for `aggregator` …
2 parents 7cc55d9 + afe620f commit 2c175d0

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed

Cargo.lock

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

mithril-aggregator/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "mithril-aggregator"
3-
version = "0.6.27"
3+
version = "0.6.28"
44
description = "A Mithril Aggregator server"
55
authors = { workspace = true }
66
edition = { workspace = true }

mithril-aggregator/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ CARGO = cargo
55
all: test build
66

77
build:
8-
${CARGO} build
8+
${CARGO} build --release
99
cp ../target/release/mithril-aggregator .
1010

1111
run: build

mithril-client-cli/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "mithril-client-cli"
3-
version = "0.10.10"
3+
version = "0.10.11"
44
description = "A Mithril Client"
55
authors = { workspace = true }
66
edition = { workspace = true }

mithril-client-cli/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ CARGO = cargo
1010
all: test build
1111

1212
build:
13-
${CARGO} build
13+
${CARGO} build --release
1414
cp ../target/release/mithril-client .
1515

1616
run: build

0 commit comments

Comments
 (0)