GHC 2017-01-15

2 comments.

, https://git.io/vMwnN in Homebrew/homebrew-core
imagemagick 7.0.4-4
===================

Created with `brew bump-formula-pr`.

---

Please remember to
```
brew mirror imagemagick
```
when merging.

, https://git.io/vMw30 in crsmithdev/arrow
ArrowFactory.get: document kwargs locale and tzinfo
===================================================

Currently, the kwargs `locale` and `tzinfo` to `arrow.get` are undocumented. I was about to contribute code to allow timezone specification when parsing with `arrow.get`, e.g.,

```py
arrow.get('01-01 00:00', 'MM-DD HH:mm')
```

when I realized the technology has already been there:

```py
arrow.get('01-01 00:00', 'MM-DD HH:mm', tzinfo='America/New_York')
```

since #221. Therefore, I believe the documentation could be improved to expose this useful feature to more users.