forked from andreypopp/configure
-
Notifications
You must be signed in to change notification settings - Fork 0
/
CHANGES
69 lines (45 loc) · 1.19 KB
/
CHANGES
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
0.5
---
* constructors and multi constructors now can be registered via
Configuration.add_constructor and Configuration.add_multi_constructor
decorators
* fix serious bug with factory and obj directives: previously they dropped away
nested objects such as lists and/or mappings
* configure_logging call now can be made inside config via !logging constructor
* Configuration.configure() now called inside
Configuration.{from_file,from_string,from_dict}() class methods, controlled
via configure=True keyword argument
0.4.8
-----
* handle kwargs in factory directive
0.4.7
-----
* coerce filename to abs path
* directory — check if it exists and create if not
* interpolate config before YAML parsing
0.4.6
-----
* bytesize
0.4.5
-----
* bugfix release
0.4.4
-----
* add PyYAML to requirements
0.4.3
-----
* fix factories w/o args
0.4.2
-----
* fix configuration of values inside sequences (lists)
0.4.1
-----
* fix ``configure_logging`` formatters configuration
0.4
---
* remove ``configure.module`` -- it was a bad idea to synthesize new Python
modules on a fly
0.3.4
-----
* added ``configure.module`` module which allows exposing configuration as
synthesized Python module.