agentledger-postgres 1.2.3__tar.gz → 1.2.4__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.3
3
+ Version: 1.2.4
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
@@ -35,6 +35,6 @@ This package keeps the runtime core dependency-light while making Postgres an ex
35
35
  Certification:
36
36
 
37
37
  ```bash
38
- python3 -m agentledger adapter certify --kind postgres --adapter-version 1.2.3
38
+ python3 -m agentledger adapter certify --kind postgres --adapter-version 1.2.4
39
39
  ```
40
40
 
@@ -19,6 +19,6 @@ This package keeps the runtime core dependency-light while making Postgres an ex
19
19
  Certification:
20
20
 
21
21
  ```bash
22
- python3 -m agentledger adapter certify --kind postgres --adapter-version 1.2.3
22
+ python3 -m agentledger adapter certify --kind postgres --adapter-version 1.2.4
23
23
  ```
24
24
 
@@ -4,7 +4,7 @@ build-backend = "hatchling.build"
4
4
 
5
5
  [project]
6
6
  name = "agentledger-postgres"
7
- version = "1.2.3"
7
+ version = "1.2.4"
8
8
  description = "Postgres StateStore adapter package for AgentLedger"
9
9
  readme = "README.md"
10
10
  requires-python = ">=3.11"
@@ -1,6 +1,6 @@
1
1
  from agentledger.storage_postgres import POSTGRES_SCHEMA_SQL, PostgresDependencyMissing, PostgresStore, PostgresStoreConfig
2
2
 
3
- __version__ = "1.2.3"
3
+ __version__ = "1.2.4"
4
4
 
5
5
  __all__ = [
6
6
  "POSTGRES_SCHEMA_SQL",