Skip to content

Commit

Permalink
Version 1.11.0
Browse files Browse the repository at this point in the history
  • Loading branch information
const-cloudinary committed May 28, 2020
1 parent ee8a472 commit ac8673d
Show file tree
Hide file tree
Showing 5 changed files with 38 additions and 6 deletions.
32 changes: 32 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,36 @@

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

New functionality
-----------------
* Add `duration` and `initial_duration` predefined variables
* Add `CinemagraphAnalysis` parameter
* Add `AccessibilityAnalysis` parameter
* Add `CreateFolder` Admin API
* Add structured metadata support
* Add support for 32 char SHA-256 URL signatures
* Add support for `pow` operator
* Add support for `max_results` and `next_cursor` in Folders API

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

* Address some issues with NuGet package creation
* Fix API Url when private CDN is set
* Fix special characters escaping in API urls
* Verify protocol in CLOUDINARY_URL
* Fix type of `Requests` data member of `UsageResult`
* Implement more flexible way of boolean values deserialization
* Fix for serialization of transformation and tags for direct-upload input field
* Fix permissions issue when getting version in restricted environment
* Fix integration tests
* Update issue templates
* Fix/update admin upload api request response objects
* Fix `normalize_expression` when variable is named as a keyword
* Fix code style in AssemblyInfo
* Cleanup nuspec file

1.10.0 / 2020-01-29
===================

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.10.0</Version>
<Version>1.11.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.10.0</FileVersion>
<FileVersion>1.11.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.10.0</version>
<version>1.11.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.10.0</Version>
<Version>1.11.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
4 changes: 2 additions & 2 deletions Shared/CloudinaryVersion.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
namespace CloudinaryDotNet
namespace CloudinaryDotNet
{
/// <summary>
/// Contains information about release version.
Expand All @@ -8,6 +8,6 @@ internal static class CloudinaryVersion
/// <summary>
/// Gets full version number of Cloudinary .NET SDK.
/// </summary>
public static string Full => "1.10.0";
public static string Full => "1.11.0";
}
}

0 comments on commit ac8673d

Please sign in to comment.