Version 1.1.1

This commit is contained in:
Bauke 2021-07-05 23:05:05 +02:00
parent 53618bfd5f
commit f7d820e217
Signed by: Bauke
GPG Key ID: C1C0F29952BCF558
3 changed files with 5 additions and 5 deletions

4
Cargo.lock generated
View File

@ -116,7 +116,7 @@ checksum = "3728d817d99e5ac407411fa471ff9800a778d88a24685968b36824eaf4bee400"
[[package]]
name = "opml"
version = "1.1.0"
version = "1.1.1"
dependencies = [
"regex",
"serde",
@ -126,7 +126,7 @@ dependencies = [
[[package]]
name = "opml_cli"
version = "1.1.0"
version = "1.1.1"
dependencies = [
"assert_cmd",
"clap",

View File

@ -4,7 +4,7 @@
name = "opml"
description = "An OPML parser for Rust."
authors = ["Holllo <helllo@holllo.cc>"]
version = "1.1.0"
version = "1.1.1"
license = "MIT OR Apache-2.0"
repository = "https://github.com/Holllo/opml"
readme = "../README.md"

View File

@ -3,7 +3,7 @@
[package]
name = "opml_cli"
description = "An OPML parser for the command-line."
version = "1.1.0"
version = "1.1.1"
authors = ["Holllo <helllo@holllo.cc>"]
license = "MIT OR Apache-2.0"
repository = "https://github.com/Holllo/opml"
@ -17,7 +17,7 @@ path = "source/main.rs"
[dependencies]
clap = "2.33"
opml = { path = "../opml_api", version = "1.1.0" }
opml = { path = "../opml_api", version = "1.1.1" }
serde_json = "1.0"
[dependencies.serde]