Hiya Jason et al!
I'm upgrading us from 0.4.0 to 1.1.1 in order to leverage the fancy Schema generators in our tests. Unfortunately, this means that our coercion breaks every time we use `s/either`. A couple questions:
1. What was the rationale behind deprecating `s/either`? It has always seemed pretty useful to me, and is especially good for schematizing legacy code / data.
2. What are other folks replacing it with? `conditional` seems to be the preferred method from the docs, but in my case the schema basically boils down to `(s/conditional first-schema? FirstSchema ...)`, which seems a little silly.
Ian