Skip to content

Commit 7e1448a

Browse files
committed
Upgrading version.
1 parent 919a8f0 commit 7e1448a

File tree

4 files changed

+6
-4
lines changed

4 files changed

+6
-4
lines changed

README.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Command Line Parser Library 1.9.5.0 rc0 for CLR.
1+
Command Line Parser Library 1.9.5.1 rc0 for CLR.
22
===
33
The Command Line Parser Library offers to CLR applications a clean and concise API for manipulating command line arguments and related tasks defining switches, options and verb commands. It allows you to display an help screen with an high degree of customization and a simple way to report syntax errors to the end user. Everything that is boring and repetitive to be programmed stands up on library shoulders, letting developers concentrate on core logic.
44
__This library provides _hassle free_ command line parsing with a constantly updated API since 2005.__
@@ -103,6 +103,7 @@ Resources for newcomers:
103103

104104
Latest Changes:
105105
---
106+
- Fixed issue #6.
106107
- Heavy refactoring on Public API (see this [this document](https://github.com/gsscoder/commandline/blob/master/doc/PublicAPI.md) and [ChangeLog](https://github.com/gsscoder/commandline/blob/master/doc/ChangeLog)).
107108
- StyleCop-ped!
108109
- Fixed issue #15. Added OptionInfo::ReceivedValue to solve an issue in OptionMap::EnforceRequiredRule.

Rakefile.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
PRODUCT = "Command Line Parser Library"
22
DESCRIPTION = "The Command Line Parser Library offers to CLR applications a clean and concise API for manipulating command line arguments and related tasks."
3-
VERSION = "1.9.5.0"
3+
VERSION = "1.9.5.1"
44
INF_VERSION = "1.9.5-rc0"
55
AUTHOR = "Giacomo Stelluti Scala"
66
COPYRIGHT = "Copyright (c) 2005 - 2013 " + AUTHOR

doc/ChangeLog

+1
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@
2828
- added HelpText::AutoBuild(object,string)
2929
* Namespace Core renamed Infrastructure.
3030
* Extensions methods refacored in one class per group.
31+
* Fixed issue #6.
3132

3233
2013-02-18 Giacomo Stelluti Scala <[email protected]>
3334

src/SharedAssemblyInfo.cs

+2-2
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,8 @@
2828

2929
[assembly: AssemblyProduct("Command Line Parser Library")]
3030
[assembly: AssemblyCopyright("Copyright (c) 2005 - 2013 Giacomo Stelluti Scala")]
31-
[assembly: AssemblyVersion("1.9.5.0")]
32-
[assembly: AssemblyFileVersion("1.9.5.0")]
31+
[assembly: AssemblyVersion("1.9.5.1")]
32+
[assembly: AssemblyFileVersion("1.9.5.1")]
3333

3434
[assembly: AssemblyInformationalVersion("1.9.5-rc0")]
3535
[assembly: NeutralResourcesLanguage("en-US")]

0 commit comments

Comments
 (0)