Skip to content

Commit

Permalink
Version 1.12.0
Browse files Browse the repository at this point in the history
  • Loading branch information
const-cloudinary committed Aug 17, 2020
1 parent 80f800b commit a7a0c04
Show file tree
Hide file tree
Showing 5 changed files with 33 additions and 5 deletions.
28 changes: 28 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,32 @@

1.12.0 / 2020-08-17
===================

New functionality
-----------------

* Add Account Provisioning - User Management API
* Add `DownloadSprite` and `DownloadMulti` helpers
* Add `DownloadFolder` helper
* Add support for `Date` in `Usage` Admin API
* Add enhanced quality scores to `QualityAnalysis` result

Other Changes
-------------

* Fix unicode filename handling in upload API
* Fix support for integer parameter value
* Fix `UpdateTransform` Admin API
* Fix `CustomFunction` causes exception in Transformation
* Detect data URLs with a suffix in mime type
* Make response objects setters public
* Improve visibility of supported frameworks in nuspec
* Enable code style rules
* Normalise line endings
* Add pull request template
* Add an attribute that retries one test with delay
* Add CONTRIBUTING.md

1.11.0 / 2020-05-28
===================

Expand Down
4 changes: 2 additions & 2 deletions Cloudinary/Cloudinary.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,9 @@
<RepositoryUrl>https://github.com/cloudinary/CloudinaryDotNet</RepositoryUrl>
<PackageIconUrl>http://res.cloudinary.com/cloudinary/image/upload/c_scale,w_64/v1/logo/for_white_bg/cloudinary_icon_for_white_bg.png</PackageIconUrl>
<PackageLicenseUrl>https://github.com/cloudinary/CloudinaryDotNet/blob/master/LICENSE</PackageLicenseUrl>
<Version>1.11.0</Version>
<Version>1.12.0</Version>
<PackageTags>Image Video Responsive Web Utility CDN Performance Resize Crop Rotate Quality Watermark Gif Jpg Jpeg Bitmap PNG Tiff Webp Webm mp4 avi Filter Effect</PackageTags>
<FileVersion>1.11.0</FileVersion>
<FileVersion>1.12.0</FileVersion>
<RootNamespace>CloudinaryDotNet</RootNamespace>
<AssemblyName>CloudinaryDotNet</AssemblyName>
</PropertyGroup>
Expand Down
2 changes: 1 addition & 1 deletion CloudinaryDotNet.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<package xmlns="http://schemas.microsoft.com/packaging/2010/07/nuspec.xsd">
<metadata>
<id>CloudinaryDotNet</id>
<version>1.11.0</version>
<version>1.12.0</version>
<title>Cloudinary DotNet Library</title>
<authors>Cloudinary</authors>
<owners>Cloudinary</owners>
Expand Down
2 changes: 1 addition & 1 deletion Core/CloudinaryDotNet.Core.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
<GenerateAssemblyProductAttribute>false</GenerateAssemblyProductAttribute>
<RootNamespace>CloudinaryDotNet</RootNamespace>
<Authors>Cloudinary</Authors>
<Version>1.11.0</Version>
<Version>1.12.0</Version>
<GeneratePackageOnBuild>false</GeneratePackageOnBuild>
<Description>Official client library for easily integrating with the Cloudinary service</Description>
<PackageTags>Image Video Responsive Web Utility CDN Performance Resize Crop Rotate Quality Watermark Gif Jpg Jpeg Bitmap PNG Tiff Webp Webm mp4 avi Filter Effect</PackageTags>
Expand Down
2 changes: 1 addition & 1 deletion Shared/CloudinaryVersion.cs
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,6 @@ internal static class CloudinaryVersion
/// <summary>
/// Gets full version number of Cloudinary .NET SDK.
/// </summary>
public static string Full => "1.11.0";
public static string Full => "1.12.0";
}
}

0 comments on commit a7a0c04

Please sign in to comment.