twd-m4sc0 1.2.1__tar.gz → 1.2.2__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: twd_m4sc0
3
- Version: 1.2.1
3
+ Version: 1.2.2
4
4
  Summary: A tool to temporarily save and go to a working directory
5
5
  Home-page: https://github.com/m4sc0/twd
6
6
  Author: m4sc0
@@ -66,6 +66,12 @@ twd -g
66
66
  twd -l
67
67
  ```
68
68
 
69
+ - Unset the TWD and delete the file
70
+
71
+ ```bash
72
+ twd -u
73
+ ```
74
+
69
75
  ### Optional Parameters
70
76
 
71
77
  #### Simple Output
@@ -53,6 +53,12 @@ twd -g
53
53
  twd -l
54
54
  ```
55
55
 
56
+ - Unset the TWD and delete the file
57
+
58
+ ```bash
59
+ twd -u
60
+ ```
61
+
56
62
  ### Optional Parameters
57
63
 
58
64
  #### Simple Output
@@ -2,7 +2,7 @@ from setuptools import setup, find_packages
2
2
 
3
3
  setup(
4
4
  name="twd_m4sc0",
5
- version="1.2.1",
5
+ version="1.2.2",
6
6
  packages=find_packages(),
7
7
  entry_points={
8
8
  "console_scripts": [
@@ -89,11 +89,11 @@ def main():
89
89
  if args.shell:
90
90
  print('''
91
91
  function twd() {
92
- output=$(python3 -m twd "$@")
92
+ output=$(python3 -m twd "$@");
93
93
  if [[ "$1" == "-g" ]]; then
94
- eval "$output"
94
+ eval "$output";
95
95
  else
96
- echo "$output"
96
+ echo "$output";
97
97
  fi
98
98
  }
99
99
  ''')
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: twd_m4sc0
3
- Version: 1.2.1
3
+ Version: 1.2.2
4
4
  Summary: A tool to temporarily save and go to a working directory
5
5
  Home-page: https://github.com/m4sc0/twd
6
6
  Author: m4sc0
@@ -66,6 +66,12 @@ twd -g
66
66
  twd -l
67
67
  ```
68
68
 
69
+ - Unset the TWD and delete the file
70
+
71
+ ```bash
72
+ twd -u
73
+ ```
74
+
69
75
  ### Optional Parameters
70
76
 
71
77
  #### Simple Output
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes