UNPKG

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