File tree Expand file tree Collapse file tree 4 files changed +35
-3
lines changed Expand file tree Collapse file tree 4 files changed +35
-3
lines changed Original file line number Diff line number Diff line change @@ -15,12 +15,16 @@ $ pipx install --suffix=@next 'tmuxp' --pip-args '\--pre' --force
15
15
// Usage: tmuxp@next load yoursession
16
16
```
17
17
18
- ## tmuxp 1.18 .x (unreleased)
18
+ ## tmuxp 1.19 .x (unreleased)
19
19
20
20
- Notes on upcoming releases will be added here
21
21
22
22
<!-- Maintainers, insert changes / features for the next release here -->
23
23
24
+ ## tmuxp 1.18.0 (2022-10-30)
25
+
26
+ We now refer to configs as workspaces. Other than just, just maintenance.
27
+
24
28
### Internal refactoring (#840 )
25
29
26
30
#### Rename config to workspace
Original file line number Diff line number Diff line change @@ -25,6 +25,34 @@ _Notes on the upcoming release will be added here_
25
25
26
26
<!-- Maintainers, insert changes / features for the next release here -->
27
27
28
+ ## tmuxp 1.18.0 (2022-10-30)
29
+
30
+ ** Restructuring** (#840 )
31
+
32
+ "Config files" and "configs" are now referred to as workspace files.
33
+
34
+ Additionally, there's been a major file structure update:
35
+
36
+ - ` cli/utils.py ` functions moved to ` workspace/finders.py `
37
+ - ` config.py ` split between:
38
+
39
+ - ` workspace/finders.py `
40
+ - ` workspace/freezer.py `
41
+ - ` workspace/importers.py `
42
+ - ` workspace/validation.py `
43
+
44
+ - ` workspacebuilder.py ` split into:
45
+
46
+ - ` workspace/builder.py `
47
+ - ` workspace/freezer.py `
48
+
49
+ ` config.inline ` moved to freezer
50
+
51
+ Tests:
52
+
53
+ - ` tests/fixtures/{workspacebuilder,workspacefreezer} ` -> ` tests/fixtures/workspace/{builder,freezer} `
54
+ - ` tests/test_import_{teamocil,tmuxinator}.py ` -> ` tests/workspace/test_import_{teamocil,tmuxinator}.py `
55
+
28
56
## tmuxp 1.17.0 (2022-10-09)
29
57
30
58
** Completions have changed** (#830 )
Original file line number Diff line number Diff line change 1
1
[tool .poetry ]
2
2
name = " tmuxp"
3
- version = " 1.18.0a0 "
3
+ version = " 1.18.0 "
4
4
description = " tmux session manager"
5
5
license = " MIT"
6
6
authors = [" Tony Narlock <tony@git-pull.com>" ]
Original file line number Diff line number Diff line change 1
1
__title__ = "tmuxp"
2
2
__package_name__ = "tmuxp"
3
- __version__ = "1.18.0a0 "
3
+ __version__ = "1.18.0 "
4
4
__description__ = "tmux session manager"
5
5
__email__ = "tony@git-pull.com"
6
6
__author__ = "Tony Narlock"
You can’t perform that action at this time.
0 commit comments