You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CHANGELOG.md
+17-1Lines changed: 17 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,8 +1,24 @@
1
1
# HTMLString Change Log
2
2
3
+
## 2017-01-05 — Version 2.1.1
4
+
5
+
### API
6
+
7
+
- You can now perform custom escaping by escaping Unicode scalars individually.
8
+
9
+
### Improvements
10
+
11
+
- Further improved the escaping algorithm, which is now up to 6 times faster.
12
+
- Changed the escaping strategy: special characters are now escaped with decimal sequences. This allows for better compatibility with browsers (HTML 4.0 compatible) and better speed
13
+
- Added an asymptotic complexity approximation calculator (every algorithm is now O(N))
14
+
15
+
### Fixed
16
+
17
+
- Removed .DS_Store
18
+
3
19
## 2017-01-04 — Version 2.1.0
4
20
5
-
-Change the escaping algorithm (`reduce` instead of `map`)
21
+
-Changed the escaping algorithm (`reduce` instead of `map`)
6
22
- Reduced the size of the escaping mappings
7
23
- Performance improvements: escaping is up to **6.5 times** faster and unescaping is up to **98 times** faster
0 commit comments