Skip to content
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions src/stream-analytics/HISTORY.rst
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,10 @@
Release History
===============

0.1.3
+++++++++++++++
* Remove Experimental

0.1.2
+++++++++++++++
* Support clusters and private endpoints.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
{
"azext.isExperimental": true,
"azext.minCliCoreVersion": "2.15.0"
}
Original file line number Diff line number Diff line change
Expand Up @@ -153,5 +153,5 @@ def load_command_table(self, _):
g.custom_command('create', 'stream_analytics_transformation_create')
g.custom_command('update', 'stream_analytics_transformation_update')

with self.command_group('stream-analytics', is_experimental=True):
with self.command_group('stream-analytics'):
pass
2 changes: 1 addition & 1 deletion src/stream-analytics/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
from setuptools import setup, find_packages

# HISTORY.rst entry.
VERSION = '0.1.2'
VERSION = '0.1.3'
try:
from azext_stream_analytics.manual.version import VERSION
except ImportError:
Expand Down