Skip to content

Commit

Permalink
remove v
Browse files Browse the repository at this point in the history
bump version
  • Loading branch information
takotori committed Dec 11, 2023
1 parent 65bf5cc commit 6b351f3
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "re_set-lib"
version = "0.7.2"
version = "0.7.3"
edition = "2021"
description = "Data structure library for ReSet"
repository = "https://github.com/Xetibo/ReSet-Lib"
Expand Down
8 changes: 4 additions & 4 deletions src/network/connection.rs
Original file line number Diff line number Diff line change
Expand Up @@ -968,7 +968,7 @@ pub struct IPV6Settings {
pub gateway: String,
pub ignore_auto_dns: bool,
pub ignore_auto_dns_routes: bool,
pub ipv6_privacy: IPV6PrivacyMode,
pub ip6_privacy: IPV6PrivacyMode,
pub may_fail: bool,
pub method: DNSMethod6,
pub never_default: bool,
Expand Down Expand Up @@ -1025,7 +1025,7 @@ impl PropMapConvert for IPV6Settings {
gateway,
ignore_auto_dns,
ignore_auto_dns_routes,
ipv6_privacy,
ip6_privacy: ipv6_privacy,
may_fail,
method: dns_method,
never_default,
Expand Down Expand Up @@ -1060,8 +1060,8 @@ impl PropMapConvert for IPV6Settings {
Variant(Box::new(self.ignore_auto_dns_routes)),
);
map.insert(
"ipv6-privacy".into(),
Variant(Box::new(self.ipv6_privacy.to_i32())),
"ip6-privacy".into(),
Variant(Box::new(self.ip6_privacy.to_i32())),
);
map.insert("may-fail".into(), Variant(Box::new(self.may_fail)));
map.insert(
Expand Down

0 comments on commit 6b351f3

Please sign in to comment.