Export the `HostedDetails` type (dart-lang/pubspec_parse#73)
This type is used by the public `HostedDependency` type, so it too
should be public.
diff --git a/pkgs/pubspec_parse/CHANGELOG.md b/pkgs/pubspec_parse/CHANGELOG.md
index 0c72a39..98fbbbf 100644
--- a/pkgs/pubspec_parse/CHANGELOG.md
+++ b/pkgs/pubspec_parse/CHANGELOG.md
@@ -1,4 +1,6 @@
-## 1.0.1-dev
+## 1.1.0
+
+- Export `HostedDetails` publicly.
## 1.0.0
@@ -26,7 +28,7 @@
## 0.1.4
-- Added `lenient` named argument to `Pubspec.fromJson` to ignore format and type errors.
+- Added `lenient` named argument to `Pubspec.fromJson` to ignore format and type errors.
## 0.1.3
diff --git a/pkgs/pubspec_parse/lib/pubspec_parse.dart b/pkgs/pubspec_parse/lib/pubspec_parse.dart
index 132263a..63c1e30 100644
--- a/pkgs/pubspec_parse/lib/pubspec_parse.dart
+++ b/pkgs/pubspec_parse/lib/pubspec_parse.dart
@@ -6,6 +6,7 @@
show
Dependency,
HostedDependency,
+ HostedDetails,
GitDependency,
SdkDependency,
PathDependency;
diff --git a/pkgs/pubspec_parse/pubspec.yaml b/pkgs/pubspec_parse/pubspec.yaml
index 3ca6671..afaa952 100644
--- a/pkgs/pubspec_parse/pubspec.yaml
+++ b/pkgs/pubspec_parse/pubspec.yaml
@@ -2,7 +2,7 @@
description: >-
Simple package for parsing pubspec.yaml files with a type-safe API and rich
error reporting.
-version: 1.0.1-dev
+version: 1.1.0
repository: https://github.com/dart-lang/pubspec_parse
environment: