Fix compile error
This commit is contained in:
parent
eadb832041
commit
0284c4dbc0
3 changed files with 6 additions and 2 deletions
|
@ -1,3 +1,7 @@
|
|||
## 1.0.3
|
||||
|
||||
- Fix a compile error related to the 1.0.2 change
|
||||
|
||||
## 1.0.2
|
||||
|
||||
- Optimize `AWSIP` data structures to combine `AWSIPv4` and `AWSIPv6`
|
||||
|
|
|
@ -25,7 +25,7 @@ Future<void> main(List<String> arguments) async {
|
|||
blockListv4 += "${entry.ip_prefix} AWS IPv4\n";
|
||||
}
|
||||
for (var entry in aws.ipv6_prefixes) {
|
||||
blockListv6 += "${entry.ipv6_prefix} AWS IPv6\n";
|
||||
blockListv6 += "${entry.ip_prefix} AWS IPv6\n";
|
||||
}
|
||||
|
||||
print(">> Stripping trailing newline");
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
name: awsparser
|
||||
description: A sample command-line application.
|
||||
version: 1.0.2
|
||||
version: 1.0.3
|
||||
# repository: https://github.com/my_org/my_repo
|
||||
|
||||
environment:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue