Skip to content

Commit 3368b77

Browse files
committed
chore: update Prometheus.Client
1 parent 9dda0ff commit 3368b77

File tree

6 files changed

+27
-13
lines changed

6 files changed

+27
-13
lines changed

.github/FUNDING.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,2 @@
11
ko_fi: phnx47
22
patreon: phnx47
3-
custom: ['https://www.buymeacoffee.com/phnx47']

.github/workflows/production.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name: "CI"
33
on:
44
push:
55
tags:
6-
- '[34].[0-9]+.[0-9]+'
6+
- 'v*'
77

88
jobs:
99
build:

Prometheus.Client.MetricServer.sln

Lines changed: 17 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Prometheus.Client.MetricSer
99
EndProject
1010
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "tests", "tests", "{465CE32E-016E-46A1-9636-3411CB742385}"
1111
EndProject
12-
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{7ADF00AE-7F6D-4C7E-B0F0-B2A19627DDF8}"
12+
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "root", "root", "{7ADF00AE-7F6D-4C7E-B0F0-B2A19627DDF8}"
1313
ProjectSection(SolutionItems) = preProject
1414
.editorconfig = .editorconfig
1515
.gitattributes = .gitattributes
@@ -23,6 +23,20 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution
2323
EndProject
2424
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Prometheus.Client.MetricServer.Tests", "tests\Prometheus.Client.MetricServer.Tests\Prometheus.Client.MetricServer.Tests.csproj", "{21EE82C6-BFDD-4DDD-A49F-2543F44B4E70}"
2525
EndProject
26+
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = ".github", ".github", "{31FAD980-7534-40FF-B156-C96AA802FF9A}"
27+
ProjectSection(SolutionItems) = preProject
28+
.github\CODEOWNERS = .github\CODEOWNERS
29+
.github\FUNDING.yml = .github\FUNDING.yml
30+
.github\renovate.json = .github\renovate.json
31+
EndProjectSection
32+
EndProject
33+
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "worflows", "worflows", "{79B1C328-9B24-4C34-929A-E2856DC5586D}"
34+
ProjectSection(SolutionItems) = preProject
35+
.github\workflows\branch.yml = .github\workflows\branch.yml
36+
.github\workflows\master.yml = .github\workflows\master.yml
37+
.github\workflows\production.yml = .github\workflows\production.yml
38+
EndProjectSection
39+
EndProject
2640
Global
2741
GlobalSection(SolutionConfigurationPlatforms) = preSolution
2842
Debug|Any CPU = Debug|Any CPU
@@ -44,6 +58,8 @@ Global
4458
GlobalSection(NestedProjects) = preSolution
4559
{C77F577A-8639-4A63-966D-80C174B3D999} = {8E29CEE6-355D-427A-8EDA-F2A1FE60BC3B}
4660
{21EE82C6-BFDD-4DDD-A49F-2543F44B4E70} = {465CE32E-016E-46A1-9636-3411CB742385}
61+
{31FAD980-7534-40FF-B156-C96AA802FF9A} = {7ADF00AE-7F6D-4C7E-B0F0-B2A19627DDF8}
62+
{79B1C328-9B24-4C34-929A-E2856DC5586D} = {31FAD980-7534-40FF-B156-C96AA802FF9A}
4763
EndGlobalSection
4864
GlobalSection(ExtensibilityGlobals) = postSolution
4965
SolutionGuid = {6CA14866-8A1E-4C8C-AE98-A806F33741EF}

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -39,12 +39,12 @@ static void Main(string[] args)
3939

4040
## Support
4141

42-
If you are having problems, send a mail to [[email protected]](mailto://[email protected]). I will try to help you.
42+
I would also very much appreciate your support:
43+
44+
<a href="https://www.buymeacoffee.com/phnx47"><img width="32px" src="https://raw.githubusercontent.com/phnx47/files/master/button-sponsors/bmac0.png" alt="Buy Me A Coffee"></a>
45+
<a href="https://ko-fi.com/phnx47"><img width="32px" src="https://raw.githubusercontent.com/phnx47/files/master/button-sponsors/kofi0.png" alt="Support me on ko-fi"></a>
46+
<a href="https://www.patreon.com/phnx47"><img width="32px" src="https://raw.githubusercontent.com/phnx47/files/master/button-sponsors/patreon0.png" alt="Support me on Patreon"></a>
4347

4448
## License
4549

4650
All contents of this package are licensed under the [MIT license](https://opensource.org/licenses/MIT).
47-
48-
49-
50-

src/Prometheus.Client.MetricServer/MetricServer.cs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,11 @@
11
using System;
22
using System.Net;
33
using System.Reflection;
4-
using System.Threading.Tasks;
54
using Microsoft.AspNetCore.Builder;
65
using Microsoft.AspNetCore.Hosting;
76
using Microsoft.Extensions.Configuration;
87
using Microsoft.Extensions.DependencyInjection;
9-
using Prometheus.Client.Collectors.Abstractions;
8+
using Prometheus.Client.Collectors;
109

1110
namespace Prometheus.Client.MetricServer
1211
{

src/Prometheus.Client.MetricServer/Prometheus.Client.MetricServer.csproj

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@
33
<Description>MetricServer for the Prometheus.Client</Description>
44
<Copyright>2020 © Serge K, Oleksandr Poliakov</Copyright>
55
<AssemblyTitle>Prometheus.Client.MetricServer</AssemblyTitle>
6-
<VersionPrefix>4.0.1</VersionPrefix>
6+
<VersionPrefix>4.1.0</VersionPrefix>
77
<Authors>Serge K, Oleksandr Poliakov</Authors>
8-
<TargetFrameworks>netstandard2.0;netcoreapp2.2;netstandard2.1;netcoreapp3.1</TargetFrameworks>
8+
<TargetFrameworks>netstandard2.0;netstandard2.1;netcoreapp3.1</TargetFrameworks>
99
<LangVersion>latest</LangVersion>
1010
<AssemblyName>Prometheus.Client.MetricServer</AssemblyName>
1111
<PackageId>Prometheus.Client.MetricServer</PackageId>
@@ -31,7 +31,7 @@
3131
</None>
3232
</ItemGroup>
3333
<ItemGroup>
34-
<PackageReference Include="Prometheus.Client" Version="4.2.0" />
34+
<PackageReference Include="Prometheus.Client" Version="4.3.0" />
3535
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="1.0.0" PrivateAssets="All" />
3636
</ItemGroup>
3737
<ItemGroup Condition="'$(TargetFramework)' == 'netcoreapp3.1'">

0 commit comments

Comments
 (0)