Skip to content

Commit 84f77a7

Browse files
Merge pull request #265 from microsoftgraph/UpdateAssemblyVersion
Updated package/assembly version, added release notes.
2 parents 7f0789b + a44e028 commit 84f77a7

File tree

4 files changed

+28
-22
lines changed

4 files changed

+28
-22
lines changed

src/Microsoft.Graph.Core/Microsoft.Graph.Core.csproj

Lines changed: 9 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -3,20 +3,22 @@
33
<Description>Microsoft Graph Core Client Library implements core functionality used by Microsoft Graph Client Libraries.</Description>
44
<Copyright>Copyright (c) Microsoft Corporation</Copyright>
55
<AssemblyTitle>Microsoft Graph Core Client Library</AssemblyTitle>
6-
<VersionPrefix>1.8.0</VersionPrefix>
7-
<FileVersion>1.8.0</FileVersion>
8-
<AssemblyVersion>1.8.0</AssemblyVersion>
6+
<VersionPrefix>1.9.0</VersionPrefix>
7+
<FileVersion>1.9.0</FileVersion>
8+
<AssemblyVersion>1.9.0</AssemblyVersion>
99
<Authors>Microsoft</Authors>
1010
<TargetFrameworks>netstandard1.1;net45</TargetFrameworks>
1111
<PreserveCompilationContext>false</PreserveCompilationContext>
1212
<AssemblyName>Microsoft.Graph.Core</AssemblyName>
1313
<PackageId>Microsoft.Graph.Core</PackageId>
1414
<PackageTags>Microsoft Office365;Graph;GraphServiceClient;Outlook;OneDrive;AzureAD;GraphAPI;Productivity;SharePoint;Intune;SDK</PackageTags>
1515
<PackageReleaseNotes>
16-
March 2018 Release Summary (version 1.8.0)
16+
May 2018 Release Summary (version 1.9.0)
1717

18-
New features
19-
* Update Json.NET dependency to include 11.x
18+
New features
19+
- Added more comments.
20+
- Added response headers and status to all calls that return a non-stream object.
21+
- Added SerializeObject method to MockSerializer.
2022
</PackageReleaseNotes>
2123
<PackageProjectUrl>https://developer.microsoft.com/graph</PackageProjectUrl>
2224
<PackageLicenseUrl>http://aka.ms/devservicesagreement</PackageLicenseUrl>
@@ -36,7 +38,7 @@
3638
<DelaySign>True</DelaySign>
3739
<AssemblyOriginatorKeyFile>35MSSharedLib1024.snk</AssemblyOriginatorKeyFile>
3840
<AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
39-
<Version>1.8.0</Version>
41+
<Version>1.9.0</Version>
4042
</PropertyGroup>
4143
<PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Debug|netstandard1.1|AnyCPU'">
4244
<DocumentationFile>bin\Release\netstandard1.1\Microsoft.Graph.Core.xml</DocumentationFile>

src/Microsoft.Graph.Core/Properties/AssemblyInfo.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,8 @@
2424
//
2525
// You can specify all the values or you can default the Build and Revision Numbers
2626
// by using the '*' as shown below:
27-
[assembly: AssemblyVersion("1.8.0")]
28-
[assembly: AssemblyFileVersion("1.8.0.0")]
27+
[assembly: AssemblyVersion("1.9.0")]
28+
[assembly: AssemblyFileVersion("1.9.0.0")]
2929

3030
#if DEBUG
3131
[assembly: InternalsVisibleTo("Microsoft.Graph.Core.Test")]

src/Microsoft.Graph/Microsoft.Graph.csproj

