Skip to content

Commit

Permalink
Upgrade version to 1.0.0-beta (#71)
Browse files Browse the repository at this point in the history
  • Loading branch information
mpizenberg authored Feb 13, 2021
1 parent 2c231a0 commit 2752118
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 10 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@ All notable changes to this project will be documented in this file.
- Fix `--compiler` error when using relative paths.
- Fix the indentation of generated elm.json. Now uses 4 spaces.
- Fix the order of packages in the elm.json dependencies.
- Add a message to stderr and fail when no test was found.


## [0.6.1] - (2021-01-23) [(diff)][diff-0.6.1]
Expand Down
2 changes: 1 addition & 1 deletion Cargo.lock

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

8 changes: 2 additions & 6 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "elm-test-rs"
version = "1.0.0-alpha"
version = "1.0.0-beta"
authors = ["Matthieu Pizenberg <[email protected]>", "Harry Sarson <[email protected]>"]
edition = "2018"
description = "Simple and fast Rust alternative to node-test-runner to run elm tests"
Expand All @@ -22,13 +22,9 @@ nom = "6.1.0"
notify = "4.0.15"
atty = "0.2.14"
anyhow = "1.0.38"
clap = { version = "2.33.3", default-features = false }
serde = { version = "1.0.123", default-features = false }

[dependencies.clap]
version = "2.33.3"
default-features = false
features = []

[dev-dependencies]

[build-dependencies]
Expand Down
2 changes: 1 addition & 1 deletion build.rs
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ fn main() {
.join("packages")
.join("mpizenberg")
.join("elm-test-runner")
.join("4.0.2");
.join("4.0.3");
let elm_stuff = Path::new("elm").join("elm-stuff");
std::fs::remove_dir_all(&elm_stuff)
.unwrap_or_else(|_| println!("Error removing elm/elm-stuff"));
Expand Down
2 changes: 1 addition & 1 deletion elm
2 changes: 1 addition & 1 deletion src/deps.rs
Original file line number Diff line number Diff line change
Expand Up @@ -233,7 +233,7 @@ fn solve_helper<P: AsRef<Path>>(
let mut deps = direct_deps;
deps.insert(
Pkg::new("mpizenberg", "elm-test-runner"),
Range::exact((4, 0, 2)),
Range::exact((4, 0, 3)),
);
// Add elm/json to the deps since it's used in Runner.elm and Reporter.elm.
// TODO: maybe not the best way to handle but should work most of the time.
Expand Down

0 comments on commit 2752118

Please sign in to comment.