File tree Expand file tree Collapse file tree 6 files changed +20
-7
lines changed Expand file tree Collapse file tree 6 files changed +20
-7
lines changed Original file line number Diff line number Diff line change @@ -2,6 +2,19 @@ Changelog
2
2
=========
3
3
4
4
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
+
5
18
v0.9.5
6
19
-------
7
20
Original file line number Diff line number Diff line change @@ -17,6 +17,6 @@ dotnet publish \
17
17
--runtime linux-x64 \
18
18
--self-contained true \
19
19
--configuration Release \
20
- -p:Version=0.9.6-beta2 \
20
+ -p:Version=0.9.6 \
21
21
--output build \
22
22
src/nuget-inspector/nuget-inspector.csproj
Original file line number Diff line number Diff line change 16
16
rm -rf release/
17
17
mkdir release
18
18
19
- VERSION=0.9.6-beta2
19
+ VERSION=0.9.6
20
20
21
21
TARGET_BASE=nuget-inspector-$( git describe)
22
22
Original file line number Diff line number Diff line change 1
1
[bumpversion]
2
2
commit = False
3
3
tag = False
4
- current_version = 0.9.6-beta2
4
+ current_version = 0.9.6
5
5
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)(\-(?P<release>[a-z]+))?
6
6
serialize =
7
7
{major}.{minor}.{patch}-{release}
Original file line number Diff line number Diff line change @@ -6,5 +6,5 @@ public static class Config
6
6
public static bool TRACE_NET = false ;
7
7
public static bool TRACE_DEEP = false ;
8
8
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" ;
10
10
}
Original file line number Diff line number Diff line change 23
23
<PackageId >nuget-inspector</PackageId >
24
24
<Product >nuget-inspector</Product >
25
25
<AssemblyName >nuget-inspector</AssemblyName >
26
- <Version >0.9.6-beta2 </Version >
26
+ <Version >0.9.6</Version >
27
27
<Authors >nexB Inc.</Authors >
28
28
<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 >
31
31
<Description >A NuGet and Dotnet package dependency resolver</Description >
32
32
<PackageProjectUrl >https://github.com/nexB/nuget-inspector</PackageProjectUrl >
33
33
<PackageLicenseUrl >Apache-2.0 AND MIT</PackageLicenseUrl >
You can’t perform that action at this time.
0 commit comments