Skip to content

Commit b9ef7ac

Browse files
committed
Update to v3.1.4
1 parent 32dab74 commit b9ef7ac

File tree

4 files changed

+48
-3
lines changed

4 files changed

+48
-3
lines changed

CHANGELOG

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,13 @@ All notable changes to this project will be documented in this file.
66
The format is based on [Keep a Changelog](http://keepachangelog.com/)
77
and this project adheres to [Semantic Versioning](http://semver.org/).
88

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+
916
## [3.1.3] - 2017-01-22
1017
### Added
1118
- Override default Markdown file extenion for new drafts/posts (Close #73)

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
The MIT License (MIT)
22

3-
Copyright (c) 2014-2016 Ryan Morrissey
3+
Copyright (c) 2014-2017 Ryan Morrissey
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy of
66
this software and associated documentation files (the "Software"), to deal in

messages.json

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@
1818
"3.0.3": "messages/3.0.3.txt",
1919
"3.1.0": "messages/3.1.0.txt",
2020
"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",
2324
}

messages/3.1.4.txt

Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
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

0 commit comments

Comments
 (0)