Skip to content

Commit

Permalink
v0.2.1
Browse files Browse the repository at this point in the history
  • Loading branch information
edomora97 committed Dec 21, 2019
1 parent 5676424 commit 06f30ff
Show file tree
Hide file tree
Showing 12 changed files with 63 additions and 48 deletions.
54 changes: 27 additions & 27 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ members = ["task-maker-*"]

[package]
name = "task-maker-rust"
version = "0.2.1"
version = "0.2.2"
description = "Tool for building tasks for informatics competitions, with support for cache, distributed computations and more"
readme = "README.md"
authors = ["Edoardo Morassutto <[email protected]>"]
Expand Down
2 changes: 1 addition & 1 deletion task-maker-cache/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "task-maker-cache"
version = "0.2.1"
version = "0.2.2"
authors = ["Edoardo Morassutto <[email protected]>"]
edition = "2018"

Expand Down
2 changes: 1 addition & 1 deletion task-maker-dag/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "task-maker-dag"
version = "0.2.1"
version = "0.2.2"
authors = ["Edoardo Morassutto <[email protected]>"]
edition = "2018"

Expand Down
2 changes: 1 addition & 1 deletion task-maker-exec/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "task-maker-exec"
version = "0.2.1"
version = "0.2.2"
authors = ["Edoardo Morassutto <[email protected]>"]
edition = "2018"

Expand Down
2 changes: 1 addition & 1 deletion task-maker-format/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "task-maker-format"
version = "0.2.1"
version = "0.2.2"
authors = ["Edoardo Morassutto <[email protected]>"]
edition = "2018"

Expand Down
2 changes: 1 addition & 1 deletion task-maker-lang/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "task-maker-lang"
version = "0.2.1"
version = "0.2.2"
authors = ["Edoardo Morassutto <[email protected]>"]
edition = "2018"

Expand Down
2 changes: 1 addition & 1 deletion task-maker-store/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "task-maker-store"
version = "0.2.1"
version = "0.2.2"
authors = ["Edoardo Morassutto <[email protected]>"]
edition = "2018"

Expand Down
2 changes: 1 addition & 1 deletion task-maker-test/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "task-maker-test"
version = "0.1.0"
version = "0.2.2"
authors = ["Edoardo Morassutto <[email protected]>"]
edition = "2018"
build = "build.rs"
Expand Down
24 changes: 12 additions & 12 deletions task-maker-test/task-maker-test-sandbox/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion task-maker-test/task-maker-test-sandbox/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "task-maker-test-sandbox"
version = "0.1.0"
version = "0.2.2"
authors = ["Edoardo Morassutto <[email protected]>"]
edition = "2018"

Expand Down
15 changes: 15 additions & 0 deletions tools/update_version.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
#!/usr/bin/env bash

ROOT="$(realpath "$( cd "$( dirname "${BASH_SOURCE[0]}" )" >/dev/null 2>&1 && pwd )/..")"

if [[ $# -ne 1 ]]; then
echo "Usage: $0 version" >&2
exit 1
fi

version=$1

IFS=$'\n' find "${ROOT}" -name Cargo.toml | while read -r f; do
echo "Update $f"
sed -i "s/^version =.*/version = \"${version}\"/" "$f"
done

0 comments on commit 06f30ff

Please sign in to comment.