Skip to content

Commit

Permalink
fix: address missing logging handler by importing `tuf.repository_too…
Browse files Browse the repository at this point in the history
…l` (#298)
  • Loading branch information
n-dusan authored Dec 14, 2022
1 parent 2e0d84b commit 02d2b49
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 3 deletions.
15 changes: 13 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog][keepachangelog],
and this project adheres to [Semantic Versioning][semver].


## [Unreleased]

### Added
Expand All @@ -14,6 +13,17 @@ and this project adheres to [Semantic Versioning][semver].

### Fixed

## [0.22.3] - 12/14/2022

### Added

### Changed

### Fixed
- Add missing tuf import in `log.py` ([298])

[298]: https://github.com/openlawlibrary/taf/pull/298

## [0.22.2] - 12/14/2022

### Added
Expand Down Expand Up @@ -813,7 +823,8 @@ and this project adheres to [Semantic Versioning][semver].

[keepachangelog]: https://keepachangelog.com/en/1.0.0/
[semver]: https://semver.org/spec/v2.0.0.html
[unreleased]: https://github.com/openlawlibrary/taf/compare/v0.22.2...HEAD
[unreleased]: https://github.com/openlawlibrary/taf/compare/v0.22.3...HEAD
[0.22.3]: https://github.com/openlawlibrary/taf/compare/v0.22.2...v0.22.3
[0.22.2]: https://github.com/openlawlibrary/taf/compare/v0.22.1...v0.22.2
[0.22.1]: https://github.com/openlawlibrary/taf/compare/v0.22.0...v0.22.1
[0.22.0]: https://github.com/openlawlibrary/taf/compare/v0.21.1...v0.22.0
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
from importlib.util import find_spec

PACKAGE_NAME = "taf"
VERSION = "0.22.2"
VERSION = "0.22.3"
AUTHOR = "Open Law Library"
AUTHOR_EMAIL = "[email protected]"
DESCRIPTION = "Implementation of archival authentication"
Expand Down
1 change: 1 addition & 0 deletions taf/log.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
from pathlib import Path

import tuf.log
import tuf.repository_tool
import tuf.exceptions
from loguru import logger as taf_logger

Expand Down

0 comments on commit 02d2b49

Please sign in to comment.