File tree Expand file tree Collapse file tree 4 files changed +48
-3
lines changed Expand file tree Collapse file tree 4 files changed +48
-3
lines changed Original file line number Diff line number Diff line change @@ -6,6 +6,13 @@ All notable changes to this project will be documented in this file.
6
6
The format is based on [Keep a Changelog](http://keepachangelog.com/)
7
7
and this project adheres to [Semantic Versioning](http://semver.org/).
8
8
9
+ ## [3.1.4] - 2017-06-03
10
+ ### Changed
11
+ - Updated documentation (Close #77)
12
+ - Moved to io.open to resolve ascii codec bug (Close #78)
13
+ - Updated completions (Close #79)
14
+ - Updated LICENSE
15
+
9
16
## [3.1.3] - 2017-01-22
10
17
### Added
11
18
- Override default Markdown file extenion for new drafts/posts (Close #73)
Original file line number Diff line number Diff line change 1
1
The MIT License (MIT)
2
2
3
- Copyright (c) 2014-2016 Ryan Morrissey
3
+ Copyright (c) 2014-2017 Ryan Morrissey
4
4
5
5
Permission is hereby granted, free of charge, to any person obtaining a copy of
6
6
this software and associated documentation files (the "Software"), to deal in
Original file line number Diff line number Diff line change 18
18
"3.0.3" : " messages/3.0.3.txt" ,
19
19
"3.1.0" : " messages/3.1.0.txt" ,
20
20
"3.1.1" : " messages/3.1.1.txt" ,
21
- "3.1.2" : " messages/3.1.1.txt" ,
22
- "3.1.3" : " messages/3.1.1.txt" ,
21
+ "3.1.2" : " messages/3.1.2.txt" ,
22
+ "3.1.3" : " messages/3.1.3.txt" ,
23
+ "3.1.4" : " messages/3.1.4.txt" ,
23
24
}
Original file line number Diff line number Diff line change
1
+ *******************************************************************************
2
+ _ _ _ _
3
+ (_) ___| | ___ _| | |
4
+ | |/ _ \ |/ / | | | | |
5
+ | | __/ <| |_| | | |
6
+ _/ |\___|_|\_\\__, |_|_|
7
+ |__/ |___/
8
+
9
+ http://23maverick23.github.io/sublime-jekyll/
10
+ http://sublime-jekyll.rtfd.org/
11
+ sublime-jekyll is licensed under the MIT license
12
+
13
+ *******************************************************************************
14
+
15
+ This update has very minor changes to documentation and completions. It also
16
+ addresses a bug that I ran into when using ascii characters in post templates.
17
+
18
+ I moved all `open()` methods to the Python 2 `io.open()` method, which is
19
+ actually what Python 3 uses as the standard `open()` method anyway. It should
20
+ resolve the previous errors I was seeing when combined with the `utf-8` encoding
21
+ option. I went with this over the `codecs.open()` method as I wanted to be
22
+ guaranteed of a unicode string output, rather than a bytestring. If you
23
+ experience any errors related to opening, editing, or promoting - in either ST2
24
+ or ST3 - please log an issue.
25
+
26
+ Thanks for using sublime-jekyll!
27
+
28
+
29
+ Change Log
30
+ ----------
31
+
32
+ ## [3.1.4] - 2017-06-03
33
+ ### Changed
34
+ - Updated documentation (Close #77)
35
+ - Moved to io.open to resolve ascii codec bug (Close #78)
36
+ - Updated completions (Close #79)
37
+ - Updated LICENSE
You can’t perform that action at this time.
0 commit comments