Skip to content

Commit bf8b751

Browse files
committedJan 16, 2025··
Bump to Rails 8.0.1
1 parent d150ffa commit bf8b751

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed
 

‎src/rails_new.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ pub struct Cli {
88
pub args: Vec<String>,
99
#[clap(long, short = 'u', default_value = "3.4.1")]
1010
pub ruby_version: String,
11-
#[clap(long, short = 'r', default_value = "8.0.0")]
11+
#[clap(long, short = 'r', default_value = "8.0.1")]
1212
pub rails_version: String,
1313

1414
#[command(subcommand)]
@@ -55,7 +55,7 @@ mod tests {
5555
let rails_version = m.get_one::<String>("rails_version").unwrap();
5656

5757
assert_eq!(ruby_version, "3.4.1");
58-
assert_eq!(rails_version, "8.0.0");
58+
assert_eq!(rails_version, "8.0.1");
5959

6060
Ok(())
6161
}

0 commit comments

Comments
 (0)
Please sign in to comment.