Skip to content

Commit

Permalink
[Databox] GA databox (#3136)
Browse files Browse the repository at this point in the history
  • Loading branch information
evelyn-ys committed Mar 11, 2021
1 parent 1f07f63 commit 364d3b3
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 3 deletions.
3 changes: 3 additions & 0 deletions src/databox/HISTORY.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@
Release History
===============
0.1.1
++++++
* GA databox module.

0.1.0
++++++
Expand Down
1 change: 0 additions & 1 deletion src/databox/azext_databox/azext_metadata.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
{
"azext.isExperimental": true,
"azext.minCliCoreVersion": "2.3.1"
}
2 changes: 1 addition & 1 deletion src/databox/azext_databox/commands.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ def load_command_table(self, _):
databox_jobs = CliCommandType(
operations_tmpl='azext_databox.vendored_sdks.databox.operations._jobs_operations#JobsOperations.{}',
client_factory=cf_jobs)
with self.command_group('databox job', databox_jobs, client_factory=cf_jobs, is_experimental=True) as g:
with self.command_group('databox job', databox_jobs, client_factory=cf_jobs) as g:
g.custom_command('create', 'create_databox_job', validator=validate_create_input_parameters)
g.custom_command('update', 'update_databox_job')
g.custom_command('delete', 'delete_databox_job', confirmation=True)
Expand Down
2 changes: 1 addition & 1 deletion src/databox/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@

# TODO: Confirm this is the right version number you want and it matches your
# HISTORY.rst entry.
VERSION = '0.1.0'
VERSION = '0.1.1'

# The full list of classifiers is available at
# https://pypi.python.org/pypi?%3Aaction=list_classifiers
Expand Down

0 comments on commit 364d3b3

Please sign in to comment.