You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* :gh:`319`: Introduce stages in :file:`.travis.yml`
183
181
The config file contains now two stages: check and test. If
184
182
check fails, the test stage won't be executed. This could
@@ -206,7 +204,7 @@ Version 3.0.0-dev.2
206
204
Deprecations
207
205
------------
208
206
209
-
* :gh:`169`: Deprecate CLI functions not imported from ``semver.cli``.
207
+
* :gh:`169`: Deprecate CLI functions not imported from :mod:`semver.cli`.
210
208
211
209
212
210
.. _semver-3.0.0-dev.2-features:
@@ -222,10 +220,10 @@ Features
222
220
* Create :file:`src/semver/_deprecated.py` for the ``deprecated`` decorator and other deprecated functions
223
221
* Create :file:`src/semver/__main__.py` to allow calling the CLI using :command:`python -m semver`
224
222
* Create :file:`src/semver/_types.py` to hold type aliases
225
-
* Create :file:`src/semver/version.py` to hold the :class:`Version` class (old name :class:`VersionInfo`) and its utility functions
223
+
* Create :file:`src/semver/version.py` to hold the :class:`~semver.version.Version` class (old name :class:`~semver.version.VersionInfo`) and its utility functions
226
224
* Create :file:`src/semver/__about__.py` for all the metadata variables
227
225
228
-
* :gh:`305`: Rename :class:`VersionInfo` to :class:`Version` but keep an alias for compatibility
226
+
* :gh:`305`: Rename :class:`~semver.version.VersionInfo` to :class:`~semver.version.Version` but keep an alias for compatibility
229
227
230
228
231
229
.. _semver-3.0.0-dev.2-docs:
@@ -239,7 +237,7 @@ Improved Documentation
239
237
* Add migration chapter from semver2 to semver3.
240
238
* Distinguish between changlog for version 2 and 3
241
239
242
-
* :gh:`305`: Add note about :class:`Version` rename.
240
+
* :gh:`305`: Add note about :class:`~semver.version.Version` rename.
243
241
244
242
245
243
.. _semver-3.0.0-dev.2-trivial:
@@ -314,8 +312,8 @@ Features
314
312
* Split test suite into separate files under :file:`tests/`
315
313
directory
316
314
* Adjust and update :file:`setup.py`. Requires Python >=3.6.*
317
-
Extract metadata directly from source (affects all the ``__version__``,
318
-
``__author__`` etc. variables)
315
+
Extract metadata directly from source (affects all the :data:`~semver.__about__.__version__`,
316
+
:data:`~semver.__about__.__author__` etc. variables)
319
317
320
318
* :gh:`270`: Configure Towncrier (:pr:`273`:)
321
319
@@ -331,7 +329,7 @@ Features
331
329
* Update documentation and add include a new section
332
330
"Changelog" included from :file:`changelog.d/README.rst`.
333
331
334
-
* :gh:`276`: Document how to create a sublass from :class:`VersionInfo` class
332
+
* :gh:`276`: Document how to create a sublass from :class:`~semver.version.VersionInfo` class
0 commit comments