Skip to content

Commit 330c199

Browse files
authored
Merge pull request #32 from miaowware/rel-1.1.0
rel 1.1.0
2 parents 7a16761 + 489ff3a commit 330c199

29 files changed

+40
-34
lines changed

.github/workflows/release.yml

+5-5
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,8 @@ jobs:
1212
release:
1313
name: Create Release
1414
runs-on: ubuntu-20.04
15+
permissions:
16+
contents: write
1517
steps:
1618
- name: Checkout
1719
uses: actions/checkout@v2
@@ -46,12 +48,10 @@ jobs:
4648

4749
- name: Publish Release
4850
id: create_release
49-
uses: actions/create-release@v1
50-
env:
51-
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
51+
uses: ncipollo/release-action@v1
5252
with:
53-
tag_name: ${{ env.tag_version }}
54-
release_name: ${{ env.tag_subject }}
53+
tag: ${{ env.tag_version }}
54+
name: ${{ env.tag_subject }}
5555
body: |
5656
${{ env.tag_body }}
5757

CHANGELOG.md

+5-1
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
66

77

88
## [Unreleased]
9+
10+
11+
## [1.1.0] - 2023-01-29
912
### Added
1013
- Implementation of `__str__` for `QslStatus` for easier display (#23).
1114
### Fixed
@@ -29,6 +32,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
2932
- Command-line interface.
3033

3134

32-
[Unreleased]: https://github.com/miaowware/callsignlookuptools/compare/v1.0.1...HEAD
35+
[Unreleased]: https://github.com/miaowware/callsignlookuptools/compare/v1.1.0...HEAD
36+
[1.1.0]: https://github.com/miaowware/callsignlookuptools/releases/tag/v1.1.0
3337
[1.0.1]: https://github.com/miaowware/callsignlookuptools/releases/tag/v1.0.1
3438
[1.0.0]: https://github.com/miaowware/callsignlookuptools/releases/tag/v1.0.0

LICENSE

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
BSD 3-Clause License
22

3-
Copyright (c) 2021, classabbyamp, 0x5c
3+
Copyright (c) 2021-2023, classabbyamp, 0x5c
44
All rights reserved.
55

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

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,6 @@ Some of the supported callsign lookup APIs require accounts and/or paid subscrip
4141

4242
## Copyright
4343

44-
Copyright 2021 classabbyamp, 0x5c
44+
Copyright 2021-2023 classabbyamp, 0x5c
4545
Released under the BSD 3-Clause License.
4646
See [`LICENSE`](LICENSE) for the full license text.

callsignlookuptools/__info__.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,10 @@
66
__summary__ = "QRZ, Callook, HamQTH, and QRZCQ API interface with sync and async support"
77
__webpage__ = "https://callsignlookuptools.miaow.io"
88

9-
__version__ = "1.0.1"
9+
__version__ = "1.1.0"
1010

1111
__author__ = "classabbyamp, 0x5c"
12-
__email__ = "dev@kb6.ee, [email protected]"
12+
__email__ = "dev@placeviolette.net, [email protected]"
1313

1414
__license__ = "BSD 3-Clause"
15-
__copyright__ = "2021"
15+
__copyright__ = "2021-2023"

callsignlookuptools/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
---
44
QRZ and callook.info API interface in Python
55
6-
Copyright 2021 classabbyamp, 0x5c
6+
Copyright 2021-2023 classabbyamp, 0x5c
77
Released under the terms of the BSD 3-Clause license.
88
"""
99

callsignlookuptools/__main__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
"""
22
callsignlookuptools commandline interface
33
---
4-
Copyright 2021 classabbyamp, 0x5c
4+
Copyright 2021-2023 classabbyamp, 0x5c
55
Released under the terms of the BSD 3-Clause license.
66
"""
77

callsignlookuptools/callook/callook.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
"""
22
callooktools
33
---
4-
Copyright 2021 classabbyamp, 0x5c
4+
Copyright 2021-2023 classabbyamp, 0x5c
55
Released under the terms of the BSD 3-Clause license.
66
"""
77

callsignlookuptools/callook/callookasync.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
"""
22
callooktools: asynchronous editon
33
---
4-
Copyright 2021 classabbyamp, 0x5c
4+
Copyright 2021-2023 classabbyamp, 0x5c
55
Released under the terms of the BSD 3-Clause license.
66
"""
77

callsignlookuptools/callook/callooksync.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
"""
22
callooktools: synchronous editon
33
---
4-
Copyright 2021 classabbyamp, 0x5c
4+
Copyright 2021-2023 classabbyamp, 0x5c
55
Released under the terms of the BSD 3-Clause license.
66
"""
77

callsignlookuptools/cli.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
"""
22
callsignlookuptools commandline interface helpers
33
---
4-
Copyright 2021 classabbyamp, 0x5c
4+
Copyright 2021-2023 classabbyamp, 0x5c
55
Released under the terms of the BSD 3-Clause license.
66
"""
77

callsignlookuptools/common/abcs.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
"""
22
ABCs for callsignlookuptools
33
---
4-
Copyright 2021 classabbyamp, 0x5c
4+
Copyright 2021-2023 classabbyamp, 0x5c
55
Released under the terms of the BSD 3-Clause license.
66
"""
77

callsignlookuptools/common/constants.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
"""
22
constants for callsignlookuptools
33
---
4-
Copyright 2021 classabbyamp, 0x5c
4+
Copyright 2021-2023 classabbyamp, 0x5c
55
Released under the terms of the BSD 3-Clause license.
66
"""
77

callsignlookuptools/common/dataclasses.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
"""
22
common dataclasses for callsignlookuptools
33
---
4-
Copyright 2021 classabbyamp, 0x5c
4+
Copyright 2021-2023 classabbyamp, 0x5c
55
Released under the terms of the BSD 3-Clause license.
66
"""
77

callsignlookuptools/common/enums.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
"""
22
common enums for callsignlookuptools
33
---
4-
Copyright 2021 classabbyamp, 0x5c
4+
Copyright 2021-2023 classabbyamp, 0x5c
55
Released under the terms of the BSD 3-Clause license.
66
"""
77

callsignlookuptools/common/exceptions.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
"""
22
common exceptions for callsignlookuptools
33
---
4-
Copyright 2021 classabbyamp, 0x5c
4+
Copyright 2021-2023 classabbyamp, 0x5c
55
Released under the terms of the BSD 3-Clause license.
66
"""
77

callsignlookuptools/common/functions.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
"""
22
common functions for callsignlookuptools
33
---
4-
Copyright 2021 classabbyamp, 0x5c
4+
Copyright 2021-2023 classabbyamp, 0x5c
55
Released under the terms of the BSD 3-Clause license.
66
"""
77

callsignlookuptools/common/mixins.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
"""
22
Mixins for callsignlookuptools
33
---
4-
Copyright 2021 classabbyamp, 0x5c
4+
Copyright 2021-2023 classabbyamp, 0x5c
55
Released under the terms of the BSD 3-Clause license.
66
"""
77

callsignlookuptools/hamqth/hamqth.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
"""
22
hamqthtools
33
---
4-
Copyright 2021 classabbyamp, 0x5c
4+
Copyright 2021-2023 classabbyamp, 0x5c
55
Released under the terms of the BSD 3-Clause license.
66
"""
77

callsignlookuptools/hamqth/hamqthasync.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
"""
22
hamqthtools: asynchronous editon
33
---
4-
Copyright 2021 classabbyamp, 0x5c
4+
Copyright 2021-2023 classabbyamp, 0x5c
55
Released under the terms of the BSD 3-Clause license.
66
"""
77

callsignlookuptools/hamqth/hamqthsync.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
"""
22
hamqthtools: synchronous editon
33
---
4-
Copyright 2021 classabbyamp, 0x5c
4+
Copyright 2021-2023 classabbyamp, 0x5c
55
Released under the terms of the BSD 3-Clause license.
66
"""
77

callsignlookuptools/qrz/qrz.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
"""
22
qrztools
33
---
4-
Copyright 2021 classabbyamp, 0x5c
4+
Copyright 2021-2023 classabbyamp, 0x5c
55
Released under the terms of the BSD 3-Clause license.
66
"""
77

callsignlookuptools/qrz/qrzasync.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
"""
22
qrztools: asynchronous editon
33
---
4-
Copyright 2021 classabbyamp, 0x5c
4+
Copyright 2021-2023 classabbyamp, 0x5c
55
Released under the terms of the BSD 3-Clause license.
66
"""
77

callsignlookuptools/qrz/qrzsync.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
"""
22
qrztools: synchronous editon
33
---
4-
Copyright 2021 classabbyamp, 0x5c
4+
Copyright 2021-2023 classabbyamp, 0x5c
55
Released under the terms of the BSD 3-Clause license.
66
"""
77

callsignlookuptools/qrzcq/qrzcq.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
"""
22
qrzcqtools
33
---
4-
Copyright 2021 classabbyamp, 0x5c
4+
Copyright 2021-2023 classabbyamp, 0x5c
55
Released under the terms of the BSD 3-Clause license.
66
"""
77

callsignlookuptools/qrzcq/qrzcqasync.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
"""
22
qrzcqtools: asynchronous editon
33
---
4-
Copyright 2021 classabbyamp, 0x5c
4+
Copyright 2021-2023 classabbyamp, 0x5c
55
Released under the terms of the BSD 3-Clause license.
66
"""
77

callsignlookuptools/qrzcq/qrzcqsync.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
"""
22
qrzcqtools: synchronous editon
33
---
4-
Copyright 2021 classabbyamp, 0x5c
4+
Copyright 2021-2023 classabbyamp, 0x5c
55
Released under the terms of the BSD 3-Clause license.
66
"""
77

docs/index.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -121,6 +121,6 @@ Async
121121
License
122122
=======
123123

124-
Copyright 2021 classabbyamp, 0x5c
124+
Copyright 2021-2023 classabbyamp, 0x5c
125125

126126
Released under the BSD 3-Clause License. See ``LICENSE`` for the full license text.

setup.py

+2
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,8 @@
2222
"License :: OSI Approved :: BSD License",
2323
"Programming Language :: Python :: 3",
2424
"Programming Language :: Python :: 3.9",
25+
"Programming Language :: Python :: 3.10",
26+
"Programming Language :: Python :: 3.11",
2527
"Development Status :: 5 - Production/Stable",
2628
"Environment :: Console",
2729
"Intended Audience :: Developers",

0 commit comments

Comments
 (0)