-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Align version constraint to prometheus_client
- Loading branch information
Showing
4 changed files
with
13 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
name: prometheus_client | ||
description: Dart implementation of the Prometheus client library providing metrics. | ||
version: 0.4.0 | ||
version: 0.4.0+1 | ||
homepage: https://github.com/Fox32/prometheus_client | ||
author: Oliver Sand <[email protected]> | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,8 @@ | ||
## 0.4.0+1 | ||
|
||
- Align version constraint to `prometheus_client_shelf`. | ||
|
||
|
||
## 0.4.0 | ||
|
||
- Move shelf support into own package [`prometheus_client_shelf`](https://pub.dev/packages/prometheus_client). |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,14 @@ | ||
name: prometheus_client_shelf | ||
description: Dart implementation of the Prometheus client library providing a shelf integration. | ||
version: 0.4.0 | ||
version: 0.4.0+1 | ||
homepage: https://github.com/Fox32/prometheus_client | ||
author: Oliver Sand <[email protected]> | ||
|
||
environment: | ||
sdk: '>=2.5.0 <3.0.0' | ||
|
||
dependencies: | ||
prometheus_client: ^0.3.0 | ||
prometheus_client: ^0.4.0+1 | ||
shelf: ^0.7.5 | ||
collection: ^1.14.11 | ||
|
||
|