Skip to content

Commit 50ab0a4

Browse files
committed
Bump version
Signed-off-by: Philippe Ombredanne <pombredanne@nexb.com>
1 parent f1b791b commit 50ab0a4

File tree

8 files changed

+17
-9
lines changed

8 files changed

+17
-9
lines changed

CHANGELOG.rst

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,14 @@
11
Changelog
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+
412
v0.9.11
513
--------
614

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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
3535
RUN 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

Dockerfile.ubuntu18

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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

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.11 \
20+
-p:Version=0.9.12 \
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.11
19+
VERSION=0.9.12
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.11
4+
current_version = 0.9.12
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
@@ -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
}

src/nuget-inspector/nuget-inspector.csproj

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,9 +24,9 @@
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>

0 commit comments

Comments
 (0)