UNPKG

1.6 kBMarkdownView Raw
1# 0.6.0
2## New Features
3* Added Ctrl-R reverse search for terminal history
4
5# 0.5.0
6## New Features
7* Added the ability to use Promises in a synchronous manner.
8
9 If bluebird is available you can use `yield` like so:
10 ~~~ coffeescript
11 [0] pryjs> res = yield functionThatReturnsAPromise()
12 ~~~
13
14# 0.1.0
15
16## New Features
17* New variable given to you with the results of the last statement.
18
19# 0.0.14
20
21## Fixed Bugs
22
23* No longer executing input multiple times.
24* Show errors as they happen, not just when asked.
25
26# 0.0.9
27
28## New Features
29
30* Allow typing multiple lines of javascript in the prompt.
31* Add typeahead/autocomplete when writing up commands.
32* Add `ctrl+v` for multiline instead of guessing.
33
34# 0.0.8
35
36## New Features
37
38* Add a new `kill` command to kill the entire process instead of just this prompt.
39* Add a new `wtf` command to show you the last caught error.
40* Allow you to type CoffeeScript in the prompt.
41* Add a new `help` command to list all the available commands.
42* Add new `play` command that can play lines via their absolute line numbers.
43* Change the pry statement to a much prettier `eval(pry.it)`.
44
45## Fixed Bugs
46
47* When nothing is returned it gives you back the prompt.
48
49# 0.0.7
50
51## New Features
52
53* Fix array slice bug when trying to view lines before 0.
54
55# 0.0.6
56
57## New Features
58
59* Allow version to be retrieved from the prompt.
60* Fix prompt not giving back control of i/o.
61* Catch exceptions in the prompt and display them instead of erroring.
62
63# 0.0.5
64
65## New Features
66
67* Keyboard shorts in prompt.
68* History in the prompt.
69* Colored output for functions and objects.