Skip to content

Releases: jayqi/reprexlite

v0.5.0

20 Feb 22:25
c88b9bd
Compare
Choose a tag to compare
  • Added experimental IPython interactive editor which can be launched via command line with reprex --ipython. This modified IPython editor will run every cell automatically as a reprex.

v0.4.3

05 Nov 23:15
efe0fa3
Compare
Choose a tag to compare
  • Added explicit setting of code evaluation namespace's __name__ to '__reprex__'. Previously this was unset and would get inferred, and weird things like 'builtins' would turn up. (PR #29)

v0.4.2

01 Mar 07:09
769373f
Compare
Choose a tag to compare
  • Added support for parsing code copied from an interactive Python shell (REPL) with >>> prompts. (#29)
  • Fixed issue where tests module was unintentionally included in distribution. (#30)
  • Fixed missing requirement importlib_metadata for Python 3.6 and 3.7. (#31)

v0.4.1

28 Feb 07:44
Compare
Choose a tag to compare
  • Added missing LICENSE file.

v0.4.0

28 Feb 00:50
11f2506
Compare
Choose a tag to compare
  • Adds optional IPython extension that enables %%reprex cell magic. See documentation for usage. (#21)

v0.3.1

27 Feb 05:04
045e0db
Compare
Choose a tag to compare
  • Documentation improvements. (#14, #19)

v0.3.0

26 Feb 04:01
Compare
Choose a tag to compare
  • Changed pygments styling to use the "friendly" color scheme, which looks better for dark backgrounds. (#15)
  • Changed submodule organization for code related to reprex formatting. This is now in the formatting submodule. (#17)

v0.2.0

20 Feb 19:14
Compare
Choose a tag to compare
  • Overwriting old results from reprex inputs: (#8)
    • Changed reprexes to—by default—remove lines matching the comment prefix (#> by default). This means that if your input code is a previously rendered reprex, the old results will be removed first and you effectively regenerate it.
    • Added a new option old_results that—if set to True—will preserve such lines.
  • Fixed a bug that caused intentional blank lines to be removed. (#7)
  • Added stdout capturing. Any content printed to stdout will be shown as a result in the reprex. (#10)
  • Added exception handling and stacktrace capture. If the input code has an exception, the stacktrace will be shown as a result in the reprex. (#12)

v0.1.0

16 Feb 01:54
Compare
Choose a tag to compare

Initial release! 🎉