blob: b3a981ff0bba8a550f07b817464655d3d09d7c7e (
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
|
# Changelog
## Unreleased
## 1.1.0
### Added
- python 3.10
### Removed
- python 3.6
## 1.0.1
### Fixed
- only require py3.6+
## 1.0.0
### Added
- poetry
- python to 3.9
### Removed
- python 2.7 - 3.5 support
## 0.6.0
### Added
- support entry points for plugins from external packages
## 0.5.1
### Fixed
- issue with get_instance not checking for existing plugins when passed a dict
## 0.5.0
### Added
- py36 tests
### Changed
- moved config plugins into separate config.ConfigPluginManager class
- renamed plugin config attr to pluginmgr_config
### Removed
- name attr from ConfigPlugin objects
- args and kwargs from config.PluginBase
## 0.4.0
### Added
- py3 support
### Fixed
- always use full module name in sys.modules
### Changed
- check searchpath for null values
## 0.3.0
### Added
- allow changing searchpath after instantiation
## 0.2.0
### Added
- variadic arguments to plugin ctors
|