Skip to content

Commit 02e7714

Browse files
committed
Version 0.7.0.
1 parent d017711 commit 02e7714

File tree

3 files changed

+40
-40
lines changed

3 files changed

+40
-40
lines changed

CHANGELOG.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8-
## [Unreleased]
8+
## [0.7.0] - 2024-04-19
99
### High-Level
1010
This release was focused on two things: fixing performance regressions and
1111
adding a new standalone mode.
@@ -379,7 +379,7 @@ There were a lot of large changes in this release. At a high level:
379379
- A Rust test runner that uses the clustered job runner: `cargo-metest`.
380380
- A bunch of other library packages that are used internally.
381381

382-
[unreleased]: https://github.com/maelstrom-software/maelstrom/compare/v0.6.0...HEAD
382+
[0.7.0]: https://github.com/maelstrom-software/maelstrom/compare/v0.6.0...v0.7.0
383383
[0.6.0]: https://github.com/maelstrom-software/maelstrom/compare/v0.5.0...v0.6.0
384384
[0.5.0]: https://github.com/maelstrom-software/maelstrom/compare/v0.4.0...v0.5.0
385385
[0.4.0]: https://github.com/maelstrom-software/maelstrom/compare/v0.3.0...v0.4.0

Cargo.lock

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

Cargo.toml

Lines changed: 18 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ homepage = "https://maelstrom-software.com"
1515
license = "MIT OR Apache-2.0"
1616
repository = "https://github.com/maelstrom-software/maelstrom"
1717
rust-version = "1.77.1"
18-
version = "0.7.0-dev"
18+
version = "0.7.0"
1919

2020
[workspace.dependencies]
2121
anstyle = "1.0.6"
@@ -68,23 +68,23 @@ itertools = "0.10.5"
6868
lddtree = "0.3"
6969
libc = "0.2"
7070
lru = "0.12"
71-
maelstrom-base = { version = "0.7.0-dev", path = "crates/maelstrom-base" }
72-
maelstrom-broker = { version = "0.7.0-dev", path = "crates/maelstrom-broker" }
73-
maelstrom-client = { version = "0.7.0-dev", path = "crates/maelstrom-client" }
74-
maelstrom-client-base = { version = "0.7.0-dev", path = "crates/maelstrom-client-base" }
75-
maelstrom-client-process = { version = "0.7.0-dev", path = "crates/maelstrom-client-process" }
76-
maelstrom-container = { version = "0.7.0-dev", path = "crates/maelstrom-container" }
77-
maelstrom-fuse = { version = "0.7.0-dev", path = "crates/maelstrom-fuse" }
78-
maelstrom-layer-fs = { version = "0.7.0-dev", path = "crates/maelstrom-layer-fs" }
79-
maelstrom-linux = { version = "0.7.0-dev", path = "crates/maelstrom-linux" }
80-
maelstrom-macro = { version = "0.7.0-dev", path = "crates/maelstrom-macro" }
81-
maelstrom-plot = { version = "0.7.0-dev", path = "crates/maelstrom-plot" }
82-
maelstrom-simex = { version = "0.7.0-dev", path = "crates/maelstrom-simex" }
83-
maelstrom-test = { version = "0.7.0-dev", path = "crates/maelstrom-test" }
84-
maelstrom-util = { version = "0.7.0-dev", path = "crates/maelstrom-util" }
85-
maelstrom-web = { version = "0.7.0-dev", path = "crates/maelstrom-web" }
86-
maelstrom-worker = { version = "0.7.0-dev", path = "crates/maelstrom-worker" }
87-
maelstrom-worker-child = { version = "0.7.0-dev", path = "crates/maelstrom-worker-child" }
71+
maelstrom-base = { version = "0.7.0", path = "crates/maelstrom-base" }
72+
maelstrom-broker = { version = "0.7.0", path = "crates/maelstrom-broker" }
73+
maelstrom-client = { version = "0.7.0", path = "crates/maelstrom-client" }
74+
maelstrom-client-base = { version = "0.7.0", path = "crates/maelstrom-client-base" }
75+
maelstrom-client-process = { version = "0.7.0", path = "crates/maelstrom-client-process" }
76+
maelstrom-container = { version = "0.7.0", path = "crates/maelstrom-container" }
77+
maelstrom-fuse = { version = "0.7.0", path = "crates/maelstrom-fuse" }
78+
maelstrom-layer-fs = { version = "0.7.0", path = "crates/maelstrom-layer-fs" }
79+
maelstrom-linux = { version = "0.7.0", path = "crates/maelstrom-linux" }
80+
maelstrom-macro = { version = "0.7.0", path = "crates/maelstrom-macro" }
81+
maelstrom-plot = { version = "0.7.0", path = "crates/maelstrom-plot" }
82+
maelstrom-simex = { version = "0.7.0", path = "crates/maelstrom-simex" }
83+
maelstrom-test = { version = "0.7.0", path = "crates/maelstrom-test" }
84+
maelstrom-util = { version = "0.7.0", path = "crates/maelstrom-util" }
85+
maelstrom-web = { version = "0.7.0", path = "crates/maelstrom-web" }
86+
maelstrom-worker = { version = "0.7.0", path = "crates/maelstrom-worker" }
87+
maelstrom-worker-child = { version = "0.7.0", path = "crates/maelstrom-worker-child" }
8888
maplit = "1"
8989
memchr = "2"
9090
netlink-packet-core = "0.7"

0 commit comments

Comments
 (0)