Skip to content
This repository has been archived by the owner on Jan 19, 2022. It is now read-only.

Commit

Permalink
Released 1.2.0 GA
Browse files Browse the repository at this point in the history
  • Loading branch information
bbaia committed Nov 19, 2012
1 parent 17e4581 commit d7f28ac
Show file tree
Hide file tree
Showing 7 changed files with 33 additions and 11 deletions.
4 changes: 2 additions & 2 deletions Spring.Social.Dropbox.build
Expand Up @@ -18,13 +18,13 @@
<property name="product.url" value="http://www.springframework.net/" />
<property name="product.description" value="Allows you to connect your applications with Dropbox" />

<property name="product.version" value="1.1.0" />
<property name="product.version" value="1.2.0" />
<!-- alpha / beta# / rc# -->
<property name="product.releasetype" value="" />
<property name="product.fullname" value="${product.name} ${product.version}" if="${(product.releasetype == '')}" />
<property name="product.fullname" value="${product.name} ${product.version} (${product.releasetype})" if="${(product.releasetype != '')}" />

<property name="project.buildnumber" value="${math::abs(math::floor(timespan::get-total-days(datetime::now() - datetime::parse('2/01/2012'))))}" />
<property name="project.buildnumber" value="${math::abs(math::floor(timespan::get-total-days(datetime::now() - datetime::parse('7/01/2012'))))}" />
<property name="project.version" value="${product.version}.${project.buildnumber}" />
<property name="project.buildtype" value="dev" />
<property name="project.sign" value="false" overwrite="false" />
Expand Down
6 changes: 6 additions & 0 deletions breaking-changes.txt
@@ -1,3 +1,9 @@
Changes (1.1 to 1.2)
====================

1. New methods added to IDropbox interface [SPRNETSOCIALDB-6, SPRNETSOCIALDB-7 & SPRNETSOCIALDB-10]


Changes (1.0 to 1.1)
====================

Expand Down
16 changes: 16 additions & 0 deletions changelog.txt
Expand Up @@ -2,6 +2,22 @@ SPRING.NET SOCIAL DROPBOX CHANGELOG
===================================
http://www.springframework.net/social-dropbox/

Release Version 1.2.0 November 19, 2012

Bug
[SPRNETSOCIALDB-8] - Fix Dropbox path encoding with UTF-8 multi-byte characters
[SPRNETSOCIALDB-9] - DownloadFile methods returns null when getting an empty file

New Feature
[SPRNETSOCIALDB-6] - Add 'copy ref' feature support
[SPRNETSOCIALDB-7] - Add 'delta' feature support
[SPRNETSOCIALDB-10] - Add partial file download support

Task
[SPRNETSOCIALDB-11] - Update Spring Social version to 1.0.1


*******************************************************************************
Release Version 1.1.0 February 7, 2012

Bug
Expand Down
4 changes: 2 additions & 2 deletions doc/reference/src/index.xml
Expand Up @@ -9,11 +9,11 @@
<title>Spring.NET Social Framework extension for Dropbox</title>
<subtitle>Reference Documentation</subtitle>
<!-- auto-generated -->
<releaseinfo>1.1.0</releaseinfo>
<releaseinfo>1.2.0</releaseinfo>
<!-- auto-generated -->
<copyright>Copyright 2012 SpringSource</copyright>
<!-- auto-generated -->
<pubdate>Last Updated 11/9/2012</pubdate>
<pubdate>Last Updated 11/19/2012</pubdate>
<authorgroup>
<author>
<firstname>Bruno</firstname>
Expand Down
6 changes: 3 additions & 3 deletions readme.txt
@@ -1,11 +1,11 @@
The Spring.NET Social Dropbox project, Release 1.1.0 (February 7, 2012)
-----------------------------------------------------------------------
The Spring.NET Social Dropbox project, Release 1.2.0 (November 19, 2012)
------------------------------------------------------------------------
http://www.springframework.net/social-dropbox/


1. INTRODUCTION

The 1.1.0 release of Spring.NET Social Dropbox contains
The 1.2.0 release of Spring.NET Social Dropbox contains

* A Spring.NET Social extension with connection support and an API binding for Dropbox.

Expand Down
2 changes: 1 addition & 1 deletion setup/NuGet/src/Spring.Social.Dropbox.nuspec
Expand Up @@ -4,7 +4,7 @@
<id>Spring.Social.Dropbox</id>
<title>Spring.Social.Dropbox</title>
<!-- auto-generated -->
<version>1.1.0</version>
<version>1.2.0</version>
<iconUrl>http://springframework.net/images/SpringSource_Leaves32x32.png</iconUrl>
<projectUrl>http://www.springframework.net/social-dropbox/</projectUrl>
<licenseUrl>http://www.springframework.net/license.html</licenseUrl>
Expand Down
6 changes: 3 additions & 3 deletions src/CommonAssemblyInfo.cs
Expand Up @@ -14,11 +14,11 @@

[assembly: CLSCompliantAttribute(true)]
[assembly: ComVisibleAttribute(false)]
[assembly: AssemblyProductAttribute("Spring.NET Social Dropbox 1.1.0")]
[assembly: AssemblyProductAttribute("Spring.NET Social Dropbox 1.2.0")]
[assembly: AssemblyCompanyAttribute("http://www.springframework.net/")]
[assembly: AssemblyCopyrightAttribute("Copyright 2012 SpringSource")]
[assembly: AssemblyTrademarkAttribute("Apache License, Version 2.0")]
[assembly: AssemblyCultureAttribute("")]
[assembly: AssemblyVersionAttribute("1.1.0.0")]
[assembly: AssemblyConfigurationAttribute("1.1.0.0; dev")]
[assembly: AssemblyVersionAttribute("1.2.0.0")]
[assembly: AssemblyConfigurationAttribute("1.2.0.0; dev")]

0 comments on commit d7f28ac

Please sign in to comment.