Skip to content

Commit

Permalink
バージョン0.1.1向け準備 (#5)
Browse files Browse the repository at this point in the history
  • Loading branch information
terry-u16 authored Nov 28, 2024
1 parent 097f1ec commit 435e2f6
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
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.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "pahcer"
version = "0.1.0"
version = "0.1.1"
edition = "2021"
authors = ["terry_u16"]
description = "A tool to run tests for AtCoder Heuristic Contest (AHC)"
Expand Down
2 changes: 1 addition & 1 deletion src/settings.rs
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ pub(crate) fn gen_setting_file(args: &InitArgs) -> Result<()> {
"Failed to create the setting file. Ensure that ./pahcer_config.toml does not exist.",
)?);

let version = "0.1.0".to_string();
let version = env!("CARGO_PKG_VERSION").to_string();
let general = General::new(version);

let lang: Box<dyn Language> = match args.langage {
Expand Down

0 comments on commit 435e2f6

Please sign in to comment.