Merge branch 'test_instead_of_unittest' of https://github.com/bwu-dart-contributing/dart-mockito into bwu-dart-contributing-test_instead_of_unittest
diff --git a/.idea/dictionaries/zoechi.xml b/.idea/dictionaries/zoechi.xml
deleted file mode 100644
index 30f6249..0000000
--- a/.idea/dictionaries/zoechi.xml
+++ /dev/null
@@ -1,7 +0,0 @@
-<component name="ProjectDictionaryState">
-  <dictionary name="zoechi">
-    <words>
-      <w>matchers</w>
-    </words>
-  </dictionary>
-</component>
\ No newline at end of file
diff --git a/README.md b/README.md
index 0a6e158..a1617a5 100644
--- a/README.md
+++ b/README.md
@@ -7,7 +7,7 @@
   * Poor refactoring support: rename method and you need manually search/replace it's usage in when/verify clauses.
   * Poor support from IDE: no code-completion, no hints on argument types, can't jump to definition
 
-Dart-mockito fixes it - stubbing and verifing are first-class citisens.
+Dart-mockito fixes it - stubbing and verifying are first-class citizens.
 
 ## Let's create mocks
 ```dart
diff --git a/pubspec.yaml b/pubspec.yaml
index 8a5c744..f576845 100644
--- a/pubspec.yaml
+++ b/pubspec.yaml
@@ -1,11 +1,11 @@
 name: mockito
-version: 0.9.0-beta.0
+version: 0.9.0
 author: Dmitriy Fibulwinter <fibulwinter@gmail.com>
 description: A mock framework inspired by Mockito.
 homepage: https://github.com/fibulwinter/dart-mockito
 environment:
   sdk: '>=1.0.0 <2.0.0'
 dependencies:
-  matcher: '>=0.12.0-alpha.0 <0.13.0'
+  matcher: '>=0.12.0 <1.0.0'
 dev_dependencies:
-  test: '>=0.12.0-beta.4 <0.13.0'
+  test: '>=0.12.0 <1.0.0'