Skip to content

Commit

Permalink
Adds a Column type that affords conversions between column names and …
Browse files Browse the repository at this point in the history
…numbers.
  • Loading branch information
Sydney Du Plooy authored and Sydney Du Plooy committed May 24, 2018
1 parent a297c9e commit 90332ee
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions Celloc.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -2,15 +2,15 @@
<package >
<metadata>
<id>Celloc</id>
<version>2.4.0</version>
<version>2.5.0</version>
<title>Celloc</title>
<authors>Sydney du Plooy</authors>
<licenseUrl>https://github.com/sduplooy/Celloc/blob/master/LICENSE</licenseUrl>
<projectUrl>https://github.com/sduplooy/Celloc</projectUrl>
<iconUrl>https://raw.githubusercontent.com/wiki/sduplooy/Celloc/images/186401-64.png</iconUrl>
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<description>An Excel cell index converter.</description>
<releaseNotes>Adds methods to check whether a range has the same column or row.</releaseNotes>
<releaseNotes>Adds a Column type that affords conversions between column names and numbers.</releaseNotes>
<copyright>Copyright (c) 2018 Sydney du Plooy</copyright>
<tags>Celloc Excel Column Number Converter</tags>
<dependencies>
Expand Down
2 changes: 1 addition & 1 deletion Celloc/Column.cs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

namespace Celloc
{
internal static class Column
public static class Column
{
public static int ConvertToNumber(string column)
{
Expand Down
8 changes: 4 additions & 4 deletions Celloc/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,10 @@
// associated with an assembly.
[assembly: AssemblyTitle("Celloc")]
[assembly: AssemblyDescription("")]
[assembly: AssemblyConfiguration("")]
[assembly: AssemblyConfiguration("An Excel cell index converter.")]
[assembly: AssemblyCompany("")]
[assembly: AssemblyProduct("Celloc")]
[assembly: AssemblyCopyright("Copyright © 2018")]
[assembly: AssemblyCopyright("Copyright © 2018 Sydney du Plooy")]
[assembly: AssemblyTrademark("")]
[assembly: AssemblyCulture("")]

Expand All @@ -32,6 +32,6 @@
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("2.4.0")]
[assembly: AssemblyFileVersion("2.4.0")]
[assembly: AssemblyVersion("2.5.0")]
[assembly: AssemblyFileVersion("2.5.0")]
[assembly: InternalsVisibleTo("Celloc.Tests")]

0 comments on commit 90332ee

Please sign in to comment.