Skip to content

Commit f467ad9

Browse files
authored
Merge pull request #62 from VJalili/dev
Set package version to v.4.0.0
2 parents d07fd1b + f68e9ae commit f467ad9

File tree

4 files changed

+13
-12
lines changed

4 files changed

+13
-12
lines changed

GeUtilities.Tests/GeUtilities.Tests.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
<PackageLicenseUrl>https://github.com/Genometric/GeUtilities/blob/master/LICENSE</PackageLicenseUrl>
1717
<PackageProjectUrl>https://github.com/Genometric/GeUtilities</PackageProjectUrl>
1818
<RepositoryUrl>https://github.com/Genometric/GeUtilities</RepositoryUrl>
19-
<Version>3.0.0</Version>
19+
<Version>4.0.0</Version>
2020
<Description>Implements unit test functions for the GeUtilities.</Description>
2121
<PackageTags>genomics; genome analysis; building-blocks; parser; BED; VCF; GTF; RefSeq;</PackageTags>
2222
<PackageReleaseNotes>A major overhaul on the interfaces, functions signatures, and namespace naming. Namely:

GeUtilities/GeUtilities.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
<PackageProjectUrl>https://github.com/Genometric/GeUtilities</PackageProjectUrl>
1111
<RepositoryUrl>https://github.com/Genometric/GeUtilities</RepositoryUrl>
1212
<RootNamespace>Genometric.GeUtilities</RootNamespace>
13-
<Version>3.0.0</Version>
13+
<Version>4.0.0</Version>
1414
<PackageRequireLicenseAcceptance>true</PackageRequireLicenseAcceptance>
1515
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
1616
<PackageId>Genometric.GeUtilities</PackageId>

GeUtilities/GeUtilities.nuspec

Lines changed: 10 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -10,15 +10,16 @@
1010
<projectUrl>https://github.com/Genometric/GeUtilities</projectUrl>
1111
<requireLicenseAcceptance>true</requireLicenseAcceptance>
1212
<description>Genome Utilities (GeUtilities) provides open-source building-blocks for genomic data analysis tools.</description>
13-
<releaseNotes>A major overhaul on the interfaces, functions signatures, and namespace naming. Namely:
14-
- Parsers constructors take least possible information, and all the other configuration could be set on an instance of the parser class;
15-
- Parsers now have two versions: generic and concrete type. This makes it simpler to user with minimal configuration while keeping generic design intact;
16-
- By moving source file name from constructor to Parse function, now single instance of Parser can be used to parse multiple files;
17-
- A major overhaul of classes inheritance with the objective of making them more coherent;
18-
- Can parse data with any delimiter (with default being `tab`);
19-
- Improved continues integration concerning code quality.
20-
</releaseNotes>
13+
<releaseNotes>
14+
A major overhaul on the interfaces, functions signatures, and namespace naming. Namely:
15+
- Parsers constructors take least possible information, and all the other configuration could be set on an instance of the parser class;
16+
- Parsers now have two versions: generic and concrete type. This makes it simpler to user with minimal configuration while keeping generic design intact;
17+
- By moving source file name from constructor to Parse function, now single instance of Parser can be used to parse multiple files;
18+
- A major overhaul of classes inheritance with the objective of making them more coherent;
19+
- Can parse data with any delimiter (with default being `tab`);
20+
- Improved continues integration concerning code quality.
21+
</releaseNotes>
2122
<copyright>Copyright 2018</copyright>
2223
<tags>Genome; Genomics; ChIP-seq; BED; GTF; VCF; RefSeq; Parser; NGS</tags>
2324
</metadata>
24-
</package>
25+
</package>

appveyor.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Common configuration for all branches
2-
version: '3.0.{build}'
2+
version: '4.0.{build}'
33
image: Visual Studio 2017
44

55
init:

0 commit comments

Comments
 (0)