Skip to content

Commit

Permalink
chore: update changelog and bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
renatav committed Oct 3, 2024
1 parent 8d22b62 commit e94ffdc
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 13 deletions.
17 changes: 16 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,20 @@ and this project adheres to [Semantic Versioning][semver].

### Fixed

## [0.31.1] - 10/03/2024

### Added

### Changed

### Fixed

- Fix `load_repositories` following a rework needed to support parallelization ([547])
- Fix `clone_from_disk` ([547])
- Fix pre-push hook ([547])

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


## [0.31.0] - 09/28/2024

Expand Down Expand Up @@ -1264,7 +1278,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.31.0...HEAD
[unreleased]: https://github.com/openlawlibrary/taf/compare/v0.31.1...HEAD
[0.31.1]: https://github.com/openlawlibrary/taf/compare/v0.31.0...v0.31.1
[0.31.0]: https://github.com/openlawlibrary/taf/compare/v0.30.2...0.31.0
[0.30.2]: https://github.com/openlawlibrary/taf/compare/v0.30.1...v0.30.2
[0.30.1]: https://github.com/openlawlibrary/taf/compare/v0.30.0...v0.30.1
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 @@
import sys

PACKAGE_NAME = "taf"
VERSION = "0.31.0"
VERSION = "0.31.1"
AUTHOR = "Open Law Library"
AUTHOR_EMAIL = "[email protected]"
DESCRIPTION = "Implementation of archival authentication"
Expand Down
11 changes: 0 additions & 11 deletions taf/git.py
Original file line number Diff line number Diff line change
Expand Up @@ -1095,17 +1095,6 @@ def find_worktree_path_by_branch(self, branch_name: str) -> Optional[Path]:
return path
return None

def first_commit_on_branch(self, branch_name: str) -> Optional[str]:
repo = self.pygit_repo
branch = repo.lookup_branch(branch_name)
if branch is None:
return None
try:
return next(repo.walk(branch.target, pygit2.GIT_SORT_TOPOLOGICAL)).hex
except StopIteration:
# No commits in this branch
return None

def find_first_branch_matching_pattern(
self,
traverse_branch_name: str,
Expand Down

0 comments on commit e94ffdc

Please sign in to comment.