Skip to content

Commit

Permalink
Merge b7c8666 into 218dfe9
Browse files Browse the repository at this point in the history
  • Loading branch information
hpopp committed Mar 14, 2018
2 parents 218dfe9 + b7c8666 commit f896928
Show file tree
Hide file tree
Showing 11 changed files with 606 additions and 445 deletions.
23 changes: 23 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,26 @@
# v0.8.0
* `:compile_auto_inspect` and `:auto_inspect` config options, both default
to false
* Added `Scribe.auto_inspect/1` for toggling auto inspect
* Added `Scribe.auto_inspect?/0`
* Removed `Scribe.enable/0` and `Scribe.disable/0`, replaced with above
* Removed `Scribe.enabled?/0`, replaced with above

To work with production releases, auto-inspect functionality can now be
optionally compiled (not compiled by default). To enable auto-inspect for
your development environment, add this to your `config/dev.exs`:

config :scribe,
compile_auto_inspect: true,
auto_inspect: true

To temporarily disable auto-inspect in your shell, use
`Scribe.auto_inspect(false)`. Inspect will work as normal until set to
true again.

If auto-inspect is not compiled (or disabled), `Scribe.print/2` and similar
functions will continue to work as normal.

# v0.7.0
* Pseudographics style added

Expand Down

0 comments on commit f896928

Please sign in to comment.