aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPaul Kehrer <paul.l.kehrer@gmail.com>2014-07-12 20:36:16 -0500
committerPaul Kehrer <paul.l.kehrer@gmail.com>2014-07-12 20:36:16 -0500
commit79b52910615aa9dcec79518fa7ecd3ee3acf7a95 (patch)
tree559cda654ddb75dee9ed9f56957f0e066ae4ffc5
parent6c59fc6839464daa0c8243bd3873ced015dd1460 (diff)
parent2e49f21553830c6bc263525036db15fc228e8a03 (diff)
downloadcryptography-79b52910615aa9dcec79518fa7ecd3ee3acf7a95.tar.gz
cryptography-79b52910615aa9dcec79518fa7ecd3ee3acf7a95.tar.bz2
cryptography-79b52910615aa9dcec79518fa7ecd3ee3acf7a95.zip
Merge pull request #1263 from alex/wordwrap-and-check
Linewrap CHANGELOG and have doc8 check it as well
-rw-r--r--CHANGELOG.rst39
-rw-r--r--tox.ini2
2 files changed, 25 insertions, 16 deletions
diff --git a/CHANGELOG.rst b/CHANGELOG.rst
index a5025e12..3969cb9e 100644
--- a/CHANGELOG.rst
+++ b/CHANGELOG.rst
@@ -55,20 +55,25 @@ Changelog
* Added :class:`~cryptography.hazmat.primitives.ciphers.modes.ECB` support
for :class:`~cryptography.hazmat.primitives.ciphers.algorithms.TripleDES` on
:doc:`/hazmat/backends/commoncrypto` and :doc:`/hazmat/backends/openssl`.
-* Deprecated :class:`~cryptography.hazmat.primitives.asymmetric.rsa.RSAPrivateKey`
- in favor of backend specific providers of the
+* Deprecated
+ :class:`~cryptography.hazmat.primitives.asymmetric.rsa.RSAPrivateKey` in
+ favor of backend specific providers of the
:class:`~cryptography.hazmat.primitives.interfaces.RSAPrivateKey` interface.
-* Deprecated :class:`~cryptography.hazmat.primitives.asymmetric.rsa.RSAPublicKey`
- in favor of backend specific providers of the
+* Deprecated
+ :class:`~cryptography.hazmat.primitives.asymmetric.rsa.RSAPublicKey` in favor
+ of backend specific providers of the
:class:`~cryptography.hazmat.primitives.interfaces.RSAPublicKey` interface.
-* Deprecated :class:`~cryptography.hazmat.primitives.asymmetric.dsa.DSAPrivateKey`
- in favor of backend specific providers of the
+* Deprecated
+ :class:`~cryptography.hazmat.primitives.asymmetric.dsa.DSAPrivateKey` in
+ favor of backend specific providers of the
:class:`~cryptography.hazmat.primitives.interfaces.DSAPrivateKey` interface.
-* Deprecated :class:`~cryptography.hazmat.primitives.asymmetric.dsa.DSAPublicKey`
- in favor of backend specific providers of the
+* Deprecated
+ :class:`~cryptography.hazmat.primitives.asymmetric.dsa.DSAPublicKey` in favor
+ of backend specific providers of the
:class:`~cryptography.hazmat.primitives.interfaces.DSAPublicKey` interface.
-* Deprecated :class:`~cryptography.hazmat.primitives.asymmetric.dsa.DSAParameters`
- in favor of backend specific providers of the
+* Deprecated
+ :class:`~cryptography.hazmat.primitives.asymmetric.dsa.DSAParameters` in
+ favor of backend specific providers of the
:class:`~cryptography.hazmat.primitives.interfaces.DSAParameters` interface.
* Deprecated ``encrypt_rsa``, ``decrypt_rsa``, ``create_rsa_signature_ctx`` and
``create_rsa_verification_ctx`` on
@@ -81,9 +86,11 @@ Changelog
* Deprecated ``salt_length`` on
:class:`~cryptography.hazmat.primitives.asymmetric.padding.MGF1` and added it
- to :class:`~cryptography.hazmat.primitives.asymmetric.padding.PSS`. It will be
- removed from ``MGF1`` in two releases per our :doc:`/api-stability` policy.
-* Added :class:`~cryptography.hazmat.primitives.ciphers.algorithms.SEED` support.
+ to :class:`~cryptography.hazmat.primitives.asymmetric.padding.PSS`. It will
+ be removed from ``MGF1`` in two releases per our :doc:`/api-stability`
+ policy.
+* Added :class:`~cryptography.hazmat.primitives.ciphers.algorithms.SEED`
+ support.
* Added :class:`~cryptography.hazmat.primitives.cmac.CMAC`.
* Added decryption support to
:class:`~cryptography.hazmat.primitives.asymmetric.rsa.RSAPrivateKey`
@@ -99,7 +106,8 @@ Changelog
* Added :class:`~cryptography.hazmat.primitives.twofactor.hotp.HOTP`.
* Added :class:`~cryptography.hazmat.primitives.twofactor.totp.TOTP`.
-* Added :class:`~cryptography.hazmat.primitives.ciphers.algorithms.IDEA` support.
+* Added :class:`~cryptography.hazmat.primitives.ciphers.algorithms.IDEA`
+ support.
* Added signature support to
:class:`~cryptography.hazmat.primitives.asymmetric.rsa.RSAPrivateKey`
and verification support to
@@ -109,7 +117,8 @@ Changelog
0.2.2 - 2014-03-03
~~~~~~~~~~~~~~~~~~
-* Removed a constant definition that was causing compilation problems with specific versions of OpenSSL.
+* Removed a constant definition that was causing compilation problems with
+ specific versions of OpenSSL.
0.2.1 - 2014-02-22
~~~~~~~~~~~~~~~~~~
diff --git a/tox.ini b/tox.ini
index 745fb37a..ef5e46d7 100644
--- a/tox.ini
+++ b/tox.ini
@@ -27,7 +27,7 @@ commands =
sphinx-build -W -b latex -d {envtmpdir}/doctrees docs docs/_build/latex
sphinx-build -W -b doctest -d {envtmpdir}/doctrees docs docs/_build/html
sphinx-build -W -b spelling docs docs/_build/html
- doc8 --allow-long-titles README.rst docs/
+ doc8 --allow-long-titles README.rst CHANGELOG.rst docs/
[testenv:docs-linkcheck]
deps =