Skip to content
This repository was archived by the owner on Feb 24, 2025. It is now read-only.

Commit da90440

Browse files
committed
Release notes for fedmsg-1.1.0
Signed-off-by: Jeremy Cline <[email protected]>
1 parent 1dc3579 commit da90440

File tree

3 files changed

+43
-3
lines changed

3 files changed

+43
-3
lines changed

doc/changelog.rst

+40
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,46 @@
22
Changelog
33
=========
44

5+
v1.1.0
6+
======
7+
8+
Deprecations
9+
------------
10+
11+
* Using URLs for the CA and CRL settings (``ca_cert_location`` and ``crl_location``
12+
respectively) is now deprecated and will be removed in a future release. Please
13+
use filesystem paths instead.
14+
15+
Features
16+
--------
17+
18+
* Allow the CA and CRL configuration options to be file paths
19+
(`#484 <https://github.com/fedora-infra/fedmsg/pull/484>`_).
20+
21+
* All configuration settings now have defaults and validators
22+
(`#488 <https://github.com/fedora-infra/fedmsg/pull/488>`_).
23+
24+
* Strengthen "legacy protection" in fedmsg.meta by catching KeyErrors
25+
(`#493 <https://github.com/fedora-infra/fedmsg/pull/493>`_).
26+
27+
28+
Bug fixes
29+
---------
30+
31+
* Remove the duplicate dependency on ``cryptography`` from the main install
32+
requires (`#486 <https://github.com/fedora-infra/fedmsg/pull/486>`_).
33+
34+
* Adjust the x509 signing API to return text instead of bytes
35+
(`#495 <https://github.com/fedora-infra/fedmsg/issues/495>`_).
36+
37+
Development improvements
38+
------------------------
39+
40+
* Alter how the tests determine if cryptography is available to work better
41+
with old versions of pyOpenSSL
42+
(`#482 <https://github.com/fedora-infra/fedmsg/pull/482>`_).
43+
44+
545
1.0.1
646
=====
747

doc/conf.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -64,9 +64,9 @@
6464
# built documents.
6565
#
6666
# The short X.Y version.
67-
version = u'1.0'
67+
version = u'1.1'
6868
# The full version, including alpha/beta/rc tags.
69-
release = u'1.0.1'
69+
release = u'1.1.0'
7070

7171
# The language for content autogenerated by Sphinx. Refer to documentation
7272
# for a list of supported languages.

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@
104104

105105
setup(
106106
name='fedmsg',
107-
version='1.0.1',
107+
version='1.1.0',
108108
description="Fedora Messaging Client API",
109109
long_description=long_description,
110110
author='Ralph Bean',

0 commit comments

Comments
 (0)