Skip to content

Commit 1b4e308

Browse files
committed
version 1.8.1
1 parent a56c8d5 commit 1b4e308

File tree

3 files changed

+8
-4
lines changed

3 files changed

+8
-4
lines changed

lib/CHANGES.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,10 @@
1+
## 1.8.1
2+
3+
- correctly handle lines ending in unclosed string (see [#112](https://github.com/shaunlebron/parinfer/issues/112))
4+
15
## 1.8.0
26

3-
- return new `tabStops` property (see #110)
7+
- return new `tabStops` property (see [#110](https://github.com/shaunlebron/parinfer/pull/110))
48

59
## 1.7.1
610

lib/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "parinfer",
3-
"version": "1.8.0+dev",
3+
"version": "1.8.1",
44
"description": "a simpler way to write Lisp",
55
"main": "parinfer.js",
66
"scripts": {

lib/parinfer.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
//
2-
// Parinfer 1.8.0+dev
2+
// Parinfer 1.8.1
33
//
44
// Copyright 2015-2016 © Shaun LeBron
55
// MIT License
@@ -886,7 +886,7 @@ function parenMode(text, options) {
886886
}
887887

888888
var API = {
889-
version: "1.8.0+dev",
889+
version: "1.8.1",
890890
indentMode: indentMode,
891891
parenMode: parenMode
892892
};

0 commit comments

Comments
 (0)