Skip to content

Commit 4f49653

Browse files
committed
Current version pushed to nuget repository (as prerelease).
1 parent e63fc2a commit 4f49653

File tree

6 files changed

+29
-11
lines changed

6 files changed

+29
-11
lines changed

README.md

+3-2
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,8 @@ $ rake
3838

3939
To install:
4040
---
41-
- NuGet way: ``Install-Package CommandLineParser``
41+
- NuGet way (latest stable): ``Install-Package CommandLineParser``
42+
- NuGet way (latest version): ``Install-Package CommandLineParser -pre``
4243
- XCOPY way: ``cp CommandLine/src/libcmdline/*.cs To/Your/Project/Dir``
4344

4445
To start:
@@ -109,4 +110,4 @@ Contacts:
109110
Giacomo Stelluti Scala
110111
- gsscoder AT gmail DOT com
111112
- [Blog](http://gsscoder.blogspot.it)
112-
- [Twitter](http://twitter.com/gsscoder)
113+
- [Twitter](http://twitter.com/gsscoder)

Rakefile.rb

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
PRODUCT = "Command Line Parser Library"
22
DESCRIPTION = "Command Line Parser Library allows CLR applications to define a syntax for parsing command line arguments."
3-
INF_VERSION = "1.9"
4-
VERSION = INF_VERSION + ".4.209"
3+
VERSION = "1.9.4.209"
4+
INF_VERSION = VERSION + "-beta"
55
COPYRIGHT = "Copyright (c) 2005 - 2013 Giacomo Stelluti Scala"
66
LICENSE_URL = "https://raw.github.com/gsscoder/commandline/master/doc/LICENSE"
77
PROJECT_URL = "https://github.com/gsscoder/commandline"

doc/README

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ Command Line Parser Library
33
Project Author/Coordinator: Giacomo Stelluti Scala
44
Main Contributor(s): Steven Evans, Kevin Moore, Dan Nemec (nemec), Alexander Fast (mizipzor)
55
--------------------------------------------------------------------------------------------
6-
Version 1.9.4.207 beta (*1)
7-
Latest Update: 31-01-2013
6+
Version 1.9.4.209 beta (*1)
7+
Latest Update: 02-02-2013
88

99
Git home:
1010
https://github.com/gsscoder/commandline

nuget/CommandLine.nuspec

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?xml version="1.0"?>
22
<package xmlns="http://schemas.microsoft.com/packaging/2011/08/nuspec.xsd">
33
<metadata>
4-
<version>1.9.3.34</version>
4+
<version>1.9.4.209-beta</version>
55
<authors>Giacomo Stelluti Scala</authors>
66
<owners>Giacomo Stelluti Scala</owners>
77
<licenseUrl>https://github.com/gsscoder/commandline/blob/master/doc/LICENSE</licenseUrl>
@@ -11,7 +11,7 @@
1111
<title>Command Line Parser Library</title>
1212
<requireLicenseAcceptance>false</requireLicenseAcceptance>
1313
<description>The Command Line Parser Library offers to CLR applications a clean and concise API for manipulating command line arguments and related tasks.</description>
14-
<copyright>2005 - 2012 Giacomo Stelluti Scala</copyright>
14+
<copyright>2005 - 2013 Giacomo Stelluti Scala</copyright>
1515
<tags>Command Line Parser</tags>
1616
</metadata>
1717
<files>

nuget/readme.txt

+19-2
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,28 @@
1-
Command Line Parser Library 1.9.3.34 Stable
2-
-------------------------------------------
1+
Command Line Parser Library 1.9.4.209 Beta
2+
------------------------------------------
33
Giacomo Stelluti Scala
44
55

66
Codeplex: http://commandline.codeplex.com/
77
GitHub (Latest Sources, Updated Docs): https://github.com/gsscoder/commandline
88

9+
Upgrading from < 1.9.4.91 versions:
10+
-----------------------------------
11+
- Use System.Char for short name:
12+
[Option('o', "my-option", DefaultValue=10, HelpText="This is an option!")]
13+
public int MyOption { get; set; }
14+
- Receive parsing errors without CommandLineOptionsBase (removed):
15+
public class Options {
16+
[ParserState]
17+
public IParserState LastParserState { get; set; }
18+
}
19+
- Types rename:
20+
MultiLineTextAttribute -> MultilineTextAttribute (first 'L' -> lowercase)
21+
CommandLineParser -> Parser (suggestion: qualify with namespace -> CommandLine.Parser).
22+
ICommandLineParser -> IParser
23+
CommandLineParserSettings -> ParserSettings
24+
CommandLineParserException -> ParserException
25+
926
Upgrading from 1.8.* versions:
1027
------------------------------
1128
The major API change is that all attributes that inherits from BaseOptionAttribute now

src/CommonAssemblyInfo.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,5 +7,5 @@
77
[assembly: AssemblyVersion("1.9.4.209")]
88
[assembly: AssemblyFileVersion("1.9.4.209")]
99

10-
[assembly: AssemblyInformationalVersion("1.9")]
10+
[assembly: AssemblyInformationalVersion("1.9.4.209-beta")]
1111
[assembly: NeutralResourcesLanguage("en-US")]

0 commit comments

Comments
 (0)