Skip to content

Commit

Permalink
Merge pull request #32 from miaowware/rel-1.1.0
Browse files Browse the repository at this point in the history
rel 1.1.0
  • Loading branch information
0x5c authored Jan 29, 2023
2 parents 7a16761 + 489ff3a commit 330c199
Show file tree
Hide file tree
Showing 29 changed files with 40 additions and 34 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,8 @@ jobs:
release:
name: Create Release
runs-on: ubuntu-20.04
permissions:
contents: write
steps:
- name: Checkout
uses: actions/checkout@v2
Expand Down Expand Up @@ -46,12 +48,10 @@ jobs:

- name: Publish Release
id: create_release
uses: actions/create-release@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
uses: ncipollo/release-action@v1
with:
tag_name: ${{ env.tag_version }}
release_name: ${{ env.tag_subject }}
tag: ${{ env.tag_version }}
name: ${{ env.tag_subject }}
body: |
${{ env.tag_body }}
Expand Down
6 changes: 5 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0


## [Unreleased]


## [1.1.0] - 2023-01-29
### Added
- Implementation of `__str__` for `QslStatus` for easier display (#23).
### Fixed
Expand All @@ -29,6 +32,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Command-line interface.


[Unreleased]: https://github.com/miaowware/callsignlookuptools/compare/v1.0.1...HEAD
[Unreleased]: https://github.com/miaowware/callsignlookuptools/compare/v1.1.0...HEAD
[1.1.0]: https://github.com/miaowware/callsignlookuptools/releases/tag/v1.1.0
[1.0.1]: https://github.com/miaowware/callsignlookuptools/releases/tag/v1.0.1
[1.0.0]: https://github.com/miaowware/callsignlookuptools/releases/tag/v1.0.0
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
BSD 3-Clause License

Copyright (c) 2021, classabbyamp, 0x5c
Copyright (c) 2021-2023, classabbyamp, 0x5c
All rights reserved.

Redistribution and use in source and binary forms, with or without
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,6 @@ Some of the supported callsign lookup APIs require accounts and/or paid subscrip

## Copyright

Copyright 2021 classabbyamp, 0x5c
Copyright 2021-2023 classabbyamp, 0x5c
Released under the BSD 3-Clause License.
See [`LICENSE`](LICENSE) for the full license text.
6 changes: 3 additions & 3 deletions callsignlookuptools/__info__.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,10 @@
__summary__ = "QRZ, Callook, HamQTH, and QRZCQ API interface with sync and async support"
__webpage__ = "https://callsignlookuptools.miaow.io"

__version__ = "1.0.1"
__version__ = "1.1.0"

__author__ = "classabbyamp, 0x5c"
__email__ = "dev@kb6.ee, [email protected]"
__email__ = "dev@placeviolette.net, [email protected]"

__license__ = "BSD 3-Clause"
__copyright__ = "2021"
__copyright__ = "2021-2023"
2 changes: 1 addition & 1 deletion callsignlookuptools/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
---
QRZ and callook.info API interface in Python
Copyright 2021 classabbyamp, 0x5c
Copyright 2021-2023 classabbyamp, 0x5c
Released under the terms of the BSD 3-Clause license.
"""

Expand Down
2 changes: 1 addition & 1 deletion callsignlookuptools/__main__.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
"""
callsignlookuptools commandline interface
---
Copyright 2021 classabbyamp, 0x5c
Copyright 2021-2023 classabbyamp, 0x5c
Released under the terms of the BSD 3-Clause license.
"""

Expand Down
2 changes: 1 addition & 1 deletion callsignlookuptools/callook/callook.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
"""
callooktools
---
Copyright 2021 classabbyamp, 0x5c
Copyright 2021-2023 classabbyamp, 0x5c
Released under the terms of the BSD 3-Clause license.
"""

Expand Down
2 changes: 1 addition & 1 deletion callsignlookuptools/callook/callookasync.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
"""
callooktools: asynchronous editon
---
Copyright 2021 classabbyamp, 0x5c
Copyright 2021-2023 classabbyamp, 0x5c
Released under the terms of the BSD 3-Clause license.
"""

Expand Down
2 changes: 1 addition & 1 deletion callsignlookuptools/callook/callooksync.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
"""
callooktools: synchronous editon
---
Copyright 2021 classabbyamp, 0x5c
Copyright 2021-2023 classabbyamp, 0x5c
Released under the terms of the BSD 3-Clause license.
"""

Expand Down
2 changes: 1 addition & 1 deletion callsignlookuptools/cli.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
"""
callsignlookuptools commandline interface helpers
---
Copyright 2021 classabbyamp, 0x5c
Copyright 2021-2023 classabbyamp, 0x5c
Released under the terms of the BSD 3-Clause license.
"""

Expand Down
2 changes: 1 addition & 1 deletion callsignlookuptools/common/abcs.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
"""
ABCs for callsignlookuptools
---
Copyright 2021 classabbyamp, 0x5c
Copyright 2021-2023 classabbyamp, 0x5c
Released under the terms of the BSD 3-Clause license.
"""

Expand Down
2 changes: 1 addition & 1 deletion callsignlookuptools/common/constants.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
"""
constants for callsignlookuptools
---
Copyright 2021 classabbyamp, 0x5c
Copyright 2021-2023 classabbyamp, 0x5c
Released under the terms of the BSD 3-Clause license.
"""

Expand Down
2 changes: 1 addition & 1 deletion callsignlookuptools/common/dataclasses.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
"""
common dataclasses for callsignlookuptools
---
Copyright 2021 classabbyamp, 0x5c
Copyright 2021-2023 classabbyamp, 0x5c
Released under the terms of the BSD 3-Clause license.
"""

Expand Down
2 changes: 1 addition & 1 deletion callsignlookuptools/common/enums.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
"""
common enums for callsignlookuptools
---
Copyright 2021 classabbyamp, 0x5c
Copyright 2021-2023 classabbyamp, 0x5c
Released under the terms of the BSD 3-Clause license.
"""

Expand Down
2 changes: 1 addition & 1 deletion callsignlookuptools/common/exceptions.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
"""
common exceptions for callsignlookuptools
---
Copyright 2021 classabbyamp, 0x5c
Copyright 2021-2023 classabbyamp, 0x5c
Released under the terms of the BSD 3-Clause license.
"""

Expand Down
2 changes: 1 addition & 1 deletion callsignlookuptools/common/functions.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
"""
common functions for callsignlookuptools
---
Copyright 2021 classabbyamp, 0x5c
Copyright 2021-2023 classabbyamp, 0x5c
Released under the terms of the BSD 3-Clause license.
"""

Expand Down
2 changes: 1 addition & 1 deletion callsignlookuptools/common/mixins.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
"""
Mixins for callsignlookuptools
---
Copyright 2021 classabbyamp, 0x5c
Copyright 2021-2023 classabbyamp, 0x5c
Released under the terms of the BSD 3-Clause license.
"""

Expand Down
2 changes: 1 addition & 1 deletion callsignlookuptools/hamqth/hamqth.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
"""
hamqthtools
---
Copyright 2021 classabbyamp, 0x5c
Copyright 2021-2023 classabbyamp, 0x5c
Released under the terms of the BSD 3-Clause license.
"""

Expand Down
2 changes: 1 addition & 1 deletion callsignlookuptools/hamqth/hamqthasync.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
"""
hamqthtools: asynchronous editon
---
Copyright 2021 classabbyamp, 0x5c
Copyright 2021-2023 classabbyamp, 0x5c
Released under the terms of the BSD 3-Clause license.
"""

Expand Down
2 changes: 1 addition & 1 deletion callsignlookuptools/hamqth/hamqthsync.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
"""
hamqthtools: synchronous editon
---
Copyright 2021 classabbyamp, 0x5c
Copyright 2021-2023 classabbyamp, 0x5c
Released under the terms of the BSD 3-Clause license.
"""

Expand Down
2 changes: 1 addition & 1 deletion callsignlookuptools/qrz/qrz.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
"""
qrztools
---
Copyright 2021 classabbyamp, 0x5c
Copyright 2021-2023 classabbyamp, 0x5c
Released under the terms of the BSD 3-Clause license.
"""

Expand Down
2 changes: 1 addition & 1 deletion callsignlookuptools/qrz/qrzasync.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
"""
qrztools: asynchronous editon
---
Copyright 2021 classabbyamp, 0x5c
Copyright 2021-2023 classabbyamp, 0x5c
Released under the terms of the BSD 3-Clause license.
"""

Expand Down
2 changes: 1 addition & 1 deletion callsignlookuptools/qrz/qrzsync.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
"""
qrztools: synchronous editon
---
Copyright 2021 classabbyamp, 0x5c
Copyright 2021-2023 classabbyamp, 0x5c
Released under the terms of the BSD 3-Clause license.
"""

Expand Down
2 changes: 1 addition & 1 deletion callsignlookuptools/qrzcq/qrzcq.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
"""
qrzcqtools
---
Copyright 2021 classabbyamp, 0x5c
Copyright 2021-2023 classabbyamp, 0x5c
Released under the terms of the BSD 3-Clause license.
"""

Expand Down
2 changes: 1 addition & 1 deletion callsignlookuptools/qrzcq/qrzcqasync.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
"""
qrzcqtools: asynchronous editon
---
Copyright 2021 classabbyamp, 0x5c
Copyright 2021-2023 classabbyamp, 0x5c
Released under the terms of the BSD 3-Clause license.
"""

Expand Down
2 changes: 1 addition & 1 deletion callsignlookuptools/qrzcq/qrzcqsync.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
"""
qrzcqtools: synchronous editon
---
Copyright 2021 classabbyamp, 0x5c
Copyright 2021-2023 classabbyamp, 0x5c
Released under the terms of the BSD 3-Clause license.
"""

Expand Down
2 changes: 1 addition & 1 deletion docs/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -121,6 +121,6 @@ Async
License
=======

Copyright 2021 classabbyamp, 0x5c
Copyright 2021-2023 classabbyamp, 0x5c

Released under the BSD 3-Clause License. See ``LICENSE`` for the full license text.
2 changes: 2 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,8 @@
"License :: OSI Approved :: BSD License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Intended Audience :: Developers",
Expand Down

0 comments on commit 330c199

Please sign in to comment.