Skip to content

Commit a440d41

Browse files
authored
Use wildcard for minor Steeltoe version in NuGet references (#431)
1 parent e28b924 commit a440d41

51 files changed

Lines changed: 97 additions & 97 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

docs/articles/steeltoe-3-2-2-adds-kube-service-bindings.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ You can do this via the NuGet Package Manager or by opening your project's cspro
4040
```xml
4141
<ItemGroup>
4242
...
43-
<PackageReference Include="Steeltoe.Extensions.Configuration.Kubernetes.ServiceBinding" Version="3.2.2" />
43+
<PackageReference Include="Steeltoe.Extensions.Configuration.Kubernetes.ServiceBinding" Version="3.*" />
4444
...
4545
</ItemGroup>
4646
```

docs/docs/v2/circuitbreaker/hystrix.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ To add this type of NuGet to your project add something like the following `Pack
5656
```xml
5757
<ItemGroup>
5858
...
59-
<PackageReference Include="Steeltoe.CircuitBreaker.HystrixCore" Version="2.5.2" />
59+
<PackageReference Include="Steeltoe.CircuitBreaker.HystrixCore" Version="2.*" />
6060
...
6161
</ItemGroup>
6262
```
@@ -68,7 +68,7 @@ To do this include the following `PackageReference` in your application:
6868
```xml
6969
<ItemGroup>
7070
...
71-
<PackageReference Include="Steeltoe.CircuitBreaker.Hystrix.MetricsEventsCore" Version="2.5.2" />
71+
<PackageReference Include="Steeltoe.CircuitBreaker.Hystrix.MetricsEventsCore" Version="2.*" />
7272
...
7373
</ItemGroup>
7474
```
@@ -87,7 +87,7 @@ To add this type of NuGet to your project add something like the following:
8787
```xml
8888
<ItemGroup>
8989
...
90-
<PackageReference Include="Steeltoe.CircuitBreaker.Hystrix.MetricsStreamCore" Version="2.5.2" />
90+
<PackageReference Include="Steeltoe.CircuitBreaker.Hystrix.MetricsStreamCore" Version="2.*" />
9191
<PackageReference Include="RabbitMQ.Client" Version="5.0.1" />
9292
...
9393
</ItemGroup>

docs/docs/v2/configuration/cloud-foundry-provider.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ To add this type of NuGet to your project, add a `PackageReference` resembling t
4040
```xml
4141
<ItemGroup>
4242
...
43-
<PackageReference Include="Steeltoe.Extensions.Configuration.CloudFoundryCore" Version="2.5.2" />
43+
<PackageReference Include="Steeltoe.Extensions.Configuration.CloudFoundryCore" Version="2.*" />
4444
...
4545
</ItemGroup>
4646
```

docs/docs/v2/configuration/config-server-provider.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ To add this type of NuGet to your project, add a `PackageReference` that resembl
5454
```xml
5555
<ItemGroup>
5656
...
57-
<PackageReference Include="Steeltoe.Extensions.Configuration.ConfigServerCore" Version="2.5.2" />
57+
<PackageReference Include="Steeltoe.Extensions.Configuration.ConfigServerCore" Version="2.*" />
5858
...
5959
</ItemGroup>
6060
```

docs/docs/v2/configuration/placeholder-provider.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ To add this type of NuGet to your project, add a `PackageReference` resembling t
3939
```xml
4040
<ItemGroup>
4141
...
42-
<PackageReference Include="Steeltoe.Extensions.Configuration.PlaceholderCore" Version="2.5.2" />
42+
<PackageReference Include="Steeltoe.Extensions.Configuration.PlaceholderCore" Version="2.*" />
4343
...
4444
</ItemGroup>
4545
```

docs/docs/v2/configuration/random-value-provider.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ To do this add a `PackageReference` resembling the following:
5757
```xml
5858
<ItemGroup>
5959
...
60-
<PackageReference Include="Steeltoe.Extensions.Configuration.RandomValueBase" Version="2.5.2" />
60+
<PackageReference Include="Steeltoe.Extensions.Configuration.RandomValueBase" Version="2.*" />
6161
...
6262
</ItemGroup>
6363
```

docs/docs/v2/discovery/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ To add this type of NuGet to your project, add an element resembling the followi
2929
```xml
3030
<ItemGroup>
3131
...
32-
<PackageReference Include="Steeltoe.Discovery.ClientCore" Version="2.5.2" />
32+
<PackageReference Include="Steeltoe.Discovery.ClientCore" Version="2.*" />
3333
...
3434
</ItemGroup>
3535
```

docs/docs/v2/logging/dynamic-logging-provider.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ You can add the provider to your project by using the following `PackageReferenc
2727
```xml
2828
<ItemGroup>
2929
...
30-
<PackageReference Include="Steeltoe.Extensions.Logging.DynamicLogger" Version="2.5.2" />
30+
<PackageReference Include="Steeltoe.Extensions.Logging.DynamicLogger" Version="2.*" />
3131
...
3232
</ItemGroup>
3333
```

docs/docs/v2/management/metrics.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -68,15 +68,15 @@ To add this type of NuGet to your project, add a `PackageReference` resembling t
6868
```xml
6969
<ItemGroup>
7070
...
71-
<PackageReference Include="Steeltoe.Management.ExporterCore" Version="2.5.2" />
71+
<PackageReference Include="Steeltoe.Management.ExporterCore" Version="2.*" />
7272
...
7373
</ItemGroup>
7474
```
7575

7676
Or, from the command line:
7777

7878
```shell
79-
dotnet add package Steeltoe.Management.ExporterCore --version 2.5.2
79+
dotnet add package Steeltoe.Management.ExporterCore --version 2.*
8080
```
8181

8282
## Cloud Foundry Forwarder

docs/docs/v2/management/prometheus.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,15 +36,15 @@ To use the prometheus endpoint, you need to add a reference to `Steetoe.Manageme
3636
```xml
3737
<ItemGroup>
3838
...
39-
<PackageReference Include="Steeltoe.Management.EndpointCore" Version="2.5.2" />
39+
<PackageReference Include="Steeltoe.Management.EndpointCore" Version="2.*" />
4040
...
4141
</ItemGroup>
4242
```
4343

4444
Or, from the command line:
4545

4646
```shell
47-
dotnet add package Steeltoe.Management.EndpointCore --version 2.5.2
47+
dotnet add package Steeltoe.Management.EndpointCore --version 2.*
4848
```
4949

5050
## Cloud Foundry Forwarder

0 commit comments

Comments
 (0)