Skip to content

Commit

Permalink
Version 1.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Amir Tocker committed Nov 21, 2017
1 parent dd26aa1 commit 595f3c8
Show file tree
Hide file tree
Showing 5 changed files with 48 additions and 4 deletions.
44 changes: 44 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,47 @@

1.1.0 / 2017-11-21
==================

# The CloudinaryDotNet now supports .net core and standard libraries.

The library has been split to a shared project, a Core project and Standard (Foundation) project.
The standard library is fully backwards compatible with the previous version.

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

* Search API
* Implemented async methods and tests.
* Added `access_mode` to RawUploadParams.
* AppVeyor CI
* Added `quality_override` param and cover test

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

* Upgrade project structure to VS 2017 and prepare version 1.1.0-rc1
* Update Nuget.exe
* Remove nupkg from git
* Fix http timeout
* Rearrange tests to enable `TestListResourcesByPublicIds`
* Implemented auto width params for transformation
* Fixed setter fo "All" parameter in delResParams class
* Gitignore fix
* Fixed test for upload mappings - removed unnecessary check.
* Fix typos and tests
* Fix `.gitignore`
* Update Readme to point to HTTPS URLs of cloudinary.com
* Added support for different resource_types in Rename and Tag
* Fixed setter for "all" property in DelResParam class.
* Removed test user credentials from appveyor configuration.
* Updated readme file.
* Create LICENSE
* Added `nuget.config`
* AppVeyor configuration.
* Added lock files.
* project structure rebuild to support netcore platform
* Implemented custom configuration section for cloudinary settings.

1.0.31 / 2017-05-04
===================

Expand Down
2 changes: 1 addition & 1 deletion Cloudinary/Cloudinary.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
<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.1.0-rc1</Version>
<Version>1.1.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.1.0</FileVersion>
</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.1.0-rc1</version>
<version>1.1.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 @@ -9,7 +9,7 @@
<GenerateAssemblyProductAttribute>false</GenerateAssemblyProductAttribute>
<RootNamespace>CloudinaryDotNet</RootNamespace>
<Authors>Cloudinary</Authors>
<Version>1.1.0-rc2</Version>
<Version>1.1.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 build.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ $regKey = "HKLM:\software\Microsoft\MSBuild\ToolsVersions\$dotNetVersion"
$regProperty = "MSBuildToolsPath"

$msbuildExe = join-path -path (Get-ItemProperty $regKey).$regProperty -childpath "msbuild.exe"

$msbuildExe = 'C:\Program Files (x86)\Microsoft Visual Studio\2017\Enterprise\MSBuild\15.0\Bin\MSBuild.exe'
&$msbuildExe Cloudinary\Cloudinary.csproj /t:"Build" /p:"Configuration="Release";TargetFrameworkVersion="v4.0";Sign="$sign""
dotnet build --configuration Release .\Core\CloudinaryDotNet.Core.csproj
.nuget\NuGet.exe pack CloudinaryDotNet.nuspec

0 comments on commit 595f3c8

Please sign in to comment.