add .pubignore file, prepare to republish
diff --git a/.gitignore b/.gitignore
index 5865e43..b1a71fd 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1,3 +1,5 @@
+# MOST UPDATES TO THIS FILE SHOULD ALSO BE MADE TO THE `.pubignore` FILE.
+
 # Don’t commit the following directories created by pub.
 .buildlog
 .dart_tool/
@@ -5,12 +7,17 @@
 build/
 packages
 
-# Or the files created by dart2js.
+# Include when developing application packages.
+pubspec.lock
+.packages
+
+# The files created by dart2js.
+#
+# This section should not be included in the `.pubignore` file, as we need
+# the `pkgs/test/lib/src/runner/browser/static/host.dart.js` file to be
+# included when we publish.
 *.dart.js
 *.js_
 *.js.deps
 *.js.map
 
-# Include when developing application packages.
-pubspec.lock
-.packages
diff --git a/.pubignore b/.pubignore
new file mode 100644
index 0000000..02e0c6d
--- /dev/null
+++ b/.pubignore
@@ -0,0 +1,10 @@
+# Don’t commit the following directories created by pub.
+.buildlog
+.dart_tool/
+.pub/
+build/
+packages
+
+# Include when developing application packages.
+pubspec.lock
+.packages
diff --git a/pkgs/test/CHANGELOG.md b/pkgs/test/CHANGELOG.md
index cc31f0a..e913f18 100644
--- a/pkgs/test/CHANGELOG.md
+++ b/pkgs/test/CHANGELOG.md
@@ -1,4 +1,6 @@
-## 1.19.2-dev
+## 1.19.2
+
+* Republish with missing JS file for browser tests.
 
 ## 1.19.1
 
diff --git a/pkgs/test/pubspec.yaml b/pkgs/test/pubspec.yaml
index 41ce08e..c5db5db 100644
--- a/pkgs/test/pubspec.yaml
+++ b/pkgs/test/pubspec.yaml
@@ -1,5 +1,5 @@
 name: test
-version: 1.19.2-dev
+version: 1.19.2
 description: >-
   A full featured library for writing and running Dart tests across platforms.
 repository: https://github.com/dart-lang/test/blob/master/pkgs/test