Add a changelog entry for `toUnorderedList` (#153)

This was missed in the PR which added the API.

Also add a `-dev` suffix to the pubspec and changelog version numbers to
make it clear that this is not published yet.
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 0c76f58..04fbdff 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,5 +1,6 @@
-## 1.15.0-nullsafety.3
+## 1.15.0-nullsafety.3-dev
 
+* Add `toUnorderedList` method on `PriorityQueue`.
 * Make `HeapPriorityQueue`'s `remove` and `contains` methods
   use `==` for equality checks.
   Previously used `comparison(a, b) == 0` as criteria, but it's possible
diff --git a/pubspec.yaml b/pubspec.yaml
index cd57aca..113b39b 100644
--- a/pubspec.yaml
+++ b/pubspec.yaml
@@ -1,5 +1,5 @@
 name: collection
-version: 1.15.0-nullsafety.3
+version: 1.15.0-nullsafety.3-dev
 
 description: Collections and utilities functions and classes related to collections.
 homepage: https://www.github.com/dart-lang/collection