From d1f6ebbb65500b4db35d614cd803ed6003e6922c Mon Sep 17 00:00:00 2001 From: Tony Narlock Date: Sat, 19 Mar 2022 08:55:10 -0500 Subject: [PATCH 01/16] docs(quickstart): Typo --- docs/quickstart.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/quickstart.md b/docs/quickstart.md index c3395084b0b..a460374d7ee 100644 --- a/docs/quickstart.md +++ b/docs/quickstart.md @@ -110,7 +110,7 @@ session. You can also load a configuration, and append the windows to the current active session. You can also have a custom tmuxp config directory by setting the -`TMUX_CONFIGDIR` in your environment variables. +`TMUXP_CONFIGDIR` in your environment variables. ```console From 6e7d42f97d90ab09f7ca88e2d532e8a49db23deb Mon Sep 17 00:00:00 2001 From: Tony Narlock Date: Sat, 19 Mar 2022 08:55:43 -0500 Subject: [PATCH 02/16] docs(quickstart): Remove unused link --- docs/quickstart.md | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/docs/quickstart.md b/docs/quickstart.md index a460374d7ee..bae73b6d990 100644 --- a/docs/quickstart.md +++ b/docs/quickstart.md @@ -132,8 +132,7 @@ You can also [Import][import] configs [teamocil][teamocil] and [tmuxinator][tmux :::{seealso} -{ref}`libtmux python API documentation ` and {ref}`developing`, -{ref}`internals`. +{ref}`libtmux python API documentation ` and {ref}`developing`. ::: From d9b1e7dc4694eeae16ca9fe2320c419c63805e95 Mon Sep 17 00:00:00 2001 From: Tony Narlock Date: Sat, 19 Mar 2022 09:09:47 -0500 Subject: [PATCH 03/16] docs(configuration): Add section --- docs/configuration/environmental-variables.md | 11 +++++++++++ docs/configuration/index.md | 7 +++++++ docs/index.md | 1 + 3 files changed, 19 insertions(+) create mode 100644 docs/configuration/environmental-variables.md create mode 100644 docs/configuration/index.md diff --git a/docs/configuration/environmental-variables.md b/docs/configuration/environmental-variables.md new file mode 100644 index 00000000000..48d1f9dfc56 --- /dev/null +++ b/docs/configuration/environmental-variables.md @@ -0,0 +1,11 @@ +(environmental-variables)= + +# Environmental variables + +## `TMUXP_CONFIGDIR` + +Example: `TMUXP_CONFIGDIR=$HOME/.mytmuxpconfigdir tmuxp load cpython` + +## `LIBTMUX_TMUX_FORMAT_SEPARATOR` + +See [`LIBTMUX_TMUX_FORMAT_SEPARATOR`](https://libtmux.git-pull.com/api.html#tmux-format-separator) in libtmux API. diff --git a/docs/configuration/index.md b/docs/configuration/index.md new file mode 100644 index 00000000000..a0dd805e0e9 --- /dev/null +++ b/docs/configuration/index.md @@ -0,0 +1,7 @@ +# Reference + +```{toctree} + +environmental-variables + +``` diff --git a/docs/index.md b/docs/index.md index cf2b5781fbe..a8cc40d63cb 100644 --- a/docs/index.md +++ b/docs/index.md @@ -23,6 +23,7 @@ about quickstart examples commands/index +configuration/index plugin_system ``` From e6a2469b8851e111c6b0e0885a991e2dc5f7d18d Mon Sep 17 00:00:00 2001 From: Tony Narlock Date: Sat, 19 Mar 2022 09:20:48 -0500 Subject: [PATCH 04/16] docs(configuratio): Move examples to configuration --- docs/configuration/environmental-variables.md | 13 +++- docs/{ => configuration}/examples.md | 78 +++++++++---------- docs/configuration/index.md | 3 +- docs/index.md | 1 - docs/redirects.txt | 1 + 5 files changed, 54 insertions(+), 42 deletions(-) rename docs/{ => configuration}/examples.md (84%) diff --git a/docs/configuration/environmental-variables.md b/docs/configuration/environmental-variables.md index 48d1f9dfc56..29dc84d8f2e 100644 --- a/docs/configuration/environmental-variables.md +++ b/docs/configuration/environmental-variables.md @@ -8,4 +8,15 @@ Example: `TMUXP_CONFIGDIR=$HOME/.mytmuxpconfigdir tmuxp load cpython` ## `LIBTMUX_TMUX_FORMAT_SEPARATOR` -See [`LIBTMUX_TMUX_FORMAT_SEPARATOR`](https://libtmux.git-pull.com/api.html#tmux-format-separator) in libtmux API. +:::{seealso} + +[`LIBTMUX_TMUX_FORMAT_SEPARATOR`](https://libtmux.git-pull.com/api.html#tmux-format-separator) in libtmux API. + +::: + +In rare circumstances the `tmux -F` separator under the hood may cause issues +building sessions. For this case you can override it here. + +```console +$ env LIBTMUX_TMUX_FORMAT_SEPARATOR='__SEP__' tmuxp load [session] +``` diff --git a/docs/examples.md b/docs/configuration/examples.md similarity index 84% rename from docs/examples.md rename to docs/configuration/examples.md index 262adaa734e..0ea54fbf9b9 100644 --- a/docs/examples.md +++ b/docs/configuration/examples.md @@ -29,7 +29,7 @@ punctual. ````{tab} YAML -```{literalinclude} ../examples/shorthands.yaml +```{literalinclude} ../../examples/shorthands.yaml :language: yaml ``` @@ -39,7 +39,7 @@ punctual. ````{tab} JSON -```{literalinclude} ../examples/shorthands.json +```{literalinclude} ../../examples/shorthands.json :language: json ``` @@ -55,7 +55,7 @@ Note `''` counts as an empty carriage return. ````{tab} YAML -```{literalinclude} ../examples/blank-panes.yaml +```{literalinclude} ../../examples/blank-panes.yaml :language: yaml ``` @@ -64,7 +64,7 @@ Note `''` counts as an empty carriage return. ````{tab} JSON -```{literalinclude} ../examples/blank-panes.json +```{literalinclude} ../../examples/blank-panes.json :language: json ``` @@ -93,7 +93,7 @@ Note `''` counts as an empty carriage return. ````{tab} YAML -```{literalinclude} ../examples/2-pane-vertical.yaml +```{literalinclude} ../../examples/2-pane-vertical.yaml :language: yaml ``` @@ -102,7 +102,7 @@ Note `''` counts as an empty carriage return. ````{tab} JSON -```{literalinclude} ../examples/2-pane-vertical.json +```{literalinclude} ../../examples/2-pane-vertical.json :language: json ``` @@ -131,7 +131,7 @@ Note `''` counts as an empty carriage return. ````{tab} YAML -```{literalinclude} ../examples/3-pane.yaml +```{literalinclude} ../../examples/3-pane.yaml :language: yaml ``` @@ -140,7 +140,7 @@ Note `''` counts as an empty carriage return. ````{tab} JSON -```{literalinclude} ../examples/3-pane.json +```{literalinclude} ../../examples/3-pane.json :language: json ``` @@ -169,7 +169,7 @@ Note `''` counts as an empty carriage return. ````{tab} YAML -```{literalinclude} ../examples/4-pane.yaml +```{literalinclude} ../../examples/4-pane.yaml :language: yaml ``` @@ -178,7 +178,7 @@ Note `''` counts as an empty carriage return. ````{tab} JSON -```{literalinclude} ../examples/4-pane.json +```{literalinclude} ../../examples/4-pane.json :language: json ``` @@ -191,7 +191,7 @@ Equivalent to `tmux new-window -c `. ````{tab} YAML -```{literalinclude} ../examples/start-directory.yaml +```{literalinclude} ../../examples/start-directory.yaml :language: yaml ``` @@ -200,7 +200,7 @@ Equivalent to `tmux new-window -c `. ````{tab} JSON -```{literalinclude} ../examples/start-directory.json +```{literalinclude} ../../examples/start-directory.json :language: json ``` @@ -244,7 +244,7 @@ please make a ticket on the [issue tracker][issue tracker]. ````{tab} YAML -```{literalinclude} ../examples/env-variables.yaml +```{literalinclude} ../../examples/env-variables.yaml :language: yaml ``` @@ -253,7 +253,7 @@ please make a ticket on the [issue tracker][issue tracker]. ````{tab} JSON -```{literalinclude} ../examples/env-variables.json +```{literalinclude} ../../examples/env-variables.json :language: json ``` @@ -266,7 +266,7 @@ tmuxp will set session environment variables. ````{tab} YAML -```{literalinclude} ../examples/session-environment.yaml +```{literalinclude} ../../examples/session-environment.yaml :language: yaml ``` @@ -274,7 +274,7 @@ tmuxp will set session environment variables. ````{tab} JSON -```{literalinclude} ../examples/session-environment.json +```{literalinclude} ../../examples/session-environment.json :language: json ``` @@ -288,7 +288,7 @@ selected upon loading. ````{tab} YAML -```{literalinclude} ../examples/focus-window-and-panes.yaml +```{literalinclude} ../../examples/focus-window-and-panes.yaml :language: yaml ``` @@ -297,7 +297,7 @@ selected upon loading. ````{tab} JSON -```{literalinclude} ../examples/focus-window-and-panes.json +```{literalinclude} ../../examples/focus-window-and-panes.json :language: json ``` @@ -312,7 +312,7 @@ This will add the `shell_command` to the bash history in the pane. ````{tab} YAML -```{literalinclude} ../examples/suppress-history.yaml +```{literalinclude} ../../examples/suppress-history.yaml :language: yaml ``` @@ -321,7 +321,7 @@ This will add the `shell_command` to the bash history in the pane. ````{tab} JSON -```{literalinclude} ../examples/suppress-history.json +```{literalinclude} ../../examples/suppress-history.json :language: json ``` @@ -349,7 +349,7 @@ Omit sending {kbd}`enter` to key commands. Equivalent to ````{tab} YAML -```{literalinclude} ../examples/skip-send.yaml +```{literalinclude} ../../examples/skip-send.yaml :language: yaml ``` @@ -358,7 +358,7 @@ Omit sending {kbd}`enter` to key commands. Equivalent to ````{tab} JSON -```{literalinclude} ../examples/skip-send.json +```{literalinclude} ../../examples/skip-send.json :language: json ``` @@ -367,7 +367,7 @@ Omit sending {kbd}`enter` to key commands. Equivalent to ````{tab} YAML (pane-level) -```{literalinclude} ../examples/skip-send-pane-level.yaml +```{literalinclude} ../../examples/skip-send-pane-level.yaml :language: yaml ``` @@ -376,7 +376,7 @@ Omit sending {kbd}`enter` to key commands. Equivalent to ````{tab} JSON (pane-level) -```{literalinclude} ../examples/skip-send-pane-level.json +```{literalinclude} ../../examples/skip-send-pane-level.json :language: json ``` @@ -408,7 +408,7 @@ This is especially useful for expensive commands where the terminal needs some b ````{tab} Virtualenv -```{literalinclude} ../examples/sleep-virtualenv.yaml +```{literalinclude} ../../examples/sleep-virtualenv.yaml :language: yaml ``` @@ -416,7 +416,7 @@ This is especially useful for expensive commands where the terminal needs some b ````{tab} YAML -```{literalinclude} ../examples/sleep.yaml +```{literalinclude} ../../examples/sleep.yaml :language: yaml ``` @@ -425,7 +425,7 @@ This is especially useful for expensive commands where the terminal needs some b ````{tab} JSON -```{literalinclude} ../examples/sleep.json +```{literalinclude} ../../examples/sleep.json :language: json ``` @@ -434,7 +434,7 @@ This is especially useful for expensive commands where the terminal needs some b ````{tab} YAML (pane-level) -```{literalinclude} ../examples/sleep-pane-level.yaml +```{literalinclude} ../../examples/sleep-pane-level.yaml :language: yaml ``` @@ -443,7 +443,7 @@ This is especially useful for expensive commands where the terminal needs some b ````{tab} JSON (pane-level) -```{literalinclude} ../examples/sleep-pane-level.json +```{literalinclude} ../../examples/sleep-pane-level.json :language: json ``` @@ -457,7 +457,7 @@ without `window_index` will use the lowest available window index. ````{tab} YAML -```{literalinclude} ../examples/window-index.yaml +```{literalinclude} ../../examples/window-index.yaml :language: yaml ``` @@ -466,7 +466,7 @@ without `window_index` will use the lowest available window index. ````{tab} JSON -```{literalinclude} ../examples/window-index.json +```{literalinclude} ../../examples/window-index.json :language: json ``` @@ -481,7 +481,7 @@ different shells on different panes. ````{tab} YAML -```{literalinclude} ../examples/pane-shell.yaml +```{literalinclude} ../../examples/pane-shell.yaml :language: yaml ``` @@ -490,7 +490,7 @@ different shells on different panes. ````{tab} JSON -```{literalinclude} ../examples/pane-shell.json +```{literalinclude} ../../examples/pane-shell.json :language: json ``` @@ -507,14 +507,14 @@ Including `automatic-rename`, `default-shell`, ````{tab} YAML -```{literalinclude} ../examples/options.yaml +```{literalinclude} ../../examples/options.yaml :language: yaml ``` ```` ````{tab} JSON -```{literalinclude} ../examples/options.json +```{literalinclude} ../../examples/options.json :language: json ``` @@ -527,14 +527,14 @@ Apply window options after panes have been created. Useful for pane during creation. ````{tab} YAML -```{literalinclude} ../examples/2-pane-synchronized.yaml +```{literalinclude} ../../examples/2-pane-synchronized.yaml :language: yaml ``` ```` ````{tab} JSON -```{literalinclude} ../examples/2-pane-synchronized.json +```{literalinclude} ../../examples/2-pane-synchronized.json :language: json ``` @@ -543,14 +543,14 @@ pane during creation. ## Main pane height ````{tab} YAML -```{literalinclude} ../examples/main-pane-height.yaml +```{literalinclude} ../../examples/main-pane-height.yaml :language: yaml ``` ```` ````{tab} JSON -```{literalinclude} ../examples/main-pane-height.json +```{literalinclude} ../../examples/main-pane-height.json :language: json ``` diff --git a/docs/configuration/index.md b/docs/configuration/index.md index a0dd805e0e9..10194adf0f7 100644 --- a/docs/configuration/index.md +++ b/docs/configuration/index.md @@ -1,7 +1,8 @@ -# Reference +# Configuration ```{toctree} environmental-variables +examples ``` diff --git a/docs/index.md b/docs/index.md index a8cc40d63cb..36921d3e71b 100644 --- a/docs/index.md +++ b/docs/index.md @@ -21,7 +21,6 @@ about quickstart -examples commands/index configuration/index plugin_system diff --git a/docs/redirects.txt b/docs/redirects.txt index 36313d1a38a..42af93f4db5 100644 --- a/docs/redirects.txt +++ b/docs/redirects.txt @@ -1 +1,2 @@ "cli.md" "commands/index.md" +"examples.md" "configuration/examples.md" From 0cfcecbb027431ab7eecbcedeb2144d30f8c0e67 Mon Sep 17 00:00:00 2001 From: Tony Narlock Date: Sat, 19 Mar 2022 09:22:19 -0500 Subject: [PATCH 05/16] docs: Note the before_script --- docs/developing.md | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/docs/developing.md b/docs/developing.md index 76f3f846cdb..fdfba36f10a 100644 --- a/docs/developing.md +++ b/docs/developing.md @@ -255,6 +255,13 @@ this will load the `.tmuxp.yaml` in the root of the project. ``` +`.tmuxp-before-script.sh` ran by `before_script`: + +```{literalinclude} ../.tmuxp-before-script.sh +:language: console + +``` + (gh-actions)= ## Github Actions From 74492f10ecb35bf0bed2115b0e71bd9103c45790 Mon Sep 17 00:00:00 2001 From: Tony Narlock Date: Sat, 19 Mar 2022 09:24:37 -0500 Subject: [PATCH 06/16] docs: Move plugin_system -> plugins/ --- docs/index.md | 2 +- docs/{plugin_system.md => plugins/index.md} | 4 ++-- docs/redirects.txt | 1 + 3 files changed, 4 insertions(+), 3 deletions(-) rename docs/{plugin_system.md => plugins/index.md} (99%) diff --git a/docs/index.md b/docs/index.md index 36921d3e71b..a5b75c43bc0 100644 --- a/docs/index.md +++ b/docs/index.md @@ -23,7 +23,7 @@ about quickstart commands/index configuration/index -plugin_system +plugins/index ``` diff --git a/docs/plugin_system.md b/docs/plugins/index.md similarity index 99% rename from docs/plugin_system.md rename to docs/plugins/index.md index 6552efc597b..92ce67a5003 100644 --- a/docs/plugin_system.md +++ b/docs/plugins/index.md @@ -1,6 +1,6 @@ -(plugin-system)= +(plugins)= -# Plugin System +# Plugins The plugin system allows users to customize and extend different aspects of tmuxp without the need to change tmuxp itself. diff --git a/docs/redirects.txt b/docs/redirects.txt index 42af93f4db5..a8d8f8af562 100644 --- a/docs/redirects.txt +++ b/docs/redirects.txt @@ -1,2 +1,3 @@ "cli.md" "commands/index.md" "examples.md" "configuration/examples.md" +"plugin_system.md" "plugins/index.md" From 87f3e176adc96f396ea8d5d6c582c86cfa1d97ff Mon Sep 17 00:00:00 2001 From: Tony Narlock Date: Sat, 19 Mar 2022 09:51:40 -0500 Subject: [PATCH 07/16] docs: Minimum example --- examples/minimal.yaml | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 examples/minimal.yaml diff --git a/examples/minimal.yaml b/examples/minimal.yaml new file mode 100644 index 00000000000..0efa7730498 --- /dev/null +++ b/examples/minimal.yaml @@ -0,0 +1,4 @@ +session_name: My tmux session +windows: + - panes: + - From 15854862401190a03cb76b5e1fb57762197c09b7 Mon Sep 17 00:00:00 2001 From: Tony Narlock Date: Sat, 19 Mar 2022 09:53:46 -0500 Subject: [PATCH 08/16] docs(configuration): Basic configuration page --- docs/configuration/index.md | 57 +++++++++++++++++++++++++++++++++++++ 1 file changed, 57 insertions(+) diff --git a/docs/configuration/index.md b/docs/configuration/index.md index 10194adf0f7..908bde97c1c 100644 --- a/docs/configuration/index.md +++ b/docs/configuration/index.md @@ -1,5 +1,62 @@ +(config)= + +(configuration)= + # Configuration +The configuration syntax is declarative and based on tmux's Session, Window and +Panes hierarchy. Both JSON and YAML is accepted. + +## Launching your session + +When you have `tmuxp` installed in your environment alongside tmux, you can use: + +```console +$ tmuxp load ./path/to/file +``` + +to load your workspace and launch directly into tmux. + +In certain cases, tmuxp will try help you when: + +- _If your session already exists_: tmuxp will prompt you to re-attach. It does this + by checking if the configuration's `session_name` matches a session already + running on the same server. +- _If you're inside a tmux client already_, `tmuxp` will let you create a new session and switch to it, or append the windows to your existing + session. + +## What's in a config? + +1. A session name: `session_name: your session` +2. A list of _windows_ +3. A list of _panes_ for each window + +````{tab} Basics + +```yaml +session_name: My session +windows: +- window_name: Window 1 + panes: + - echo "pane 1" + - echo "pane 2" +``` + +```` + +````{tab} Smallest possible + +```{literalinclude} ../../examples/minimal.yaml +:language: yaml + +``` + +As of 1.11.x. + +```` + +## Reference and usage + ```{toctree} environmental-variables From 019c7c3eca7d29e37f33ab01402f04084b972271 Mon Sep 17 00:00:00 2001 From: Tony Narlock Date: Sat, 19 Mar 2022 09:54:27 -0500 Subject: [PATCH 09/16] docs: Rename example configurations to examples --- docs/configuration/examples.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/configuration/examples.md b/docs/configuration/examples.md index 0ea54fbf9b9..90340cb0d8f 100644 --- a/docs/configuration/examples.md +++ b/docs/configuration/examples.md @@ -1,6 +1,6 @@ (examples)= -# Example Configurations +# Examples ## Short hand / inline style From c1ee5e29c35ad9e527d56aa9cf3cd25db237a91a Mon Sep 17 00:00:00 2001 From: Tony Narlock Date: Sat, 19 Mar 2022 09:55:11 -0500 Subject: [PATCH 10/16] docs(configuration): Note commands inside of panes --- docs/configuration/index.md | 1 + 1 file changed, 1 insertion(+) diff --git a/docs/configuration/index.md b/docs/configuration/index.md index 908bde97c1c..dea60190d9b 100644 --- a/docs/configuration/index.md +++ b/docs/configuration/index.md @@ -30,6 +30,7 @@ In certain cases, tmuxp will try help you when: 1. A session name: `session_name: your session` 2. A list of _windows_ 3. A list of _panes_ for each window +4. A list of _commands_ for each pane ````{tab} Basics From db66b2ed9a80178a370715a8cb4ec7ae96e0ba71 Mon Sep 17 00:00:00 2001 From: Tony Narlock Date: Sun, 17 Apr 2022 10:07:12 -0500 Subject: [PATCH 11/16] build(deps): Allow click 8.1 (backport of #773) See also: https://click.palletsprojects.com/en/8.1.x/changes/#version-8-1-2 --- poetry.lock | 10 +++++----- pyproject.toml | 2 +- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/poetry.lock b/poetry.lock index d0142200529..e2512b69dda 100644 --- a/poetry.lock +++ b/poetry.lock @@ -158,11 +158,11 @@ clikit = ">=0.6.0,<0.7.0" [[package]] name = "click" -version = "8.0.4" +version = "8.1.2" description = "Composable command line interface toolkit" category = "main" optional = false -python-versions = ">=3.6" +python-versions = ">=3.7" [package.dependencies] colorama = {version = "*", markers = "platform_system == \"Windows\""} @@ -1285,7 +1285,7 @@ test = [] [metadata] lock-version = "1.1" python-versions = "^3.7" -content-hash = "301084095b8b593af4d0924c66952293d05f9dbdb7babda954a5c7344d50b3b6" +content-hash = "fb49055dc8fbc670c8ef958461a851de697cc2ada8d17da1e30e6574264db637" [metadata.files] aafigure = [ @@ -1410,8 +1410,8 @@ cleo = [ {file = "cleo-0.8.1.tar.gz", hash = "sha256:3d0e22d30117851b45970b6c14aca4ab0b18b1b53c8af57bed13208147e4069f"}, ] click = [ - {file = "click-8.0.4-py3-none-any.whl", hash = "sha256:6a7a62563bbfabfda3a38f3023a1db4a35978c0abd76f6c9605ecd6554d6d9b1"}, - {file = "click-8.0.4.tar.gz", hash = "sha256:8458d7b1287c5fb128c90e23381cf99dcde74beaf6c7ff6384ce84d6fe090adb"}, + {file = "click-8.1.2-py3-none-any.whl", hash = "sha256:24e1a4a9ec5bf6299411369b208c1df2188d9eb8d916302fe6bf03faed227f1e"}, + {file = "click-8.1.2.tar.gz", hash = "sha256:479707fe14d9ec9a0757618b7a100a0ae4c4e236fac5b7f80ca68028141a1a72"}, ] clikit = [ {file = "clikit-0.6.2-py2.py3-none-any.whl", hash = "sha256:71268e074e68082306e23d7369a7b99f824a0ef926e55ba2665e911f7208489e"}, diff --git a/pyproject.toml b/pyproject.toml index 7bd28bd407b..178afe407a2 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -46,7 +46,7 @@ tmuxp = 'tmuxp:cli.cli' [tool.poetry.dependencies] python = "^3.7" -click = ">7,<8.1" +click = ">7,<8.2" kaptan = ">=0.5.10" libtmux = "~0.11.0" colorama = ">=0.3.9" From 5f1d7979561a80670074fe2982324a132b3d3cee Mon Sep 17 00:00:00 2001 From: Tony Narlock Date: Sun, 17 Apr 2022 10:14:33 -0500 Subject: [PATCH 12/16] docs(CHANGES): Note backport of click 8.1.x --- CHANGES | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/CHANGES b/CHANGES index 4c7b28d7557..e3c1eccabe8 100644 --- a/CHANGES +++ b/CHANGES @@ -19,7 +19,11 @@ $ pipx install --suffix=@next 'tmuxp' --pip-args '\--pre' --force - _Insert changes/features/fixes for next release here_ -## tmuxp 1.10.0 (2022-03-19) +## tmuxp 1.10.1 (unreleased) + +### Compatibility + +- {issue}`#372` (backport): Allow click 8.1.x ### Compatibility From 7d534eb5b76e22ef5b2ed6eef47979c986517ddf Mon Sep 17 00:00:00 2001 From: Tony Narlock Date: Sun, 17 Apr 2022 10:15:34 -0500 Subject: [PATCH 13/16] Tag v1.10.1 (click 8.1.x compatibility) --- pyproject.toml | 2 +- tmuxp/__about__.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 178afe407a2..400f7621959 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "tmuxp" -version = "1.10.0" +version = "1.10.1" description = "tmux session manager" license = "MIT" authors = ["Tony Narlock "] diff --git a/tmuxp/__about__.py b/tmuxp/__about__.py index 8f87c969c5e..5aeb1b9358a 100644 --- a/tmuxp/__about__.py +++ b/tmuxp/__about__.py @@ -1,6 +1,6 @@ __title__ = "tmuxp" __package_name__ = "tmuxp" -__version__ = "1.10.0" +__version__ = "1.10.1" __description__ = "tmux session manager" __email__ = "tony@git-pull.com" __author__ = "Tony Narlock" From 8064095de21edf0e75487506f28c47922541f666 Mon Sep 17 00:00:00 2001 From: Tony Narlock Date: Sun, 17 Apr 2022 10:17:37 -0500 Subject: [PATCH 14/16] docs(CHANGES): Repair changelog (that I broke...) --- CHANGES | 2 ++ 1 file changed, 2 insertions(+) diff --git a/CHANGES b/CHANGES index e3c1eccabe8..42806cd0c03 100644 --- a/CHANGES +++ b/CHANGES @@ -25,6 +25,8 @@ $ pipx install --suffix=@next 'tmuxp' --pip-args '\--pre' --force - {issue}`#372` (backport): Allow click 8.1.x +## tmuxp 1.10.0 (2022-03-19) + ### Compatibility - Final python 3.7 and 3.8 release From e1cf2004d00d92c4d635b4945cc3a728ede7e40f Mon Sep 17 00:00:00 2001 From: Tony Narlock Date: Sun, 17 Apr 2022 10:19:11 -0500 Subject: [PATCH 15/16] docs(CHANGES): Note release date of 1.10.1 --- CHANGES | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CHANGES b/CHANGES index 42806cd0c03..04c2846d345 100644 --- a/CHANGES +++ b/CHANGES @@ -19,7 +19,7 @@ $ pipx install --suffix=@next 'tmuxp' --pip-args '\--pre' --force - _Insert changes/features/fixes for next release here_ -## tmuxp 1.10.1 (unreleased) +## tmuxp 1.10.1 (2022-04-17) ### Compatibility From 3bc95ae833d58b25f43ae12ccd0ec980686840b0 Mon Sep 17 00:00:00 2001 From: Tony Narlock Date: Tue, 26 Apr 2022 06:03:39 -0500 Subject: [PATCH 16/16] docs(CHANGES): Fix issue link --- CHANGES | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CHANGES b/CHANGES index 04c2846d345..29f4b10b4a3 100644 --- a/CHANGES +++ b/CHANGES @@ -23,7 +23,7 @@ $ pipx install --suffix=@next 'tmuxp' --pip-args '\--pre' --force ### Compatibility -- {issue}`#372` (backport): Allow click 8.1.x +- {issue}`#773` (backport): Allow click 8.1.x ## tmuxp 1.10.0 (2022-03-19)