Skip to content

Commit 0818eec

Browse files
committed
Fixing version numeration error.
1 parent d855b9a commit 0818eec

File tree

4 files changed

+8
-7
lines changed

4 files changed

+8
-7
lines changed

CommandLine.sln.DotSettings.user

+1-1
Large diffs are not rendered by default.

README.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Command Line Parser Library 1.9.7.2 stable for CLR.
1+
Command Line Parser Library 1.9.71.2 stable 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.__
@@ -108,6 +108,7 @@ Latest Changes:
108108
---
109109
- Promoted to stable.
110110
- Implicit name is now available on ``OptionAttribute`` and ``OptionListAttribute``.
111+
- Fixing version numeration error.
111112

112113
Contacts:
113114
---

Rakefile.rb

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
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.7.2"
4-
INF_VERSION = "1.9.7-stable"
3+
VERSION = "1.9.71.2"
4+
INF_VERSION = "1.9.71-stable"
55
AUTHOR = "Giacomo Stelluti Scala"
66
COPYRIGHT = "Copyright (c) 2005 - 2013 " + AUTHOR
77
LICENSE_URL = "https://raw.github.com/gsscoder/commandline/master/doc/LICENSE"

src/SharedAssemblyInfo.cs

+3-3
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.7.2")]
32-
[assembly: AssemblyFileVersion("1.9.7.2")]
31+
[assembly: AssemblyVersion("1.9.71.2")]
32+
[assembly: AssemblyFileVersion("1.9.71.2")]
3333

34-
[assembly: AssemblyInformationalVersion("1.9.7-stable")]
34+
[assembly: AssemblyInformationalVersion("1.9.71-stable")]
3535
[assembly: NeutralResourcesLanguage("en-US")]

0 commit comments

Comments
 (0)