Skip to content

Commit 22e5442

Browse files
committed
Release v1.6.2.3
1 parent e6b0be2 commit 22e5442

File tree

4 files changed

+15
-17
lines changed

4 files changed

+15
-17
lines changed

CHANGELOG.rst

+6
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,14 @@
1+
v1.6.2.3 (2019-05-11)
2+
=====================
3+
- Fix Issue #124
4+
5+
16
v1.6.2.2 (2019-04-21)
27
=====================
38
- Fix PyYAML CVE-2017-18342
49
- Fix Jinja2 CVE-2019-10906
510

11+
612
v1.6.2.1 (2017-06-04)
713
=====================
814
- Fix preview not work in py3

README.md

+5-14
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,11 @@ Simiki is a simple wiki framework, written in [Python](https://www.python.org/).
1515

1616
Simiki is short for `Simple Wiki` :)
1717

18-
18+
> New in version 1.6.2.3 (2019-05-11)
19+
>
20+
> - Fix Issue #124
21+
>
22+
>
1923
> New in version 1.6.2.2 (2019-04-21)
2024
>
2125
> - Fix PyYAML CVE-2017-18342
@@ -25,19 +29,6 @@ Simiki is short for `Simple Wiki` :)
2529
> New in version 1.6.2.1 (2017-06-04)
2630
>
2731
> - Fix preview not work in py3
28-
>
29-
>
30-
> New in version 1.6.2 (2017-06-02)
31-
>
32-
> - Fix issue #88, map url path to local file system path and fix root url with non-ascii
33-
> - Fix long subcommand not work bug
34-
> - Fix preview with temporary files generated by editor
35-
> - Fix fabfile with py3
36-
> - Update theme simple2
37-
> - Add Dockerfile
38-
> - Support Python3.6, remove Python2.6
39-
> - Support custom markdown extensions configuration, [doc](http://simiki.org/docs/configuration.html)
40-
> - Enable nl2br(newline to line break) markdown extension by default
4132
4233

4334
## Installation ##

setup.py

+3-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
#!/usr/bin/env python
22
from __future__ import with_statement
33
import os
4+
import io
45
from setuptools import setup, find_packages
56
import simiki
67

@@ -11,13 +12,13 @@
1112
]
1213
}
1314

14-
with open("requirements.txt") as f:
15+
with io.open("requirements.txt", "rt", encoding="utf-8") as f:
1516
requires = [l for l in f.read().splitlines() if l]
1617

1718
readme = "README.md"
1819
if os.path.exists("README.rst"):
1920
readme = "README.rst"
20-
with open(readme) as f:
21+
with io.open(readme, "rt", encoding="utf-8") as f:
2122
long_description = f.read()
2223

2324

simiki/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/usr/bin/env python
22
# -*- coding: utf-8 -*-
33

4-
__version__ = "1.6.2.2"
4+
__version__ = "1.6.2.3"
55

66
allowed_extensions = ("md", "mkd", "mdown", "markdown")

0 commit comments

Comments
 (0)