Skip to content

Commit 1423619

Browse files
authored
v0.2.1 (#53)
* v0.2.1 * Fix lints
1 parent 0f4eef1 commit 1423619

File tree

7 files changed

+11
-13
lines changed

7 files changed

+11
-13
lines changed

rs/Cargo.lock

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

rs/crates/rq-cli/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
[package]
22
name = "repo-quest"
3-
version = "0.2.0"
3+
version = "0.2.1"
44
edition = "2024"
55
description = "Interactive programming tutorials over Github."
66
license = "MIT OR Apache-2.0"
77
repository = "https://github.com/cognitive-engineering-lab/repo-quest"
88

99
[dependencies]
1010
clap = { version = "4.5.17", features = ["derive"] }
11-
rq-core = { version = "0.2.0", path = "../rq-core" }
11+
rq-core = { version = "0.2.1", path = "../rq-core" }
1212
tokio = { workspace = true, features = ["rt-multi-thread"] }
1313
serde_json = { workspace = true }
1414
inquire = "0.7.5"

rs/crates/rq-cli/src/main.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
use std::{
22
env::current_dir,
3-
iter::Skip,
43
path::{Path, PathBuf},
54
};
65

rs/crates/rq-cli/src/ui.rs

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,13 @@
11
use std::{env::current_dir, path::Path};
22

33
use crossterm::style::Stylize;
4-
use eyre::{Result, bail};
4+
use eyre::Result;
55
use inquire::{
66
CustomUserError,
77
validator::{ErrorMessage, Validation},
88
};
99
use rq_core::{
1010
git::GitRepo,
11-
github::{self, GithubToken},
1211
package::QuestPackage,
1312
quest::{CreateSource, NoopEmitter, Quest, QuestState},
1413
stage::{StagePart, StagePartStatus},
@@ -233,7 +232,7 @@ async fn run_quest_ui(quest: Quest) -> Result<()> {
233232
Ok(())
234233
}
235234

236-
pub async fn ui_main() -> Result<()> {
235+
pub async fn ui_main() -> Result<()> {
237236
let cwd = current_dir()?;
238237
let in_repo = GitRepo::new(&cwd).exists();
239238

rs/crates/rq-core/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "rq-core"
3-
version = "0.2.0"
3+
version = "0.2.1"
44
edition = "2024"
55
description = "RepoQuest core functionality."
66
license = "MIT OR Apache-2.0"

rs/crates/rq-core/src/quest.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ pub struct QuestConfig {
4545
pub stages: Vec<Stage>,
4646
pub read_only: Option<Vec<PathBuf>>,
4747
pub r#final: Option<serde_json::Value>,
48-
pub final_url: Option<String>
48+
pub final_url: Option<String>,
4949
}
5050

5151
#[derive(Serialize, Deserialize, Type, Clone)]

rs/crates/rq-gui/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "repo-quest-gui"
3-
version = "0.2.0"
3+
version = "0.2.1"
44
edition = "2024"
55
default-run = "repo-quest-gui"
66
publish = false
@@ -18,7 +18,7 @@ serde_json = { workspace = true }
1818
specta = { workspace = true }
1919
specta-typescript = "0.0.7"
2020
tauri-specta = { version = "=2.0.0-rc.20", features = ["derive", "typescript"] }
21-
rq-core = { version = "0.2.0", path = "../rq-core" }
21+
rq-core = { version = "0.2.1", path = "../rq-core" }
2222
eyre = { workspace = true }
2323
tracing = { workspace = true }
2424
tracing-subscriber = { workspace = true }

0 commit comments

Comments
 (0)