Fix compile error

This commit is contained in:
zontreck 2024-11-23 01:50:34 -07:00
parent eadb832041
commit 0284c4dbc0
3 changed files with 6 additions and 2 deletions

View file

@ -1,3 +1,7 @@
## 1.0.3
- Fix a compile error related to the 1.0.2 change
## 1.0.2 ## 1.0.2
- Optimize `AWSIP` data structures to combine `AWSIPv4` and `AWSIPv6` - Optimize `AWSIP` data structures to combine `AWSIPv4` and `AWSIPv6`

View file

@ -25,7 +25,7 @@ Future<void> main(List<String> arguments) async {
blockListv4 += "${entry.ip_prefix} AWS IPv4\n"; blockListv4 += "${entry.ip_prefix} AWS IPv4\n";
} }
for (var entry in aws.ipv6_prefixes) { 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"); print(">> Stripping trailing newline");

View file

@ -1,6 +1,6 @@
name: awsparser name: awsparser
description: A sample command-line application. description: A sample command-line application.
version: 1.0.2 version: 1.0.3
# repository: https://github.com/my_org/my_repo # repository: https://github.com/my_org/my_repo
environment: environment: