Skip to content

Commit 5cccf85

Browse files
committed
Add complete changelog to documentation
1 parent 249861f commit 5cccf85

File tree

2 files changed

+128
-0
lines changed

2 files changed

+128
-0
lines changed

docs/changelog.rst

Lines changed: 127 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,127 @@
1+
.. _changelog:
2+
3+
Changelog
4+
=========
5+
6+
Upcomming release
7+
-----------------
8+
9+
- Add changelog to documentation.
10+
11+
0.10.0 (compared to 0.9.0)
12+
--------------------------
13+
14+
- Add ``--start-live-server``/``--no-start-live-server`` options to prevent
15+
live server from starting automatically (#36), thanks to @EliRibble.
16+
17+
- Fix title formatting in documentation.
18+
19+
0.9.0 (compared to 0.8.1)
20+
-------------------------
21+
22+
- Rename marker used to pass options to application, e.g. ``pytest.mark.app``
23+
is now ``pytest.mark.options`` (#35).
24+
25+
- Documentation badge points to the package documentation.
26+
27+
- Add Travis CI configuration to ensure the tests are passed in supported
28+
environments (#32).
29+
30+
0.8.1
31+
-----
32+
33+
- Minor changes in documentation.
34+
35+
0.8.0
36+
-----
37+
38+
- New ``request_ctx`` fixture which contains all request relevant
39+
information (#29).
40+
41+
0.7.5
42+
-----
43+
44+
- Use pytest ``monkeypath`` fixture to teardown application config (#27).
45+
46+
0.7.4
47+
-----
48+
49+
- Better test coverage, e.g. tests for available fixtures and markers.
50+
51+
0.7.3
52+
-----
53+
54+
- Use retina-ready badges in documentation (#21).
55+
56+
0.7.2
57+
-----
58+
59+
- Use pytest ``monkeypatch`` fixture to rewrite live server name.
60+
61+
0.7.1
62+
-----
63+
64+
- Single-sourcing package version (#24), as per `"Python Packaging User Guide"
65+
<https://packaging.python.org/en/latest/single_source_version.html#single-sourcing-the-version>`_.
66+
67+
0.7.0
68+
-----
69+
70+
- Add package documentation (#20).
71+
72+
0.6.3
73+
-----
74+
75+
- Better documentation in README with reST formatting (#18), thanks to @greedo.
76+
77+
0.6.2
78+
-----
79+
80+
- Release the random port before starting the application live server (#17),
81+
thanks to @davehunt.
82+
83+
0.6.1
84+
-----
85+
86+
- Bind live server to a random port instead of 5000 or whatever is passed on
87+
the command line, so it's possible to execute tests in parallel via
88+
pytest-dev/pytest-xdist (#15). Thanks to @davehunt.
89+
90+
- Remove ``--liveserver-port`` option.
91+
92+
0.6.0
93+
-----
94+
95+
- Fix typo in option help for ``--liveserver-port``, thanks to @svenstaro.
96+
97+
0.5.0
98+
-----
99+
100+
- Add ``live_server`` fixture uses to run application in the background (#11),
101+
thanks to @svenstaro.
102+
103+
0.4.0
104+
-----
105+
106+
- Add ``client_class`` fixture for class-based tests.
107+
108+
0.3.4
109+
-----
110+
111+
- Include package requirements into distribution (#8).
112+
113+
0.3.3
114+
-----
115+
116+
- Explicitly pin package dependencies and their versions.
117+
118+
0.3.2
119+
-----
120+
121+
- Use ``codecs`` module to open files to prevent possible errors on open
122+
files which contains non-ascii characters.
123+
124+
0.3.1
125+
-----
126+
127+
First release on PyPI.

docs/index.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ pytest-flask with your application.
1818
tutorial
1919
features
2020
contributing
21+
changelog
2122

2223

2324
Quickstart

0 commit comments

Comments
 (0)