Skip to content

Commit 6697088

Browse files
committed
chore(release): v0.7.0 [skip ci]
1 parent d0ec9e9 commit 6697088

File tree

5 files changed

+27
-24
lines changed

5 files changed

+27
-24
lines changed

LICENSE

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
MIT License
22

3-
Copyright (c) 2020 lazyboy1
3+
Copyright (c) 2020 LoremFooBar
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

README.md

+13-11
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ your `bitbucket-pipelines.yml` file:
1111

1212
```yaml
1313
script:
14-
- pipe: docker://lazyboy1/reportgenerator-coverage-bitbucket-pipe:0.6
14+
- pipe: docker://loremfoobar/reportgenerator-coverage-bitbucket-pipe:0.7.0
1515
variables:
1616
# BITBUCKET_USERNAME: "<string>" # Optional
1717
# BITBUCKET_APP_PASSWORD: "<string>" # Optional
@@ -50,16 +50,19 @@ _(\*) = required variable._
5050

5151
### Code Coverage Files
5252

53-
Code coverage files need to be present when the pipe runs. Different coverage tools exist
54-
for different languages/technologies. Whichever tool you use to create the coverage data,
55-
it needs to be in one of the formats supported by ReportGenerator, see
56-
[ReportGenerator Supported File Formats](https://github.com/danielpalme/ReportGenerator#supported-input-and-output-file-formats).
53+
Code coverage files need to be present when the pipe runs. Different coverage
54+
tools exist for different languages/technologies. Whichever tool you use to
55+
create the coverage data, it needs to be in one of the formats supported by
56+
ReportGenerator, see
57+
[ReportGenerator Supported File Formats](https://github.com/danielpalme/ReportGenerator#supported-input-and-output-file-formats)
58+
.
5759

5860
### App Password Required for Build Status
5961

6062
Build status will be created only if username and app password are provided.
6163
To have this pipe create build status, you need to
62-
[generate an app password](https://confluence.atlassian.com/bitbucket/app-passwords-828781300.html).
64+
[generate an app password](https://confluence.atlassian.com/bitbucket/app-passwords-828781300.html)
65+
.
6366
Only the Repositories Read permission is required.
6467

6568
## Uploading The Report
@@ -77,7 +80,7 @@ Basic example using secure variables for username and app password:
7780

7881
```yaml
7982
script:
80-
- pipe: docker://lazyboy1/reportgenerator-coverage-bitbucket-pipe:0.6
83+
- pipe: docker://loremfoobar/reportgenerator-coverage-bitbucket-pipe:0.7.0
8184
variables:
8285
BITBUCKET_USERNAME: $USERNAME
8386
BITBUCKET_APP_PASSWORD: $APP_PASSWORD
@@ -89,7 +92,7 @@ Example with published report URL:
8992
9093
```yaml
9194
script:
92-
- pipe: docker://lazyboy1/reportgenerator-coverage-bitbucket-pipe:0.6
95+
- pipe: docker://loremfoobar/reportgenerator-coverage-bitbucket-pipe:0.7.0
9396
variables:
9497
BITBUCKET_USERNAME: $USERNAME
9598
BITBUCKET_APP_PASSWORD: $APP_PASSWORD
@@ -102,7 +105,7 @@ Example with extra arguments:
102105
103106
```yaml
104107
script:
105-
- pipe: docker://lazyboy1/reportgenerator-coverage-bitbucket-pipe:0.6
108+
- pipe: docker://loremfoobar/reportgenerator-coverage-bitbucket-pipe:0.7.0
106109
variables:
107110
BITBUCKET_USERNAME: $USERNAME
108111
BITBUCKET_APP_PASSWORD: $APP_PASSWORD
@@ -118,7 +121,7 @@ Example with build status creation temporarily disabled:
118121
119122
```yaml
120123
script:
121-
- pipe: docker://lazyboy1/reportgenerator-coverage-bitbucket-pipe:0.6
124+
- pipe: docker://loremfoobar~~~~/reportgenerator-coverage-bitbucket-pipe:0.7.0
122125
variables:
123126
BITBUCKET_USERNAME: $USERNAME
124127
BITBUCKET_APP_PASSWORD: $APP_PASSWORD
@@ -127,7 +130,6 @@ script:
127130
CREATE_BUILD_STATUS: "false"
128131
```
129132
130-
131133
## Support
132134
133135
If you're reporting an issue, please include:

pipe.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
name: ReportGenerator Coverage Report
2-
image: lazyboy1/reportgenerator-coverage-bitbucket-pipe:0.6
2+
image: loremfoobar/reportgenerator-coverage-bitbucket-pipe:0.7.0
33
description: Generate coverage report and a build status based on coverage requirements
44
category: Testing
55
maintainer:
6-
name: Amit Edelshtein
7-
website: "https://github.com/lazyboy1"
6+
name: Amit E
7+
website: "https://github.com/LoremFooBar"
88
tags:
99
- bitbucket-pipelines
1010
- coverage

reportgenerator-coverage-bitbucket-pipe.sln

+1
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ ProjectSection(SolutionItems) = preProject
1515
global.json = global.json
1616
.dockerignore = .dockerignore
1717
bitbucket-pipelines.yml = bitbucket-pipelines.yml
18+
LICENSE = LICENSE
1819
EndProjectSection
1920
EndProject
2021
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "src", "src", "{159AB7B9-379B-4D45-8A7D-417D63EC2BFA}"

src/ReportGenerator.BitbucketPipe/ReportGenerator.BitbucketPipe.csproj

+9-9
Original file line numberDiff line numberDiff line change
@@ -5,18 +5,18 @@
55
<OutputType>Exe</OutputType>
66
<Nullable>enable</Nullable>
77

8-
<Version>0.6.1</Version>
8+
<Version>0.7.0</Version>
99
</PropertyGroup>
1010

1111
<ItemGroup>
12-
<PackageReference Include="IdentityModel" Version="6.0.0" />
13-
<PackageReference Include="JetBrains.Annotations" Version="2022.1.0" />
14-
<PackageReference Include="Macross.Json.Extensions" Version="3.0.0" />
15-
<PackageReference Include="Microsoft.Extensions.DependencyInjection" Version="6.0.0" />
16-
<PackageReference Include="Microsoft.Extensions.Http" Version="6.0.0" />
17-
<PackageReference Include="ReportGenerator.Core" Version="5.1.9" />
18-
<PackageReference Include="Serilog.Extensions.Logging" Version="3.1.0" />
19-
<PackageReference Include="Serilog.Sinks.Console" Version="4.0.1" />
12+
<PackageReference Include="IdentityModel" Version="6.0.0"/>
13+
<PackageReference Include="JetBrains.Annotations" Version="2022.1.0"/>
14+
<PackageReference Include="Macross.Json.Extensions" Version="3.0.0"/>
15+
<PackageReference Include="Microsoft.Extensions.DependencyInjection" Version="6.0.0"/>
16+
<PackageReference Include="Microsoft.Extensions.Http" Version="6.0.0"/>
17+
<PackageReference Include="ReportGenerator.Core" Version="5.1.9"/>
18+
<PackageReference Include="Serilog.Extensions.Logging" Version="3.1.0"/>
19+
<PackageReference Include="Serilog.Sinks.Console" Version="4.0.1"/>
2020
</ItemGroup>
2121

2222
</Project>

0 commit comments

Comments
 (0)