Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commitb0dda81

Browse files
committed
add a rudimentary change log to the repository
1 parent0a48b2f commitb0dda81

File tree

3 files changed

+54
-2
lines changed

3 files changed

+54
-2
lines changed

‎CHANGES.rst

Lines changed: 49 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,49 @@
1+
Change Log
2+
----------
3+
4+
1.0
5+
~~~
6+
7+
Released on XXX, 2013
8+
9+
10+
0.95
11+
~~~~
12+
13+
Released on February 11, 2012
14+
15+
16+
0.90
17+
~~~~
18+
19+
Released on January 17, 2010
20+
21+
22+
0.11.1
23+
~~~~~~
24+
25+
Released on June 12, 2008
26+
27+
28+
0.11
29+
~~~~
30+
31+
Released on June 10, 2008
32+
33+
34+
0.10
35+
~~~~
36+
37+
Released on October 7, 2007
38+
39+
40+
0.9
41+
~~~
42+
43+
Released on March 11, 2007
44+
45+
46+
0.2
47+
~~~
48+
49+
Released on January 8, 2007

‎MANIFEST.in

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
include LICENSE
2+
include CHANGES.rst
23
include README.rst
34
include requirements*.txt
45
graft html5lib/tests/testdata

‎setup.py

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,10 @@
2323
ifos.path.isdir(os.path.join('html5lib',name))and
2424
notname.startswith('.')andname!='tests']
2525

26-
withcodecs.open(os.path.join(os.path.dirname(__file__),'README.rst'),'r','utf8')asld_file:
27-
long_description=ld_file.read()
26+
current_dir=os.path.dirname(__file__)
27+
withcodecs.open(os.path.join(current_dir,'README.rst'),'r','utf8')asreadme_file:
28+
withcodecs.open(os.path.join(current_dir,'CHANGES.rst'),'r','utf8')aschanges_file:
29+
long_description=readme_file.read()+'\n'+changes_file.read()
2830

2931
setup(name='html5lib',
3032
version='1.0b1',

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp