-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathCHANGES.txt
107 lines (67 loc) · 2.37 KB
/
CHANGES.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
CHANGES
*******
0.11 (unreleased)
=================
- Drop support for Python below 3.6
- Use GitHub Actions for CI.
0.10 (2016-10-04)
=================
- Update to work with Morepath 0.16.
- Set up integration with Travis CI.
- Add Tox environments for Python 3.3 and 3.5, PyPy 3, PEP8.
- Using Python 3.5 for PEP8 and coverage.
- Clean up meta data.
0.9 (2016-04-25)
================
- Depend on ``morepath.directive`` for ``RegRegistry`` as this is now
the official public API for extension of Morepath.
0.8.1 (2016-04-20)
==================
- There was a bug in 0.8 that used Reg's Registry instead of
``morepath.app.RegRegistry``. This could in some circumstances
lead to the wrong registry being installed.
0.8 (2016-04-08)
================
- Adjust to work with Morepath 0.13+ (and Dectate).
0.7 (2015-01-14)
================
- Can pass a custom ``renderer`` argument to ``request.include()``, to
support this feature added in BowerStatic 0.8.
http://bowerstatic.readthedocs.org/en/latest/integrating.html#custom-renderer
0.6 (2014-11-15)
================
- Use BowerStatic 0.7, which makes Tween-based integration much
simpler.
- There was a bug where references were injected but not actually
properly published.
0.5 (2014-11-13)
================
- It is no longer necessary to wrap the application with Bower using
WSGI. Instead a tween is used. To migrate, simply replace the
following::
wsgi = bower.wrap(App())
morepath.run(wsgi)
With this::
morepath.run(App())
- Requires Morepath 0.8 and Bowerstatic 0.6.
0.4 (2014-11-03)
================
- Adjust to handle Morepath 0.7 API changes concerning request
construction.
0.3 (2014-09-08)
================
- The 0.2 introduced a ``component`` method to obtain a component object
and thus its URL. This didn't turn out to be compatible with local
components, so I've changed it to ``get_component`` instead::
request.static_components.get_component('jquery').url()
- Depend on version 0.4 of BowerStatic.
0.2 (2014-08-28)
================
- Make available a ``static_components`` property on the request,
which is a BowerStatic static components object. You can use
this primarily to get the URL to a component, like this::
request.static_components.component('jquery').url()
- Depend on version 0.3 of BowerStatic.
0.1 (2014-07-07)
================
- Initial public release.