Skip to content

Commit ccd1104

Browse files
authored
release/azure-communication-identity/1.2.0 (Azure#25837)
* version is updated for the release * fixed mindependency issue for msrest & azure-core
1 parent 5c0d6dd commit ccd1104

File tree

11 files changed

+40
-36
lines changed

11 files changed

+40
-36
lines changed

sdk/communication/azure-communication-chat/setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -61,8 +61,8 @@
6161
'pytyped': ['py.typed'],
6262
},
6363
install_requires=[
64-
"msrest>=0.6.21",
65-
"azure-core<2.0.0,>=1.23.0",
64+
"msrest>=0.7.1",
65+
"azure-core<2.0.0,>=1.24.0",
6666
'six>=1.11.0'
6767
],
6868
extras_require={

sdk/communication/azure-communication-email/setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -70,9 +70,9 @@
7070
'pytyped': ['py.typed'],
7171
},
7272
install_requires=[
73-
'msrest>=0.6.21',
73+
'msrest>=0.7.1',
7474
'azure-common~=1.1',
75-
'azure-mgmt-core>=1.3.1,<2.0.0',
75+
'azure-mgmt-core>=1.3.2,<2.0.0',
7676
],
7777
python_requires=">=3.6"
7878
)

sdk/communication/azure-communication-identity/CHANGELOG.md

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,12 @@
11
# Release History
22

3-
## 1.1.1 (Unreleased)
3+
## 1.2.0 (2022-08-24)
44

55
### Features Added
66

77
- Exported types `MicrosoftTeamsUserIdentifier`, `PhoneNumberIdentifier`, `UnknownIdentifier` for non Azure Communication Services `CommunicationIdentifier` identities. Exported related types: `MicrosoftTeamsUserProperties` and `PhoneNumberProperties`.
88
- Added `identifier_from_raw_id` and ensured that `CommunicationIdentifier.raw_id` is populated on creation. Together, these can be used to translate between a `CommunicationIdentifier` and its underlying canonical raw ID representation. Developers can now use the raw ID as an encoded format for identifiers to store in their databases or as stable keys in general.
99

10-
### Breaking Changes
11-
12-
### Bugs Fixed
13-
14-
### Other Changes
15-
1610
## 1.1.0 (2022-08-01)
1711

1812
### Features Added

sdk/communication/azure-communication-identity/azure/communication/identity/_version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,6 @@
44
# license information.
55
# --------------------------------------------------------------------------
66

7-
VERSION = "1.1.1"
7+
VERSION = "1.2.0"
88

99
SDK_MONIKER = "communication-identity/{}".format(VERSION) # type: str

sdk/communication/azure-communication-identity/setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -64,8 +64,8 @@
6464
},
6565
python_requires=">=3.7",
6666
install_requires=[
67-
"msrest>=0.6.21",
68-
"azure-core<2.0.0,>=1.23.0"
67+
"msrest>=0.7.1",
68+
"azure-core<2.0.0,>=1.24.0"
6969
],
7070
extras_require={
7171
":python_version<'3.8'": ["typing-extensions"]

sdk/communication/azure-communication-networktraversal/setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -66,8 +66,8 @@
6666
},
6767
python_requires=">=3.6",
6868
install_requires=[
69-
"msrest>=0.6.21",
70-
"azure-core<2.0.0,>=1.23.0"
69+
"msrest>=0.7.1",
70+
"azure-core<2.0.0,>=1.24.0"
7171
],
7272
extras_require={
7373
":python_version<'3.8'": ["typing-extensions"]

sdk/communication/azure-communication-phonenumbers/setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -65,8 +65,8 @@
6565
},
6666
python_requires=">=3.6",
6767
install_requires=[
68-
"msrest>=0.6.21",
69-
'azure-core<2.0.0,>=1.23.0',
68+
"msrest>=0.7.1",
69+
'azure-core<2.0.0,>=1.24.0',
7070
],
7171
extras_require={
7272
":python_version<'3.8'": ["typing-extensions"]

sdk/communication/azure-communication-rooms/setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@
6363
),
6464
install_requires=[
6565
"azure-core<2.0.0,>=1.24.0",
66-
"msrest>=0.6.21",
66+
"msrest>=0.7.1",
6767
'six>=1.11.0',
6868
],
6969
python_requires=">=3.6",

sdk/communication/azure-communication-sms/setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -65,8 +65,8 @@
6565
},
6666
python_requires=">=3.6",
6767
install_requires=[
68-
'azure-core<2.0.0,>=1.15.0',
69-
'msrest>=0.6.21',
68+
'azure-core<2.0.0,>=1.24.0',
69+
'msrest>=0.7.1',
7070
'six>=1.11.0'
7171
],
7272
extras_require={

sdk/communication/azure-mgmt-communication/setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -70,9 +70,9 @@
7070
'pytyped': ['py.typed'],
7171
},
7272
install_requires=[
73-
'msrest>=0.6.21',
73+
'msrest>=0.7.1',
7474
'azure-common~=1.1',
75-
'azure-mgmt-core>=1.3.1,<2.0.0',
75+
'azure-mgmt-core>=1.3.2,<2.0.0',
7676
],
7777
python_requires=">=3.6"
7878
)

0 commit comments

Comments
 (0)