File tree Expand file tree Collapse file tree 8 files changed +17
-9
lines changed Expand file tree Collapse file tree 8 files changed +17
-9
lines changed Original file line number Diff line number Diff line change 11Changelog
22=========
33
4+ v0.9.12
5+ --------
6+
7+ This is a minor bug fix release with this fix:
8+
9+ * Improve filtering of duplicated dependency names.
10+
11+
412v0.9.11
513--------
614
Original file line number Diff line number Diff line change @@ -31,7 +31,7 @@ RUN mkdir -p $NI_DOTNET_HOME \
3131 && curl --location https://aka.ms/dotnet/6.0/dotnet-sdk-linux-x64.tar.gz \
3232 | tar -C $NI_DOTNET_HOME -xz
3333
34- ARG NI_VERSION=0.9.11
34+ ARG NI_VERSION=0.9.12
3535RUN mkdir -p $NI_HOME \
3636 && curl -L https://github.com/nexB/nuget-inspector/releases/download/v${NI_VERSION}/nuget-inspector-v${NI_VERSION}-linux-x64.tar.gz \
3737 | tar --strip-components=1 -C $NI_HOME -xz
Original file line number Diff line number Diff line change @@ -28,7 +28,7 @@ RUN mkdir -p $NI_DOTNET_HOME \
2828 && curl --location https://aka.ms/dotnet/6.0/dotnet-sdk-linux-x64.tar.gz \
2929 | tar -C $NI_DOTNET_HOME -xz
3030
31- # ARG NI_VERSION=0.9.11
31+ # ARG NI_VERSION=0.9.12
3232# RUN mkdir -p $NI_HOME \
3333# && curl -L https://github.com/nexB/nuget-inspector/releases/download/v${NI_VERSION}/nuget-inspector-v${NI_VERSION}-linux-x64.tar.gz \
3434# | tar --strip-components=1 -C $NI_HOME -xz
Original file line number Diff line number Diff line change @@ -17,6 +17,6 @@ dotnet publish \
1717 --runtime linux-x64 \
1818 --self-contained true \
1919 --configuration Release \
20- -p:Version=0.9.11 \
20+ -p:Version=0.9.12 \
2121 --output build \
2222 src/nuget-inspector/nuget-inspector.csproj
Original file line number Diff line number Diff line change 1616rm -rf release/
1717mkdir release
1818
19- VERSION=0.9.11
19+ VERSION=0.9.12
2020
2121TARGET_BASE=nuget-inspector-$( git describe)
2222
Original file line number Diff line number Diff line change 11[bumpversion]
22commit = False
33tag = False
4- current_version = 0.9.11
4+ current_version = 0.9.12
55parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)(\-(?P<release>[a-z]+))?
66serialize =
77 {major}.{minor}.{patch}-{release}
Original file line number Diff line number Diff line change @@ -9,6 +9,6 @@ public static class Config
99 public static bool TRACE_DEEP = false ;
1010 public static bool TRACE_META = false ;
1111 public static bool TRACE_OUTPUT = false ;
12- public const string NUGET_INSPECTOR_VERSION = "0.9.11 " ;
12+ public const string NUGET_INSPECTOR_VERSION = "0.9.12 " ;
1313 #pragma warning restore CA2211
1414}
Original file line number Diff line number Diff line change 2424 <Product >nuget-inspector</Product >
2525 <AssemblyName >nuget-inspector</AssemblyName >
2626
27- <Version >0.9.11 </Version >
28- <AssemblyVersion >0.9.11 .0</AssemblyVersion >
29- <FileVersion >0.9.11 .0</FileVersion >
27+ <Version >0.9.12 </Version >
28+ <AssemblyVersion >0.9.12 .0</AssemblyVersion >
29+ <FileVersion >0.9.12 .0</FileVersion >
3030
3131 <Authors >nexB Inc.</Authors >
3232 <Company >nexB Inc</Company >
You can’t perform that action at this time.
0 commit comments