Skip to content

Commit 278f09b

Browse files
not-ticket(Fix block bug) (#247)
* fix block bug due to missing argument for quarantine command * Bump version: 1.10.0 → 1.10.1
1 parent dde9843 commit 278f09b

4 files changed

Lines changed: 10 additions & 4 deletions

File tree

.bumpversion.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[bumpversion]
2-
current_version = 1.10.0
2+
current_version = 1.10.1
33
commit = True
44
tag = True
55
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<revision>\d+)

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
77

88
## [Unreleased]
99

10+
## [1.10.1] - 2025-12-16
11+
12+
### Fixed
13+
14+
- Fixed quarantine block/add command
15+
1016
## [1.10.0] - 2025-12-16
1117

1218
### Fixed

cloudsmith_cli/cli/commands/quarantine.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ def quarantine(ctx, opts): # pylint: disable=unused-argument
5151
"""
5252

5353

54-
def add_quarantine(ctx, opts, owner_repo_package, page, page_size):
54+
def add_quarantine(ctx, opts, owner_repo_package, page, page_size, page_all):
5555
"""
5656
Add a package to quarantine.
5757
@@ -98,7 +98,7 @@ def add(*args, **kwargs): # pylint: disable=missing-docstring
9898
return add_quarantine(*args, **kwargs)
9999

100100

101-
def remove_quarantine(ctx, opts, owner_repo_package, page, page_size):
101+
def remove_quarantine(ctx, opts, owner_repo_package, page, page_size, page_all):
102102
"""
103103
Remove a package from quarantine.
104104

cloudsmith_cli/data/VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.10.0
1+
1.10.1

0 commit comments

Comments
 (0)