Hello community,

here is the log from the commit of package azure-cli-maps for openSUSE:Factory 
checked in at 2019-10-31 18:16:30
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/azure-cli-maps (Old)
 and      /work/SRC/openSUSE:Factory/.azure-cli-maps.new.2990 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "azure-cli-maps"

Thu Oct 31 18:16:30 2019 rev:3 rq:742700 version:0.3.5

Changes:
--------
--- /work/SRC/openSUSE:Factory/azure-cli-maps/azure-cli-maps.changes    
2019-06-05 11:44:10.415025802 +0200
+++ /work/SRC/openSUSE:Factory/.azure-cli-maps.new.2990/azure-cli-maps.changes  
2019-10-31 18:16:33.202091140 +0100
@@ -1,0 +2,8 @@
+Thu Oct 24 12:11:00 UTC 2019 - John Paul Adrian Glaubitz 
<[email protected]>
+
+- New upstream release
+  + Version 0.3.5
+  + For detailed information about changes see the
+    HISTORY.txt file provided with this package
+
+-------------------------------------------------------------------

Old:
----
  azure-cli-maps-0.3.3.tar.gz

New:
----
  azure-cli-maps-0.3.5.tar.gz

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ azure-cli-maps.spec ++++++
--- /var/tmp/diff_new_pack.4re0qY/_old  2019-10-31 18:16:34.118092088 +0100
+++ /var/tmp/diff_new_pack.4re0qY/_new  2019-10-31 18:16:34.126092097 +0100
@@ -17,7 +17,7 @@
 
 
 Name:           azure-cli-maps
-Version:        0.3.3
+Version:        0.3.5
 Release:        0
 Summary:        Microsoft Azure CLI 'maps' Command Module
 License:        MIT

++++++ azure-cli-maps-0.3.3.tar.gz -> azure-cli-maps-0.3.5.tar.gz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/azure-cli-maps-0.3.3/HISTORY.rst 
new/azure-cli-maps-0.3.5/HISTORY.rst
--- old/azure-cli-maps-0.3.3/HISTORY.rst        2018-12-14 18:43:41.000000000 
+0100
+++ new/azure-cli-maps-0.3.5/HISTORY.rst        2019-06-13 23:17:46.000000000 
+0200
@@ -3,6 +3,14 @@
 Release History
 ===============
 
+0.3.5
++++++
+* Minor fixes.
+
+0.3.4
++++++
+* Minor fixes.
+
 0.3.3
 +++++
 * Add support for the S1 SKU: `maps account create | update`: now supports 
`S1` as a valid value for the `--sku | -s` parameter.
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/azure-cli-maps-0.3.3/PKG-INFO 
new/azure-cli-maps-0.3.5/PKG-INFO
--- old/azure-cli-maps-0.3.3/PKG-INFO   2018-12-14 18:44:06.000000000 +0100
+++ new/azure-cli-maps-0.3.5/PKG-INFO   2019-06-13 23:18:10.000000000 +0200
@@ -1,6 +1,6 @@
 Metadata-Version: 1.1
 Name: azure-cli-maps
-Version: 0.3.3
+Version: 0.3.5
 Summary: Microsoft Azure Command-Line Tools Maps Command Module
 Home-page: https://github.com/Azure/azure-cli
 Author: Microsoft Corporation
@@ -20,6 +20,14 @@
         Release History
         ===============
         
+        0.3.5
+        +++++
+        * Minor fixes.
+        
+        0.3.4
+        +++++
+        * Minor fixes.
+        
         0.3.3
         +++++
         * Add support for the S1 SKU: `maps account create | update`: now 
supports `S1` as a valid value for the `--sku | -s` parameter.
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/azure-cli-maps-0.3.3/azure/cli/command_modules/maps/__init__.py 
new/azure-cli-maps-0.3.5/azure/cli/command_modules/maps/__init__.py
--- old/azure-cli-maps-0.3.3/azure/cli/command_modules/maps/__init__.py 
2018-12-14 18:43:41.000000000 +0100
+++ new/azure-cli-maps-0.3.5/azure/cli/command_modules/maps/__init__.py 
2019-06-13 23:17:46.000000000 +0200
@@ -13,12 +13,13 @@
 
     def __init__(self, cli_ctx=None):
         from azure.cli.core.commands import CliCommandType
+        from azure.cli.core.profiles import ResourceType
         custom_type = CliCommandType(
             operations_tmpl='azure.cli.command_modules.maps.custom#{}',
             client_factory=cf_accounts)
         super(MapsCommandsLoader, self).__init__(cli_ctx=cli_ctx,
                                                  
custom_command_type=custom_type,
-                                                 
min_profile='2017-03-10-profile')
+                                                 
resource_type=ResourceType.MGMT_MAPS)
 
     def load_command_table(self, args):
         from azure.cli.command_modules.maps.commands import load_command_table
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/azure-cli-maps-0.3.3/azure/cli/command_modules/maps/commands.py 
new/azure-cli-maps-0.3.5/azure/cli/command_modules/maps/commands.py
--- old/azure-cli-maps-0.3.3/azure/cli/command_modules/maps/commands.py 
2018-12-14 18:43:41.000000000 +0100
+++ new/azure-cli-maps-0.3.5/azure/cli/command_modules/maps/commands.py 
2019-06-13 23:17:46.000000000 +0200
@@ -9,7 +9,7 @@
 
 def load_command_table(self, _):
     mgmt_type = CliCommandType(
-        
operations_tmpl='azure.mgmt.maps.operations.accounts_operations#AccountsOperations.{}',
+        operations_tmpl='azure.mgmt.maps.operations#AccountsOperations.{}',
         client_factory=cf_accounts)
 
     with self.command_group('maps account', mgmt_type) as g:
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/azure-cli-maps-0.3.3/azure_cli_maps.egg-info/PKG-INFO 
new/azure-cli-maps-0.3.5/azure_cli_maps.egg-info/PKG-INFO
--- old/azure-cli-maps-0.3.3/azure_cli_maps.egg-info/PKG-INFO   2018-12-14 
18:44:06.000000000 +0100
+++ new/azure-cli-maps-0.3.5/azure_cli_maps.egg-info/PKG-INFO   2019-06-13 
23:18:10.000000000 +0200
@@ -1,6 +1,6 @@
 Metadata-Version: 1.1
 Name: azure-cli-maps
-Version: 0.3.3
+Version: 0.3.5
 Summary: Microsoft Azure Command-Line Tools Maps Command Module
 Home-page: https://github.com/Azure/azure-cli
 Author: Microsoft Corporation
@@ -20,6 +20,14 @@
         Release History
         ===============
         
+        0.3.5
+        +++++
+        * Minor fixes.
+        
+        0.3.4
+        +++++
+        * Minor fixes.
+        
         0.3.3
         +++++
         * Add support for the S1 SKU: `maps account create | update`: now 
supports `S1` as a valid value for the `--sku | -s` parameter.
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/azure-cli-maps-0.3.3/setup.py 
new/azure-cli-maps-0.3.5/setup.py
--- old/azure-cli-maps-0.3.3/setup.py   2018-12-14 18:43:41.000000000 +0100
+++ new/azure-cli-maps-0.3.5/setup.py   2019-06-13 23:17:46.000000000 +0200
@@ -13,7 +13,7 @@
     logger.warn("Wheel is not available, disabling bdist_wheel hook")
     cmdclass = {}
 
-VERSION = "0.3.3"
+VERSION = "0.3.5"
 
 # The full list of classifiers is available at
 # https://pypi.python.org/pypi?%3Aaction=list_classifiers


Reply via email to