Skip to content

Commit

Permalink
chore: update changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
renatav committed Aug 16, 2023
1 parent 66f2603 commit 5e4c350
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 4 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ and this project adheres to [Semantic Versioning][semver].

### Added

- Add functions for adding/updating/removing dependencies to/from dependencies.json ([338])
### Changed

- Remove hosts and hosts.json ([330])
Expand All @@ -17,6 +18,7 @@ and this project adheres to [Semantic Versioning][semver].

- Add missing `write` flag to `taf targets sign` ([329])

[338]: https://github.com/openlawlibrary/taf/pull/338
[330]: https://github.com/openlawlibrary/taf/pull/330
[329]: https://github.com/openlawlibrary/taf/pull/329

Expand Down
1 change: 0 additions & 1 deletion taf/api/repository.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
import json
from logging import DEBUG, INFO
import click
from git import GitError
from logdecorator import log_on_end, log_on_start
from taf.api.metadata import update_snapshot_and_timestamp, update_target_metadata

Expand Down
3 changes: 0 additions & 3 deletions taf/tools/repo/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@
add_dependency as add_dependency_to_dependencies_json,
remove_dependency as remove_dependency_to_dependencies_json
)
from taf.tools import targets
from taf.updater.updater import update_repository, validate_repository, UpdateType


Expand Down Expand Up @@ -109,7 +108,6 @@ def create(path, keys_description, keystore, commit, test):
"""
create_repository(path, keystore, keys_description, commit, test)


@repo.command()
@click.argument("auth_path")
@click.argument("dependency-name")
Expand All @@ -118,7 +116,6 @@ def remove_dependency(auth_path, dependency_name, keystore):
"""Remove a dependency from depdendencies.json"""
remove_dependency_to_dependencies_json(auth_path, dependency_name, keystore)


@repo.command()
@click.argument("url")
@click.argument("clients-auth-path", default=None, required=False)
Expand Down

0 comments on commit 5e4c350

Please sign in to comment.