aether-browser 0.2.1__tar.gz → 0.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.4
2
2
  Name: aether-browser
3
- Version: 0.2.1
3
+ Version: 0.2.2
4
4
  Summary: Client and CLI for Agent Browser by Aether AI: drive one self-hosted Chrome session over a closed HTTP API and watch or take over that same session through noVNC.
5
5
  Project-URL: Homepage, https://github.com/AetherAI3/agent-browser
6
6
  Project-URL: Repository, https://github.com/AetherAI3/agent-browser
@@ -25,6 +25,8 @@ Classifier: Typing :: Typed
25
25
  Requires-Python: >=3.10
26
26
  Description-Content-Type: text/markdown
27
27
 
28
+ <!-- mcp-name: io.github.AetherAI3/agent-browser -->
29
+
28
30
  # aether-browser
29
31
 
30
32
  Client and CLI for **[Agent Browser](https://github.com/AetherAI3/agent-browser) by Aether AI** —
@@ -146,7 +148,7 @@ rejects unknown fields.
146
148
 
147
149
  ## Status
148
150
 
149
- `0.2.1` tracks Agent Browser `v0.2.1` and its `api_version: "v1"` contract, and is versioned in
151
+ `0.2.2` tracks Agent Browser `v0.2.2` and its `api_version: "v1"` contract, and is versioned in
150
152
  lockstep with the npm client. Issues and design discussion are welcome on
151
153
  [the repository](https://github.com/AetherAI3/agent-browser/issues).
152
154
 
@@ -1,3 +1,5 @@
1
+ <!-- mcp-name: io.github.AetherAI3/agent-browser -->
2
+
1
3
  # aether-browser
2
4
 
3
5
  Client and CLI for **[Agent Browser](https://github.com/AetherAI3/agent-browser) by Aether AI** —
@@ -119,7 +121,7 @@ rejects unknown fields.
119
121
 
120
122
  ## Status
121
123
 
122
- `0.2.1` tracks Agent Browser `v0.2.1` and its `api_version: "v1"` contract, and is versioned in
124
+ `0.2.2` tracks Agent Browser `v0.2.2` and its `api_version: "v1"` contract, and is versioned in
123
125
  lockstep with the npm client. Issues and design discussion are welcome on
124
126
  [the repository](https://github.com/AetherAI3/agent-browser/issues).
125
127
 
@@ -7,7 +7,7 @@ build-backend = "hatchling.build"
7
7
  # tests/test_packaging.py fails the build if the two ever drift apart.
8
8
  [project]
9
9
  name = "aether-browser"
10
- version = "0.2.1"
10
+ version = "0.2.2"
11
11
  description = "Client and CLI for Agent Browser by Aether AI: drive one self-hosted Chrome session over a closed HTTP API and watch or take over that same session through noVNC."
12
12
  readme = "README.md"
13
13
  requires-python = ">=3.10"
@@ -35,4 +35,4 @@ __all__ = [
35
35
  "session",
36
36
  ]
37
37
 
38
- __version__ = "0.2.1"
38
+ __version__ = "0.2.2"
@@ -25,7 +25,7 @@ REPO = "https://github.com/AetherAI3/agent-browser"
25
25
  NOVNC_URL = "http://127.0.0.1:6080/vnc.html"
26
26
  # The published source tag for this client. `up` builds this exact tree, so the container
27
27
  # and the client always speak the same api_version.
28
- SOURCE_TAG = "v0.2.1"
28
+ SOURCE_TAG = "v0.2.2"
29
29
 
30
30
  _COLOR = sys.stdout.isatty() and not os.environ.get("NO_COLOR")
31
31
 
@@ -61,7 +61,7 @@ class _FakeBrowser:
61
61
  def health(self, **_: Any) -> dict[str, Any]:
62
62
  return {
63
63
  "status": "ok",
64
- "version": "0.2.1",
64
+ "version": "0.2.2",
65
65
  "browser_ready": True,
66
66
  "session_active": False,
67
67
  "slots_available": 1,
File without changes