Lines changed: 15 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -3,24 +3,28 @@
33
<Description>Microsoft Graph Client Library allows you to call Office 365, Azure AD and other Microsoft services through a single unified developer experience.</Description>
44
<Copyright>Copyright (c) Microsoft Corporation</Copyright>
55
<AssemblyTitle>Microsoft Graph Client Library</AssemblyTitle>
6-
<VersionPrefix>1.8.0</VersionPrefix>
7-
<FileVersion>1.8.0</FileVersion>
8-
<AssemblyVersion>1.8.0</AssemblyVersion>
6+
<VersionPrefix>1.9.0</VersionPrefix>
7+
<FileVersion>1.9.0</FileVersion>
8+
<AssemblyVersion>1.9.0</AssemblyVersion>
99
<Authors>Microsoft</Authors>
1010
<TargetFrameworks>netstandard1.1;net45</TargetFrameworks>
1111
<PreserveCompilationContext>false</PreserveCompilationContext>
1212
<AssemblyName>Microsoft.Graph</AssemblyName>
1313
<PackageId>Microsoft.Graph</PackageId>
1414
<PackageTags>Microsoft Office365;Graph;GraphServiceClient;Outlook;OneDrive;AzureAD;GraphAPI;Productivity;SharePoint;Intune;SDK</PackageTags>
1515
<PackageReleaseNotes>
16-
March 2018 Release Summary (version 1.8.0)
16+
May 2018 Release Summary (version 1.9.0)
1717

18-
New features
19-
* Include support for the Reports API. This gives you access to Office 365 usage reports for Outlook, users, groups, OneDrive, SharePoint, Skype for Business and Yammer. See https://developer.microsoft.com/en-us/graph/docs/api-reference/v1.0/resources/report for more information.
20-
* Updated IntelliSense file with new documentation.
21-
* Include support for the Intune API. This enables programmatic access to Intune information for your tenant with rich information and relationship navigation. See https://developer.microsoft.com/en-us/graph/docs/api-reference/v1.0/resources/intune_graph_overview for more information.
22-
* Include support for the Education API. This enhances Office 365 resources and data with information that is relevant for education scnearios, including schools, students, teachers, classes, and enrollments. See https://developer.microsoft.com/en-us/graph/docs/api-reference/v1.0/resources/education-overview for more information.
23-
* Update Json.NET dependency to include 11.x
18+
New features
19+
- Added more comments.
20+
- UserActivity - apps can push information to the user's timeline.
21+
- Updated timezone information.
22+
- Updates to Intune functionality.
23+
- New Outlook functionality which includes an OutlookUser object, categories, coordinates, message rules, and working hours.
24+
- New OneNote functionality which includes a notebook's site collection.
25+
26+
Bug fixes
27+
- Fixed Site GetByPath
2428
</PackageReleaseNotes>
2529
<PackageProjectUrl>https://developer.microsoft.com/graph</PackageProjectUrl>
2630
<PackageLicenseUrl>http://aka.ms/devservicesagreement</PackageLicenseUrl>
@@ -40,7 +44,7 @@
4044
<DelaySign>True</DelaySign>
4145
<AssemblyOriginatorKeyFile>35MSSharedLib1024.snk</AssemblyOriginatorKeyFile>
4246
<AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
43-
<Version>1.8.0</Version>
47+
<Version>1.9.0</Version>
4448
</PropertyGroup>
4549
<PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Debug|netstandard1.1|AnyCPU'">
4650
<DocumentationFile>bin\Release\Microsoft.Graph.xml</DocumentationFile>

src/Microsoft.Graph/Properties/AssemblyInfo.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,8 @@
2424
//
2525
// You can specify all the values or you can default the Build and Revision Numbers
2626
// by using the '*' as shown below:
27-
[assembly: AssemblyVersion("1.8.0")]
28-
[assembly: AssemblyFileVersion("1.8.0.0")]
27+
[assembly: AssemblyVersion("1.9.0")]
28+
[assembly: AssemblyFileVersion("1.9.0.0")]
2929

3030
#if DEBUG
3131
[assembly: InternalsVisibleTo("Microsoft.Graph.Test")]

0 commit comments

Comments
 (0)