Skip to content

Commit

Permalink
Update version to 0.1.1
Browse files Browse the repository at this point in the history
Bump package version from 0.1.0 to 0.1.1 in Cargo files and main.rs. Correct the mismatched version number in the CLI setup and clean up an obsolete comment.
  • Loading branch information
geonaumov committed Oct 20, 2024
1 parent 7574c71 commit a96bbaa
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 4 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 = "RSS2SQLite"
version = "0.1.0"
version = "0.1.1"
edition = "2021"

[profile.dev]
Expand Down
3 changes: 1 addition & 2 deletions src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ fn main() -> Result<(), Box<dyn Error>> {

// Setup command arguments
let matches = Command::new("RSS to SQLite")
.version("0.2.0")
.version("0.1.1")
.author("Geo Naumov <[email protected]>")
.about("A collector for RSS feeds written in Rust. Uses the SQLite database.")
.subcommand(Command::new("update").about("Update the feeds"))
Expand Down Expand Up @@ -68,7 +68,6 @@ fn main() -> Result<(), Box<dyn Error>> {
insert_feed_items(&conn, &parsed_feed.unwrap()).context("Failed to insert record")?;
},
Err(..) => {
// return Err(anyhow::anyhow!("Failed to open database: {}", e));
error!("Database error!");
}
}
Expand Down

0 comments on commit a96bbaa

Please sign in to comment.