Skip to content

Commit d41df19

Browse files
committed
Bump version to 0.9.6-beta1
Signed-off-by: Philippe Ombredanne <pombredanne@nexb.com>
1 parent 0bd789c commit d41df19

File tree

5 files changed

+8
-7
lines changed

5 files changed

+8
-7
lines changed

build.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,6 @@ dotnet publish \
1717
--runtime linux-x64 \
1818
--self-contained true \
1919
--configuration Release \
20-
-p:Version=0.9.5 \
20+
-p:Version=0.9.6-beta1 \
2121
--output build \
2222
src/nuget-inspector/nuget-inspector.csproj

release.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
rm -rf release/
1717
mkdir release
1818

19-
VERSION=0.9.5
19+
VERSION=0.9.6-beta1
2020

2121
TARGET_BASE=nuget-inspector-$(git describe)
2222

setup.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[bumpversion]
22
commit = False
33
tag = False
4-
current_version = 0.9.5
4+
current_version = 0.9.6-beta1
55
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)(\-(?P<release>[a-z]+))?
66
serialize =
77
{major}.{minor}.{patch}-{release}

src/nuget-inspector/Config.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,5 +6,5 @@ public static class Config
66
public static bool TRACE_NET = false;
77
public static bool TRACE_DEEP = false;
88
public static bool TRACE_META = false;
9-
public static string NUGET_INSPECTOR_VERSION = "0.9.5";
9+
public static string NUGET_INSPECTOR_VERSION = "0.9.6-beta1";
1010
}

src/nuget-inspector/nuget-inspector.csproj

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,11 +23,11 @@
2323
<PackageId>nuget-inspector</PackageId>
2424
<Product>nuget-inspector</Product>
2525
<AssemblyName>nuget-inspector</AssemblyName>
26-
<Version>0.9.5</Version>
26+
<Version>0.9.6-beta1</Version>
2727
<Authors>nexB Inc.</Authors>
2828
<Company>nexB Inc</Company>
29-
<AssemblyVersion>0.9.5.0</AssemblyVersion>
30-
<FileVersion>0.9.5.0</FileVersion>
29+
<AssemblyVersion>0.9.6.1</AssemblyVersion>
30+
<FileVersion>0.9.6.1</FileVersion>
3131
<Description>A NuGet and Dotnet package dependency resolver</Description>
3232
<PackageProjectUrl>https://github.com/nexB/nuget-inspector</PackageProjectUrl>
3333
<PackageLicenseUrl>Apache-2.0 AND MIT</PackageLicenseUrl>
@@ -43,6 +43,7 @@
4343
<PackageReference Include="Mono.Options" Version="6.12.0.148" />
4444
<PackageReference Include="NuGet.Common" Version="6.4.0" />
4545
<PackageReference Include="NuGet.Configuration" Version="6.4.0" />
46+
<PackageReference Include="NuGet.Build.Tasks.Console" Version="6.4.0" />
4647
<PackageReference Include="NuGet.Frameworks" Version="6.4.0" />
4748
<PackageReference Include="NuGet.LibraryModel" Version="6.4.0" />
4849
<PackageReference Include="NuGet.PackageManagement" Version="6.4.0" />

0 commit comments

Comments
 (0)