proxyctl 0.1.1__tar.gz → 0.1.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,9 +1,11 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: proxyctl
3
- Version: 0.1.1
3
+ Version: 0.1.2
4
4
  Summary: Proxy configuration lifecycle management for macOS and Linux
5
5
  Project-URL: Homepage, https://github.com/crhan/proxyctl
6
6
  Project-URL: Issues, https://github.com/crhan/proxyctl/issues
7
+ Project-URL: Changelog, https://github.com/crhan/proxyctl/blob/main/CHANGELOG.md
8
+ Project-URL: Repository, https://github.com/crhan/proxyctl
7
9
  Author-email: crhan <crhan123@gmail.com>
8
10
  License: MIT
9
11
  License-File: LICENSE
@@ -225,6 +227,10 @@ python3 bin/proxyctl status
225
227
  export PROXYCTL_DEBUG=1
226
228
  ```
227
229
 
230
+ ## Changelog
231
+
232
+ 版本变更记录见 [CHANGELOG.md](https://github.com/crhan/proxyctl/blob/main/CHANGELOG.md)。
233
+
228
234
  ## License
229
235
 
230
236
  MIT
@@ -198,6 +198,10 @@ python3 bin/proxyctl status
198
198
  export PROXYCTL_DEBUG=1
199
199
  ```
200
200
 
201
+ ## Changelog
202
+
203
+ 版本变更记录见 [CHANGELOG.md](https://github.com/crhan/proxyctl/blob/main/CHANGELOG.md)。
204
+
201
205
  ## License
202
206
 
203
207
  MIT
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = "proxyctl"
3
- version = "0.1.1"
3
+ version = "0.1.2"
4
4
  description = "Proxy configuration lifecycle management for macOS and Linux"
5
5
  readme = "README.md"
6
6
  requires-python = ">=3.10"
@@ -27,6 +27,8 @@ dependencies = ["pyyaml>=6.0"]
27
27
  [project.urls]
28
28
  Homepage = "https://github.com/crhan/proxyctl"
29
29
  Issues = "https://github.com/crhan/proxyctl/issues"
30
+ Changelog = "https://github.com/crhan/proxyctl/blob/main/CHANGELOG.md"
31
+ Repository = "https://github.com/crhan/proxyctl"
30
32
 
31
33
  [project.scripts]
32
34
  proxyctl = "proxyctl.cli:main"
@@ -1,3 +1,3 @@
1
1
  """proxyctl — Proxy configuration lifecycle management."""
2
2
 
3
- __version__ = "0.1.1"
3
+ __version__ = "0.1.2"
@@ -1176,7 +1176,7 @@ def cmd_env(config: dict, unset: bool = False):
1176
1176
 
1177
1177
  # ── 帮助 ──────────────────────────────────────────────────────────────────────
1178
1178
 
1179
- VERSION = "0.1.1"
1179
+ VERSION = "0.1.2"
1180
1180
 
1181
1181
  def cmd_help(verbose: bool = False):
1182
1182
  """打印帮助信息
File without changes
File without changes
File without changes
File without changes
File without changes