Skip to content

Commit

Permalink
prepare for first release
Browse files Browse the repository at this point in the history
  • Loading branch information
figsoda committed Oct 25, 2022
1 parent acff0b9 commit 95ffabd
Show file tree
Hide file tree
Showing 5 changed files with 30 additions and 25 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1 +1,5 @@
# Changelog

## v0.1.0 - 2022-10-25

First release of the project
32 changes: 16 additions & 16 deletions Cargo.lock

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

14 changes: 7 additions & 7 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,20 +15,20 @@ categories = ["command-line-utilities"]
concolor = "0.0.9"
concolor-clap = { version = "0.0.12", features = ["api_unstable"] }
eyre = "0.6.8"
icalendar = { version = "0.13.1", features = ["parser"] }
icalendar = { version = "0.13.2", features = ["parser"] }
ignore = "0.4.18"
is_executable = "1.0.1"
java-properties = "1.4.1"
rpassword = "7.0.0"
rpassword = "7.1.0"
serde = { version = "1.0.147", features = ["derive"] }
time = { version = "0.3.16", features = ["formatting", "macros", "parsing"] }
toml = "0.5.9"
ureq = "2.5.0"
webbrowser = "0.8.0"
zip = { version = "0.6.2", default-features = false }
zip = { version = "0.6.3", default-features = false }

[dependencies.clap]
version = "4.0.8"
version = "4.0.18"
features = ["cargo", "derive", "env", "unicode", "wrap_help"]

[dependencies.color-eyre]
Expand All @@ -48,9 +48,9 @@ xdg = "2.4.1"
dirs = "4.0.0"

[build-dependencies]
clap = { version = "4.0.8", features = ["derive", "env"] }
clap_complete = "4.0.2"
clap_mangen = "0.2.2"
clap = { version = "4.0.18", features = ["derive", "env"] }
clap_complete = "4.0.3"
clap_mangen = "0.2.3"
concolor-clap = "0.0.12"

[dev-dependencies]
Expand Down
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,8 @@ File resolution:
The configuration file is written in [TOML](https://toml.io). Run `sagoin --help` for more information.

```toml
# config.toml
# all possible fields in config.toml
time_format = "..."
username = "..."
username_type = "command | file | text"
password = "..."
Expand Down
2 changes: 1 addition & 1 deletion src/course.rs
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ pub fn print_course_info(props: &Props, fmt: String) -> Result<()> {
&mut out,
&format_description::parse(&fmt).wrap_err("failed to parse time format")?,
)
.context("failed to format time")?;
.wrap_err("failed to format time")?;

writeln!(out)?;
}
Expand Down

0 comments on commit 95ffabd

Please sign in to comment.