Authored by Bogdan Poplauschi

Added a draft for the Migration Guide document.

  1 +## SDWebImage 4.0 Migration Guide
  2 +
  3 +- To be created based on [CHANGELOG.md - 4.0.0 Backwards incompatible changes](https://github.com/rs/SDWebImage/blob/master/CHANGELOG.md#backwards-incompatible-changes)
  4 +- See [Migration guide #1590](https://github.com/rs/SDWebImage/issues/1590)
  5 +
  6 +### New requirements: Xcode 8, iOS 7, Mac OS X 10.8, watchOS 2, tvOS 9
  7 +- ...
  8 +
  9 +### Classes removed
  10 +### Classes modified
  11 +### Classes added
  12 +
  13 +##Migration
  14 +
  15 +### Simple case
  16 +
  17 +SDWebImage 3.x
  18 +```
  19 +[imageView sd_setImageWithURL:url];
  20 +```
  21 +
  22 +SDWebImage 4.x
  23 +```
  24 +[imageView sd_setImageWithURL:url];
  25 +```