agentledger-postgres 1.2.4__tar.gz → 1.3.0__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: agentledger-postgres
3
- Version: 1.2.4
3
+ Version: 1.3.0
4
4
  Summary: Postgres StateStore adapter package for AgentLedger
5
5
  Project-URL: Homepage, https://github.com/yaogdu/AgentLedger
6
6
  Project-URL: Repository, https://github.com/yaogdu/AgentLedger
@@ -10,7 +10,7 @@ Author: AgentLedger Contributors
10
10
  License: Apache-2.0
11
11
  Keywords: agents,postgres,runtime,state-store
12
12
  Requires-Python: >=3.11
13
- Requires-Dist: agentledger-runtime<2,>=1.2
13
+ Requires-Dist: agentledger-runtime<2,>=1.3
14
14
  Requires-Dist: psycopg[binary]>=3.1
15
15
  Description-Content-Type: text/markdown
16
16
 
@@ -30,11 +30,10 @@ store = PostgresStore(PostgresStoreConfig.from_env())
30
30
  store.init()
31
31
  ```
32
32
 
33
- This package keeps the runtime core dependency-light while making Postgres an explicit opt-in. It re-exports the stable adapter classes from `agentledger.storage_postgres` in the `1.2.x` line.
33
+ This package keeps runtime-core dependency-light while making Postgres an explicit opt-in. It re-exports the stable adapter classes from `agentledger.storage_postgres` in the current `1.3.x` release train.
34
34
 
35
35
  Certification:
36
36
 
37
37
  ```bash
38
- python3 -m agentledger adapter certify --kind postgres --adapter-version 1.2.4
38
+ python3 -m agentledger adapter certify --kind postgres --adapter-version 1.3.0
39
39
  ```
40
-
@@ -14,11 +14,10 @@ store = PostgresStore(PostgresStoreConfig.from_env())
14
14
  store.init()
15
15
  ```
16
16
 
17
- This package keeps the runtime core dependency-light while making Postgres an explicit opt-in. It re-exports the stable adapter classes from `agentledger.storage_postgres` in the `1.2.x` line.
17
+ This package keeps runtime-core dependency-light while making Postgres an explicit opt-in. It re-exports the stable adapter classes from `agentledger.storage_postgres` in the current `1.3.x` release train.
18
18
 
19
19
  Certification:
20
20
 
21
21
  ```bash
22
- python3 -m agentledger adapter certify --kind postgres --adapter-version 1.2.4
22
+ python3 -m agentledger adapter certify --kind postgres --adapter-version 1.3.0
23
23
  ```
24
-
@@ -4,7 +4,7 @@ build-backend = "hatchling.build"
4
4
 
5
5
  [project]
6
6
  name = "agentledger-postgres"
7
- version = "1.2.4"
7
+ version = "1.3.0"
8
8
  description = "Postgres StateStore adapter package for AgentLedger"
9
9
  readme = "README.md"
10
10
  requires-python = ">=3.11"
@@ -12,7 +12,7 @@ license = {text = "Apache-2.0"}
12
12
  authors = [{name = "AgentLedger Contributors"}]
13
13
  keywords = ["agents", "runtime", "postgres", "state-store"]
14
14
  dependencies = [
15
- "agentledger-runtime>=1.2,<2",
15
+ "agentledger-runtime>=1.3,<2",
16
16
  "psycopg[binary]>=3.1",
17
17
  ]
18
18
 
@@ -1,6 +1,6 @@
1
1
  from agentledger.storage_postgres import POSTGRES_SCHEMA_SQL, PostgresDependencyMissing, PostgresStore, PostgresStoreConfig
2
2
 
3
- __version__ = "1.2.4"
3
+ __version__ = "1.3.0"
4
4
 
5
5
  __all__ = [
6
6
  "POSTGRES_SCHEMA_SQL",