File tree Expand file tree Collapse file tree 7 files changed +15
-8
lines changed
src/main/csharp/DocRaptor Expand file tree Collapse file tree 7 files changed +15
-8
lines changed Original file line number Diff line number Diff line change 1+ ### 1.0.0 [ October 18, 2016]
2+ * No significant code changes
3+
14### 0.4.0 [ September 26, 2016]
25* Added support for prince_options[ no_parallel_downloads]
36
Original file line number Diff line number Diff line change 33 <metadata >
44 <id >DocRaptor</id >
55 <title >DocRaptor</title >
6- <version >0.4 .0</version >
6+ <version >1.0 .0</version >
77 <authors >Elijah Miller</authors >
88 <owners >Elijah Miller</owners >
99 <licenseUrl >http://www.apache.org/licenses/LICENSE-2.0</licenseUrl >
Original file line number Diff line number Diff line change @@ -40,7 +40,7 @@ using System.IO;
4040
4141class Example {
4242 static void Main (string [] args ) {
43- Configuration .Username = " YOUR_API_KEY_HERE" ; // this key works for test documents
43+ Configuration .Default . Username = " YOUR_API_KEY_HERE" ; // this key works for test documents
4444 DocApi docraptor = new DocApi ();
4545
4646 Doc doc = new Doc (
@@ -61,7 +61,7 @@ class Example {
6161}
6262```
6363
64- Docs created like this are limited to 60 seconds to render, check out the [ async example] ( examples/Async .cs ) which allows 10 minutes.
64+ Docs created like this are limited to 60 seconds to render, check out the [ async example] ( examples/async .cs ) which allows 10 minutes.
6565
6666We have guides for doing some of the common things:
6767
Original file line number Diff line number Diff line change 1414
1515(
1616 cd swagger-codegen
17+ if [[ " ${# SWAGGER_CODGEN_REVISION} " -lt 40 ]]; then
18+ # resolve git tags / branch names
19+ SWAGGER_CODGEN_REVISION=$( git show " $SWAGGER_CODGEN_REVISION " --format=" %H" )
20+ fi
1721 if [[ $( cat .git/HEAD) != " $SWAGGER_CODGEN_REVISION " ]]; then
1822 git fetch
1923 git checkout " $SWAGGER_CODGEN_REVISION "
Original file line number Diff line number Diff 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.3.1 " ;
71+ public const string Version = "1.0.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.2.0\n " ;
270- report += " SDK Package Version: 0.3.1 \n " ;
270+ report += " SDK Package Version: 1.1.0 \n " ;
271271
272272 return report ;
273273 }
Original file line number Diff line number Diff line change 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.3.1 " ) ]
32- [ assembly: AssemblyFileVersion ( "0.3.1 " ) ]
31+ [ assembly: AssemblyVersion ( "1.0.0 " ) ]
32+ [ assembly: AssemblyFileVersion ( "1.0.0 " ) ]
Original file line number Diff line number Diff line change 11{
22 "packageName" : " DocRaptor" ,
3- "packageVersion" : " 0.4 .0"
3+ "packageVersion" : " 1.0 .0"
44}
You can’t perform that action at this time.
0 commit comments