blob: b869034851e687c5b139022304207f833cea01b9 (
plain)
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
|
# Changelog
## Unreleased
## 1.3.0
### Added
- python 3.10 and 3.11
### Removed
- python 3.6 and 3.7
## 1.2.1
### Changed
- reverted pinning of click version, now pinned again at >= 5
## 1.2.0
### Added
- download and repo urls to setup.py (#10)
- toml support
- extras
- roundtrip support
- support for typed codecs (#3)
### Changed
- don't sort keys by default in yaml
## 1.1.0
### Added
- tests for python 3.9
### Changed
- use collections.abc
### Removed
- python 3.5 support
## 1.0.0
### Added
- tests for python 3.7 and 3.8
### Changed
- don't reuse class attribute for defaults
### Removed
- python 2.7 support
- tests for python 3.7 and 3.8
## 0.6.0
### Fixed
- log on click Context referencing non-existant `cls` property
### Changed
- decrease PyYAML requirement to >=3.10
## 0.5.0
### Added
- option_list to Context
- log to Context
- config search path includes ~/.$APP_NAME
### Changed
- empty meta returns empty dict instead of None
## 0.4.0
### Added
- py3 support
### Fixed
- set click.Context.home when config is found
## 0.3.0
### Fixed
- version bump for proper semantic versioning
## 0.2.1
### Added
- CHANGELOG!
- allow changing config_name
- try_read
- config.meta
- config.copy()
- click.Context
### Removed
- unused get_type, Endpoint
|