This repository was archived by the owner on Feb 24, 2025. It is now read-only.
File tree 3 files changed +43
-3
lines changed
3 files changed +43
-3
lines changed Original file line number Diff line number Diff line change 2
2
Changelog
3
3
=========
4
4
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
+
5
45
1.0.1
6
46
=====
7
47
Original file line number Diff line number Diff line change 64
64
# built documents.
65
65
#
66
66
# The short X.Y version.
67
- version = u'1.0 '
67
+ version = u'1.1 '
68
68
# The full version, including alpha/beta/rc tags.
69
- release = u'1.0.1 '
69
+ release = u'1.1.0 '
70
70
71
71
# The language for content autogenerated by Sphinx. Refer to documentation
72
72
# for a list of supported languages.
Original file line number Diff line number Diff line change 104
104
105
105
setup (
106
106
name = 'fedmsg' ,
107
- version = '1.0.1 ' ,
107
+ version = '1.1.0 ' ,
108
108
description = "Fedora Messaging Client API" ,
109
109
long_description = long_description ,
110
110
author = 'Ralph Bean' ,
You can’t perform that action at this time.
0 commit comments