diff --git a/.github/CONTRIBUTING.md b/.github/CONTRIBUTING.md
index c6d49658..7f5341a4 100644
--- a/.github/CONTRIBUTING.md
+++ b/.github/CONTRIBUTING.md
@@ -7,9 +7,9 @@ We are open to, and grateful for, any contributions made by the community.
## Reporting issues and asking questions
-Before opening an issue, please search the
-[issue tracker](https://github.com/erikras/react-final-form/issues) to make sure
-your issue hasn’t already been reported.
+Before opening an issue, please search
+the[issue tracker](https://github.com/final-form/react-final-form/issues) to
+make sure your issue hasn’t already been reported.
**We use the issue tracker to keep track of bugs and improvements** to 🏁 React
Final Form itself, its examples, and the documentation. We encourage you to open
@@ -34,8 +34,8 @@ request.**
It's never a fun experience to have your pull request declined after investing a
lot of time and effort into a new feature. To avoid this from happening, we
request that contributors create
-[an issue](https://github.com/erikras/react-final-form/issues) to first discuss
-any significant new features.
+[an issue](https://github.com/final-form/react-final-form/issues) to first
+discuss any significant new features.
Please try to keep your pull request focused in scope and avoid including
unrelated commits.
@@ -45,14 +45,14 @@ as possible. We may suggest some changes or improvements.
Please format the code before submitting your pull request by running:
-```
+```sh
npm run precommit
```
## Coding standards
Our code formatting rules are defined in
-[.eslintrc](https://github.com/erikras/react-final-form/blob/master/.eslintrc).
+[.eslintrc](https://github.com/final-form/react-final-form/blob/master/.eslintrc).
You can check your code against these standards by running:
```sh
diff --git a/.github/PULL_REQUEST_TEMPLATE.md b/.github/PULL_REQUEST_TEMPLATE.md
index 4a5b8e59..e5cd6cf0 100644
--- a/.github/PULL_REQUEST_TEMPLATE.md
+++ b/.github/PULL_REQUEST_TEMPLATE.md
@@ -21,6 +21,6 @@ Please format the code before submitting your pull request by running:
npm run precommit
```
-https://github.com/erikras/react-final-form/blob/master/.github/CONTRIBUTING.md
+https://github.com/final-form/react-final-form/blob/master/.github/CONTRIBUTING.md
-->
diff --git a/README.md b/README.md
index 36b5c650..055a5735 100644
--- a/README.md
+++ b/README.md
@@ -4,14 +4,14 @@
[](https://www.npmjs.com/package/react-final-form)
[](https://www.npmjs.com/package/react-final-form)
-[](https://travis-ci.org/erikras/react-final-form)
-[](https://codecov.io/gh/erikras/react-final-form)
+[](https://travis-ci.org/final-form/react-final-form)
+[](https://codecov.io/gh/final-form/react-final-form)
[](https://github.com/prettier/prettier)
✅ Zero dependencies
✅ Only peer dependencies: React and
-[🏁 Final Form](https://github.com/erikras/final-form#-final-form)
+[🏁 Final Form](https://github.com/final-form/final-form#-final-form)
✅ Opt-in subscriptions - only update on the state you need!
@@ -233,7 +233,7 @@ attain it.
### [Field Arrays](https://codesandbox.io/s/kx8qv67nk5)
Demostrates how to use the `` component, from
-[`react-final-form-arrays`](https://github.com/erikras/react-final-form-arrays),
+[`react-final-form-arrays`](https://github.com/final-form/react-final-form-arrays),
to render an array of inputs, as well as use `push`, `pop`, and `remove`
mutations.
@@ -309,11 +309,11 @@ as any non-API props passed into the `` component.
#### `subscription?: FieldSubscription`
A
-[`FieldSubscription`](https://github.com/erikras/final-form#fieldsubscription--string-boolean-)
+[`FieldSubscription`](https://github.com/final-form/final-form#fieldsubscription--string-boolean-)
that selects of all the items of
-[`FieldState`](https://github.com/erikras/final-form#fieldstate) that you wish
-to update for. If you don't pass a `subscription` prop, it defaults to _all_ of
-[`FieldState`](https://github.com/erikras/final-form#fieldstate).
+[`FieldState`](https://github.com/final-form/final-form#fieldstate) that you
+wish to update for. If you don't pass a `subscription` prop, it defaults to
+_all_ of [`FieldState`](https://github.com/final-form/final-form#fieldstate).
#### `validate?: (value: ?any, allValues: Object) => ?any`
@@ -365,55 +365,55 @@ The current value of the field.
#### `meta.active?: boolean`
-[See the 🏁 Final Form docs on `active`](https://github.com/erikras/final-form#active-boolean).
+[See the 🏁 Final Form docs on `active`](https://github.com/final-form/final-form#active-boolean).
#### `meta.data: Object`
-[See the 🏁 Final Form docs on `data`](https://github.com/erikras/final-form#data-object).
+[See the 🏁 Final Form docs on `data`](https://github.com/final-form/final-form#data-object).
#### `meta.dirty?: boolean`
-[See the 🏁 Final Form docs on `dirty`](https://github.com/erikras/final-form#dirty-boolean).
+[See the 🏁 Final Form docs on `dirty`](https://github.com/final-form/final-form#dirty-boolean).
#### `meta.error?: any`
-[See the 🏁 Final Form docs on `error`](https://github.com/erikras/final-form#error-any).
+[See the 🏁 Final Form docs on `error`](https://github.com/final-form/final-form#error-any).
#### `meta.initial?: any`
-[See the 🏁 Final Form docs on `initial`](https://github.com/erikras/final-form#initial-any).
+[See the 🏁 Final Form docs on `initial`](https://github.com/final-form/final-form#initial-any).
#### `meta.invalid?: boolean`
-[See the 🏁 Final Form docs on `invalid`](https://github.com/erikras/final-form#invalid-boolean).
+[See the 🏁 Final Form docs on `invalid`](https://github.com/final-form/final-form#invalid-boolean).
#### `meta.pristine?: boolean`
-[See the 🏁 Final Form docs on `pristine`](https://github.com/erikras/final-form#pristine-boolean).
+[See the 🏁 Final Form docs on `pristine`](https://github.com/final-form/final-form#pristine-boolean).
#### `meta.submitError?: any`
-[See the 🏁 Final Form docs on `submitError`](https://github.com/erikras/final-form#submiterror-any).
+[See the 🏁 Final Form docs on `submitError`](https://github.com/final-form/final-form#submiterror-any).
#### `meta.submitFailed?: boolean`
-[See the 🏁 Final Form docs on `submitFailed`](https://github.com/erikras/final-form#submitfailed-boolean).
+[See the 🏁 Final Form docs on `submitFailed`](https://github.com/final-form/final-form#submitfailed-boolean).
#### `meta.submitSucceeded?: boolean`
-[See the 🏁 Final Form docs on `submitSucceeded`](https://github.com/erikras/final-form#submitsucceeded-boolean).
+[See the 🏁 Final Form docs on `submitSucceeded`](https://github.com/final-form/final-form#submitsucceeded-boolean).
#### `meta.touched?: boolean`
-[See the 🏁 Final Form docs on `touched`](https://github.com/erikras/final-form#touched-boolean).
+[See the 🏁 Final Form docs on `touched`](https://github.com/final-form/final-form#touched-boolean).
#### `meta.valid?: boolean`
-[See the 🏁 Final Form docs on `valid`](https://github.com/erikras/final-form#valid-boolean).
+[See the 🏁 Final Form docs on `valid`](https://github.com/final-form/final-form#valid-boolean).
#### `meta.visited?: boolean`
-[See the 🏁 Final Form docs on `visited`](https://github.com/erikras/final-form#visited-boolean).
+[See the 🏁 Final Form docs on `visited`](https://github.com/final-form/final-form#visited-boolean).
### `FormProps`
@@ -433,19 +433,19 @@ well as any non-API props passed into the `
` component.
#### `debug?: DebugFunction`
-[See the 🏁 Final Form docs on `debug`](https://github.com/erikras/final-form#debug-debugfunction).
+[See the 🏁 Final Form docs on `debug`](https://github.com/final-form/final-form#debug-debugfunction).
#### `initialValues?: Object`
-[See the 🏁 Final Form docs on `initialValues`](https://github.com/erikras/final-form#initialvalues-object).
+[See the 🏁 Final Form docs on `initialValues`](https://github.com/final-form/final-form#initialvalues-object).
#### `mutators?: { [string]: Mutator }`
-[See the 🏁 Final Form docs on `mutators`](https://github.com/erikras/final-form#mutators--string-function-).
+[See the 🏁 Final Form docs on `mutators`](https://github.com/final-form/final-form#mutators--string-function-).
#### `onSubmit: (values: Object, callback: ?(errors: ?Object) => void) => ?Object | Promise | void`
-[See the 🏁 Final Form docs on `onSubmit`](https://github.com/erikras/final-form#onsubmit-values-object-callback-errors-object--void--object--promiseobject--void).
+[See the 🏁 Final Form docs on `onSubmit`](https://github.com/final-form/final-form#onsubmit-values-object-callback-errors-object--void--object--promiseobject--void).
#### `render?: (props: FormRenderProps) => React.Node`
@@ -455,36 +455,36 @@ as any non-API props passed into the `` component.
#### `subscription?: FormSubscription`
A
-[`FormSubscription`](https://github.com/erikras/final-form#formsubscription--string-boolean-)
+[`FormSubscription`](https://github.com/final-form/final-form#formsubscription--string-boolean-)
that selects of all the items of
-[`FormState`](https://github.com/erikras/final-form#formstate) that you wish to
-update for. If you don't pass a `subscription` prop, it defaults to _all_ of
-[`FormState`](https://github.com/erikras/final-form#formstate).
+[`FormState`](https://github.com/final-form/final-form#formstate) that you wish
+to update for. If you don't pass a `subscription` prop, it defaults to _all_ of
+[`FormState`](https://github.com/final-form/final-form#formstate).
#### `validate?: (values: Object) => Object | Promise