Update README.md

Changes for moving to aspect-build org
diff --git a/.bcr/config.yml b/.bcr/config.yml
index cce0890..9828ad2 100644
--- a/.bcr/config.yml
+++ b/.bcr/config.yml
@@ -1,6 +1,3 @@
-# See https://github.com/bazel-contrib/publish-to-bcr#a-note-on-release-automation
-# for guidance about whether to uncomment this section:
-#
-# fixedReleaser:
-#   login: alexeagle
-#   email: me@my.org
+fixedReleaser:
+  login: alexeagle
+  email: alex@aspect.dev
diff --git a/.bcr/metadata.template.json b/.bcr/metadata.template.json
index 425f9d5..fc30bec 100644
--- a/.bcr/metadata.template.json
+++ b/.bcr/metadata.template.json
@@ -1,5 +1,5 @@
 {
-  "homepage": "https://github.com/alexeagle/toolchains_protoc",
+  "homepage": "https://github.com/aspect-build/toolchains_protoc",
   "maintainers": [
     {
       "email": "alex@aspect.dev",
@@ -7,7 +7,7 @@
       "name": "Alex Eagle"
     }
   ],
-  "repository": ["github:alexeagle/toolchains_protoc"],
+  "repository": ["github:aspect-build/toolchains_protoc"],
   "versions": [],
   "yanked_versions": {}
 }
diff --git a/.github/workflows/release_prep.sh b/.github/workflows/release_prep.sh
index b09f473..aae8e09 100755
--- a/.github/workflows/release_prep.sh
+++ b/.github/workflows/release_prep.sh
@@ -35,7 +35,7 @@
     name = "toolchains_protoc",
     sha256 = "${SHA}",
     strip_prefix = "${PREFIX}",
-    url = "https://github.com/alexeagle/toolchains_protoc/releases/download/${TAG}/${ARCHIVE}",
+    url = "https://github.com/aspect-build/toolchains_protoc/releases/download/${TAG}/${ARCHIVE}",
 )
 EOF
 
diff --git a/README.md b/README.md
index 01b0ecb..9c17072 100644
--- a/README.md
+++ b/README.md
@@ -4,6 +4,8 @@
 
 Using Protocol Buffers with Bazel has always been difficult.
 
+- Compiling protoc from source requires a functional C++ toolchain, which is a burden for projects that have no C++ code.
+  Also, Bazel does not ship with a hermetic toolchain, so you may have a handful of developers whose Bazel build is broken.
 - Nearly every Bazel user has waited for `protoc` to compile from sources many, MANY times.
   This universally slows down builds, especially due to issues like https://github.com/bazelbuild/bazel/issues/7095 where it is observed to be easily cache-busted.
 - The versioning of the protobuf module on Bazel Central Registry has fallen behind and contains many patches.
@@ -11,12 +13,14 @@
   which essentially constitute a fork of the protobuf repo specifically for publishing to BCR.
 - Relying on the protobuf runtime for each language from the `@com_google_protobuf` repo forces you to use
   the same version of the runtime for all languages in a monorepo, and matching protoc.
+  This makes it difficult to migrate to a monorepo, allowing some applications to move from their separate repo without changing their
+  dependency versions.
 
 The key observations:
 
 - `protoc` has always been distributed as pre-built binaries on https://github.com/protocolbuffers/protobuf/releases
 - That distribution includes the "well known types" such as `timestamp.proto`
-- The protobuf runtimes for each language are distributed to the appropriate package manager.
+- The protobuf runtimes for each language are distributed to the appropriate package manager such as npm or PyPI.
 
 Bazel 7 introduced `--incompatible_enable_proto_toolchain_resolution` to allow us fetch `protoc` rather than re-build it!
 That flag ALSO decouples how each language rule locates the runtime.
@@ -47,15 +51,6 @@
 This toolchain shows that there's no need to treat Bazel as a “special” build system vs. all the others that protobuf users rely on.
 https://protobuf.dev/reference/ is sufficient documentation for everyone.
 
-### Why a separate Bazel module?
-
-This belongs in rules_proto, see
-
-- https://github.com/bazelbuild/rules_proto/pull/205
-- https://github.com/bazelbuild/rules_proto/pull/206
-
-Getting reviews from Googlers is hard so let's not wait for them.
-
 ## Installation
 
 Make sure your `.bazelrc` contains
@@ -66,4 +61,4 @@
 ```
 
 Follow instructions from the release you wish to use:
-<https://github.com/alexeagle/toolchains_protoc/releases>
+<https://github.com/aspect-build/toolchains_protoc/releases>