Skip to content

Commit f58d49a

Browse files
committed
Release 1.4.2
1 parent 80251b4 commit f58d49a

File tree

16 files changed

+59
-16
lines changed

16 files changed

+59
-16
lines changed

CHANGES

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,18 @@
1+
2024-06-18 Jerry Lundström
2+
3+
Release 1.4.2
4+
5+
This release fixes issues with IANA's IPv6 parameters file,
6+
dsc-datatool expected a RIR in the Designation field but IANA recently
7+
added a title for SRv6 reservation which caused an exception.
8+
9+
Other updates are related to packages and GitHub workflows.
10+
11+
7560d82 Tests
12+
8568c84 Fix client subnet authority
13+
a8c58a9 Workflow
14+
fd8915c RPM SUSE
15+
116
2023-12-06 Jerry Lundström
217

318
Release 1.4.1

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
DSC DataTool
22

3-
Copyright (c) 2016-2023 OARC, Inc.
3+
Copyright (c) 2016-2024 OARC, Inc.
44
All rights reserved.
55

66
Redistribution and use in source and binary forms, with or without

debian/changelog

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,20 @@
1+
dsc-datatool (1.4.2-1~unstable+1) unstable; urgency=low
2+
3+
* Release 1.4.2
4+
5+
This release fixes issues with IANA's IPv6 parameters file,
6+
dsc-datatool expected a RIR in the Designation field but IANA recently
7+
added a title for SRv6 reservation which caused an exception.
8+
9+
Other updates are related to packages and GitHub workflows.
10+
11+
7560d82 Tests
12+
8568c84 Fix client subnet authority
13+
a8c58a9 Workflow
14+
fd8915c RPM SUSE
15+
16+
-- Jerry Lundström <lundstrom.jerry@gmail.com> Tue, 18 Jun 2024 12:32:53 +0200
17+
118
dsc-datatool (1.4.1-1~unstable+1) unstable; urgency=low
219

320
* Release 1.4.1

debian/copyright

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,11 @@ Upstream-Name: dsc-datatool
33
Source: https://github.com/DNS-OARC/dsc-datatool
44

55
Files: *
6-
Copyright: 2016-2023 OARC, Inc.
6+
Copyright: 2016-2024 OARC, Inc.
77
License: BSD-3-Clause
88

99
Files: debian/*
10-
Copyright: 2023 Jerry Lundström <lundstrom.jerry@gmail.com>
10+
Copyright: 2024 Jerry Lundström <lundstrom.jerry@gmail.com>
1111
License: BSD-3-Clause
1212

1313
License: BSD-3-Clause

dsc_datatool/__init__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,10 +29,10 @@ class ExampleOutput(Output):
2929
def process(self, datasets)
3030
...
3131
32-
:copyright: 2023 OARC, Inc.
32+
:copyright: 2024 OARC, Inc.
3333
"""
3434

35-
__version__ = '1.4.1'
35+
__version__ = '1.4.2'
3636

3737
import argparse
3838
import logging

dsc_datatool/generator/client_subnet_authority.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
55
Part of dsc_datatool.
66
7-
:copyright: 2023 OARC, Inc.
7+
:copyright: 2024 OARC, Inc.
88
"""
99

1010
import csv

dsc_datatool/generator/client_subnet_country.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
55
Part of dsc_datatool.
66
7-
:copyright: 2023 OARC, Inc.
7+
:copyright: 2024 OARC, Inc.
88
"""
99

1010
import maxminddb

dsc_datatool/input/dat.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
55
Part of dsc_datatool.
66
7-
:copyright: 2023 OARC, Inc.
7+
:copyright: 2024 OARC, Inc.
88
"""
99

1010
import re

dsc_datatool/input/xml.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
55
Part of dsc_datatool.
66
7-
:copyright: 2023 OARC, Inc.
7+
:copyright: 2024 OARC, Inc.
88
"""
99

1010
import logging

dsc_datatool/output/influxdb.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
55
Part of dsc_datatool.
66
7-
:copyright: 2023 OARC, Inc.
7+
:copyright: 2024 OARC, Inc.
88
"""
99

1010
import re

0 commit comments

Comments
 (0)