Skip to content

Commit 5b6ac21

Browse files
committed
Release 1.4.5
1 parent 0fd36ca commit 5b6ac21

File tree

3 files changed

+14
-11
lines changed

3 files changed

+14
-11
lines changed

ChangeLog.md

Lines changed: 11 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,13 @@
1-
## Release 1.4.4 (Sep 5, 2018)
1+
## Release 1.4.5 (Sep 5, 2018)
22

33
* raise now creates a real exception
44
* New primitive (get-exception-message EXCEPTION) to get message from an exception
55
* use (raise "message") or (raise (list "Exception" "message"))
66
* Exception can be one of: "AssertionError", "Exception", "KeyboardInterrupt", "MacroError", "ParseError", "ReadError", "RunTimeError", "ScanError", or "UnhandledException"
77
* (raise ...) now has proper tracebacks
88

9-
## Release 1.4.3 (Sep 1, 2018)
9+
## Release 1.4.4 (Sep 2, 2018)
1010

11-
* added requirement yasi to do proper indentation in console
12-
* yasi also provides signal for do_is_complete without full-on parsing
13-
* yasi can be customized via ~/.yasirc.json
14-
* see: https://github.com/nkmathew/yasi-sexp-indenter#customization
15-
* new scripts: calysto-scheme, calysto-scheme-debug
16-
* remove "var = undefined" useless statements
1711
* Renamed setitem, hasitem, and getitem
1812
* setitem -> set-item!
1913
* hasitem -> has-item?
@@ -24,6 +18,15 @@
2418
* get-attr
2519
* fixed bug in scheme-host's sort
2620

21+
## Release 1.4.3 (Sep 1, 2018)
22+
23+
* added requirement yasi to do proper indentation in console
24+
* yasi also provides signal for do_is_complete without full-on parsing
25+
* yasi can be customized via ~/.yasirc.json
26+
* see: https://github.com/nkmathew/yasi-sexp-indenter#customization
27+
* new scripts: calysto-scheme, calysto-scheme-debug
28+
* remove "var = undefined" useless statements
29+
2730
## Release 1.4.2 (Aug 31, 2018)
2831

2932
* new (range) tests

calysto_scheme/scheme.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@
3636

3737
PY3 = sys.version_info[0] == 3
3838

39-
__version__ = "1.4.4"
39+
__version__ = "1.4.5"
4040

4141
#############################################################
4242
# Python implementation notes:
@@ -9080,7 +9080,7 @@ def run(setup, *args):
90809080
initialize_globals()
90819081

90829082
def main():
9083-
print('Calysto Scheme, version 1.4.4')
9083+
print('Calysto Scheme, version 1.4.5')
90849084
print('----------------------------')
90859085
print('Use (exit) to exit')
90869086
import sys

calysto_scheme/src/Scheme.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828

2929
PY3 = sys.version_info[0] == 3
3030

31-
__version__ = "1.4.4"
31+
__version__ = "1.4.5"
3232

3333
#############################################################
3434
# Python implementation notes:

0 commit comments

Comments
 (0)