Skip to content

Commit 94d63a6

Browse files
committed
Released version 0.3.0.
1 parent 0a36c24 commit 94d63a6

File tree

5 files changed

+10
-6
lines changed

5 files changed

+10
-6
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
### 0.3.0 [March 11, 2016]
2+
* **BREAKING CHANGE**: Update interface for Doc initialization
3+
* Added support for prince_options[debug]
4+
15
### 0.2.0 [January 29, 2016]
26
* **BREAKING CHANGE**: Rename ClientApi to DocApi
37

DocRaptor.nuspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<metadata>
44
<id>DocRaptor</id>
55
<title>DocRaptor</title>
6-
<version>0.2.0</version>
6+
<version>0.3.0</version>
77
<authors>Elijah Miller</authors>
88
<owners>Elijah Miller</owners>
99
<licenseUrl>http://www.apache.org/licenses/LICENSE-2.0</licenseUrl>

src/main/csharp/DocRaptor/Client/Configuration.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ public Configuration(ApiClient apiClient)
6868
/// Version of the package.
6969
/// </summary>
7070
/// <value>Version of the package.</value>
71-
public const string Version = "0.2.0";
71+
public const string Version = "0.3.0";
7272

7373
/// <summary>
7474
/// Gets or sets the default Configuration.
@@ -267,7 +267,7 @@ public static String ToDebugReport()
267267
.GetReferencedAssemblies()
268268
.Where(x => x.Name == "System.Core").First().Version.ToString() + "\n";
269269
report += " Version of the API: 1.1.0\n";
270-
report += " SDK Package Version: 0.2.0\n";
270+
report += " SDK Package Version: 0.3.0\n";
271271

272272
return report;
273273
}

src/main/csharp/DocRaptor/Properties/AssemblyInfo.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,5 +28,5 @@
2828
// You can specify all the values or you can default the Build and Revision Numbers
2929
// by using the '*' as shown below:
3030
// [assembly: AssemblyVersion("1.0.*")]
31-
[assembly: AssemblyVersion("0.2.0")]
32-
[assembly: AssemblyFileVersion("0.2.0")]
31+
[assembly: AssemblyVersion("0.3.0")]
32+
[assembly: AssemblyFileVersion("0.3.0")]

swagger-config.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
{
22
"packageName": "DocRaptor",
3-
"packageVersion": "0.2.0"
3+
"packageVersion": "0.3.0"
44
}

0 commit comments

Comments
 (0)