Skip to content

Commit 1776240

Browse files
chore: bump version to 0.2.0 (#6)
1 parent ec96fec commit 1776240

File tree

10 files changed

+53
-24
lines changed

10 files changed

+53
-24
lines changed

Cargo.lock

Lines changed: 8 additions & 8 deletions
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
@@ -12,7 +12,7 @@ members = [
1212
]
1313

1414
[workspace.package]
15-
version = "0.1.3"
15+
version = "0.2.0"
1616
edition = "2021"
1717
license = "MIT"
1818
repository = "https://github.com/repx-org/repx"

crates/repx-core/src/engine.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -160,7 +160,7 @@ mod tests {
160160
#[test]
161161
fn test_diamond_dependency_graph_order() {
162162
let mut lab = Lab {
163-
repx_version: "0.1.3".to_string(),
163+
repx_version: "0.2.0".to_string(),
164164
lab_version: "1.0.0".to_string(),
165165
git_hash: "123".to_string(),
166166
content_hash: "123".to_string(),

crates/repx-core/src/resolver.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -146,7 +146,7 @@ mod tests {
146146

147147
fn test_lab() -> Lab {
148148
Lab {
149-
repx_version: "0.1.3".into(),
149+
repx_version: "0.2.0".into(),
150150
lab_version: "1.0.0".into(),
151151
git_hash: "test".into(),
152152
content_hash: "test-hash".to_string(),

default.nix

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
pkgs.rustPlatform.buildRustPackage {
44
pname = "repx";
5-
version = "0.1.3";
5+
version = "0.2.0";
66

77
src = pkgs.lib.cleanSourceWith {
88
src = ./.;

nix/lib/lab-packagers.nix

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
lab_version,
55
}:
66
let
7-
repxVersion = "0.1.3";
7+
repxVersion = "0.2.0";
88

99
rsyncStatic =
1010
(pkgs.pkgsStatic.rsync.override {

nix/reference-lab/lab-native.nix

Lines changed: 2 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -4,20 +4,12 @@
44
gitHash,
55
}:
66

7-
let
8-
wrapNative =
9-
runPath: args:
10-
let
11-
runDef = import runPath args;
12-
in
13-
runDef // { containerized = false; };
14-
in
157
repx-lib.mkLab {
168
inherit pkgs gitHash repx-lib;
179
lab_version = "1.0.0";
1810
runs = rec {
19-
simulation = repx-lib.callRun (wrapNative ./runs/run-simulation.nix) [ ];
20-
analysis = repx-lib.callRun (wrapNative ./runs/run-analysis.nix) [
11+
simulation = repx-lib.callRun ./runs/run-simulation-native.nix [ ];
12+
analysis = repx-lib.callRun ./runs/run-analysis-native.nix [
2113
[
2214
simulation
2315
"soft"
Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
_: {
2+
name = "analysis-run";
3+
containerized = false;
4+
5+
pipelines = [
6+
./pipelines/pipe-analysis.nix
7+
];
8+
9+
params = { };
10+
}
Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
{
2+
repx-lib,
3+
...
4+
}:
5+
let
6+
inherit (repx-lib) utils;
7+
in
8+
{
9+
name = "simulation-run";
10+
containerized = false;
11+
pipelines = [ ./pipelines/pipe-simulation.nix ];
12+
13+
params = {
14+
offset = utils.range 1 2;
15+
mode = utils.list [
16+
"fast"
17+
"slow"
18+
];
19+
template_dir = utils.dirs ../pkgs/headers;
20+
config_file = utils.scan {
21+
src = ../pkgs/configs;
22+
match = ".*\\.json";
23+
type = "file";
24+
};
25+
multiplier = utils.range 2 3;
26+
};
27+
}

python/src/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "repx-py"
3-
version = "0.1.3"
3+
version = "0.2.0"
44
description = "A library for analyzing RepX lab results."
55
dependencies = [
66
"pandas",

0 commit comments

Comments
 (0)