Skip to content

Commit 71380b2

Browse files
committed
Release 1.4.0
1 parent bd3ff58 commit 71380b2

File tree

16 files changed

+45
-16
lines changed

16 files changed

+45
-16
lines changed

CHANGES

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,13 @@
1+
2023-06-15 Jerry Lundström
2+
3+
Release 1.4.0
4+
5+
This release adds the option `--encoding` to set an encoding to use
6+
for reading and writing files.
7+
8+
f64c8b6 encoding man-page
9+
09c0ce9 Encoding
10+
111
2022-11-10 Jerry Lundström
212

313
Release 1.3.0

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-2022 OARC, Inc.
3+
Copyright (c) 2016-2023 OARC, Inc.
44
All rights reserved.
55

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

debian/changelog

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,15 @@
1+
dsc-datatool (1.4.0-1~unstable+1) unstable; urgency=low
2+
3+
* Release 1.4.0
4+
5+
This release adds the option `--encoding` to set an encoding to use
6+
for reading and writing files.
7+
8+
f64c8b6 encoding man-page
9+
09c0ce9 Encoding
10+
11+
-- Jerry Lundström <lundstrom.jerry@gmail.com> Thu, 15 Jun 2023 10:36:37 +0200
12+
113
dsc-datatool (1.3.0-1~unstable+1) unstable; urgency=low
214

315
* Release 1.3.0

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-2022 OARC, Inc.
6+
Copyright: 2016-2023 OARC, Inc.
77
License: BSD-3-Clause
88

99
Files: debian/*
10-
Copyright: 2022 Jerry Lundström <lundstrom.jerry@gmail.com>
10+
Copyright: 2023 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: 2022 OARC, Inc.
32+
:copyright: 2023 OARC, Inc.
3333
"""
3434

35-
__version__ = '1.3.0'
35+
__version__ = '1.4.0'
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: 2022 OARC, Inc.
7+
:copyright: 2023 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: 2022 OARC, Inc.
7+
:copyright: 2023 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: 2022 OARC, Inc.
7+
:copyright: 2023 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: 2022 OARC, Inc.
7+
:copyright: 2023 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: 2022 OARC, Inc.
7+
:copyright: 2023 OARC, Inc.
88
"""
99

1010
import re

0 commit comments

Comments
 (0)