summaryrefslogtreecommitdiff
path: root/README.rst
Commit message (Collapse)AuthorAgeFilesLines
* Allow Version(major=1, ...).Raphaël Barrois2019-08-241-0/+16
| | | | | | Eases the creation of version objects from existing versions. We still validate the type and structure of each component.
* Improve docs on `next_patch()`.Raphaël Barrois2018-06-181-3/+3
| | | | | | | | | | Those functions had been forgotten in the docs. Clarify that `Version('1.0.1-alpha').next_patch()` is `Version('1.0.1')`, since that version is the smallest non-prerelease version greater than `Version('1.0.1-alpha')`. Closes: #67
* Convert readthedocs links for their .org -> .io migration for hosted projectsAdam Chainz2016-06-151-2/+2
| | | | | | | | As per [their blog post of the 27th April](https://blog.readthedocs.com/securing-subdomains/) ‘Securing subdomains’: > Starting today, Read the Docs will start hosting projects from subdomains on the domain readthedocs.io, instead of on readthedocs.org. This change addresses some security concerns around site cookies while hosting user generated data on the same domain as our dashboard. Test Plan: Manually visited all the links I’ve modified.
* Test up to 3.5v2.5.0Raphaël Barrois2016-02-121-1/+15
|
* Remove Copyright years (Closes #28)Raphaël Barrois2016-02-121-1/+1
| | | | It seems that stating the copyright years is useless after all :)
* Merge pull request #26 from marcelometal/patch-1Raphaël Barrois2016-02-111-1/+1
|\ | | | | Fixed typo in README.rst
| * Fixed typo in README.rstMarcelo Jorge Vieira2015-09-111-1/+1
| | | | | | Replaced 'licence' with 'license'
* | Forbid build metadata ordering (See #18)Raphaël Barrois2015-09-151-7/+6
|/ | | | | | | | | | | | | | | | | | | | | | | | | | | | | SemVer 2.0.0 states that "Build metadata SHOULD be ignored when determining version precedence". This means that, when comparing ``0.1.0+1`` to ``0.1.0+bcd``:: >>> Version('0.1.0+1') == Version('0.1.0+bcd') False >>> Version('0.1.0+1') != Version('0.1.0+bcd') True >>> Version('0.1.0+1') < Version('0.1.0+bcd') False >>> Version('0.1.0+1') > Version('0.1.0+bcd') False >>> Version('0.1.0+1') <= Version('0.1.0+bcd') False >>> Version('0.1.0+1') >= Version('0.1.0+bcd') False >>> compare(Version('0.1.0+1'), Version('0.1.0+bcd')) NotImplemented This change also has the following effects: - When including build metadata in a ``Spec``, the only valid options are ``Spec('==0.1.0+sth')`` and ``Spec('!=0.1.0+sth')`` - The meaning of ``Spec('==0.1.0+')`` is now "Only version 0.1.0 without build metadata" - ``Spec('==0.1.0')`` now matches ``Version('0.1.0+anything')``
* Advertise supporting Python3.4.Raphaël Barrois2015-04-011-1/+1
|
* Adds a new bump version func to the API.Rick Eyre2015-04-011-0/+16
|
* Fix README (Closes #19).Raphaël Barrois2015-04-011-6/+1
| | | | Also fixes README rendering on PyPI, hopefully.
* Update README.Raphaël Barrois2014-03-081-0/+5
|
* Add CREDITS file.Raphaël Barrois2014-03-081-11/+13
|
* Upgrade to semver-2.0.0 (Closes #3)Raphaël Barrois2014-02-131-1/+1
|
* Rename README.Raphaël Barrois2013-11-151-1/+303
| | | | Let's keep github happy...
* Initial versionRaphaël Barrois2012-05-141-0/+1
Signed-off-by: Raphaël Barrois <raphael.barrois@polyconseil.fr>