nerva-py 1.0.0__tar.gz → 1.0.1__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.3
2
2
  Name: nerva-py
3
- Version: 1.0.0
3
+ Version: 1.0.1
4
4
  Summary: Python bindings for the JSON RPC interface of the Nerva cryptocurrency.
5
5
  Author-email: Sayan Bhattacharyya <sayan@sn1f3rt.dev>
6
6
  License-Expression: MIT
@@ -37,7 +37,7 @@ class VersionInfo(NamedTuple):
37
37
 
38
38
 
39
39
  version_info: VersionInfo = VersionInfo(
40
- major=1, minor=0, micro=0, releaselevel="final", serial=0
40
+ major=1, minor=0, micro=1, releaselevel="final", serial=0
41
41
  )
42
42
 
43
43
  __version__ = str(version_info)
@@ -4,10 +4,10 @@ from typing import Any, Dict, List, Optional
4
4
 
5
5
  import aiohttp
6
6
 
7
- __all__ = ["DaemonJSONRPC", "DaemonOther"]
7
+ __all__ = ["DaemonRPC", "DaemonLegacy"]
8
8
 
9
9
 
10
- class DaemonJSONRPC:
10
+ class DaemonRPC:
11
11
  """
12
12
  A class to interact with the Nerva daemon's JSON-RPC interface.
13
13
 
@@ -634,7 +634,7 @@ class DaemonJSONRPC:
634
634
  return await self._request("add_peer", {"host": host})
635
635
 
636
636
 
637
- class DaemonOther:
637
+ class DaemonLegacy:
638
638
  """
639
639
  A class to interact with the Nerva daemon's independent endpoint methods.
640
640
 
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = "nerva-py"
3
- version = "1.0.0"
3
+ version = "1.0.1"
4
4
  description = "Python bindings for the JSON RPC interface of the Nerva cryptocurrency."
5
5
  license = "MIT"
6
6
  authors = [
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes