Skip to content

Commit 4c1338f

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

File tree

6 files changed

+20
-7
lines changed

6 files changed

+20
-7
lines changed

CHANGELOG.rst

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,19 @@ Changelog
22
=========
33

44

5+
6+
v0.9.6
7+
-------
8+
9+
This is a feature update and bug fix release with these updates:
10+
11+
* Honor again PrivateAssets, IncludeAssets and ExcludeAssets flags of
12+
PackageReferences.
13+
14+
* Accept duplicated PackageReferences and use the first one the same way dotnet
15+
does it.
16+
17+
518
v0.9.5
619
-------
720

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.6-beta2 \
20+
-p:Version=0.9.6 \
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.6-beta2
19+
VERSION=0.9.6
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.6-beta2
4+
current_version = 0.9.6
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.6-beta2";
9+
public static string NUGET_INSPECTOR_VERSION = "0.9.6";
1010
}

src/nuget-inspector/nuget-inspector.csproj

Lines changed: 3 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.6-beta2</Version>
26+
<Version>0.9.6</Version>
2727
<Authors>nexB Inc.</Authors>
2828
<Company>nexB Inc</Company>
29-
<AssemblyVersion>0.9.6.2</AssemblyVersion>
30-
<FileVersion>0.9.6.2</FileVersion>
29+
<AssemblyVersion>0.9.6.0</AssemblyVersion>
30+
<FileVersion>0.9.6.0</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>

0 commit comments

Comments
 (0)