Skip to content

Commit bdef2c2

Browse files
authored
Version 4.3.0 (#877)
* Upgrade schema number before version upgrade. * Bump version: 4.2.0 → 4.3.0
1 parent a4953b9 commit bdef2c2

File tree

9 files changed

+9
-9
lines changed

9 files changed

+9
-9
lines changed

.bumpversion.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[bumpversion]
2-
current_version = 4.2.0
2+
current_version = 4.3.0
33
commit = True
44
tag = True
55

API.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -149,7 +149,7 @@
149149
{
150150
"@context": ["https://w3id.org/did/v1"],
151151
"id": "did:op:56c3d0ac76c02cc5cec98993be2b23c8a681800c08f2ff77d40c895907517280",
152-
"version": "4.2.0",
152+
"version": "4.3.0",
153153
"chainId": 1337,
154154
"nftAddress": "0xabc",
155155
"metadata": {

aquarius/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,5 +9,5 @@
99
__author__ = """OceanProtocol"""
1010
# fmt: off
1111
# bumpversion needs single quotes
12-
__version__ = '4.2.0'
12+
__version__ = '4.3.0'
1313
# fmt: on

aquarius/ddo_checker/shacl_checker.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,12 +13,12 @@
1313
from aquarius.events.util import make_did
1414

1515

16-
CURRENT_VERSION = "4.2.0"
16+
CURRENT_VERSION = "4.3.0"
1717

1818

1919
def get_schema(version=CURRENT_VERSION):
2020
"""Gets the schema file corresponding to the version."""
21-
assert version in ["4.0.0", "4.1.0", "4.2.0"], "Can't find schema {}".format(
21+
assert version in ["4.0.0", "4.1.0", "4.3.0"], "Can't find schema {}".format(
2222
version
2323
)
2424

aquarius/ddo_checker/shacl_schemas/v4/remote_4.2.0.ttl renamed to aquarius/ddo_checker/shacl_schemas/v4/remote_4.3.0.ttl

File renamed without changes.

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@
9595
url="https://github.com/oceanprotocol/aquarius",
9696
# fmt: off
9797
# bumpversion needs single quotes
98-
version='4.2.0',
98+
version='4.3.0',
9999
# fmt: on
100100
zip_safe=False,
101101
)

tests/ddos/ddo_event_sample_v4.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
"id": "did:op:ffa5037987b74fbab600d7515605146bb7babcb929c94c60ba93ac5ceda56775",
88
"created": "2000-10-31T01:30:00.000-05:00",
99
"updated": "2000-10-31T01:30:00.000-05:00",
10-
"version": "4.2.0",
10+
"version": "4.3.0",
1111
"chainId": 1337,
1212
"metadata": {
1313
"type": "dataset",

tests/ddos/ddo_sample1_v4.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
json_dict = {
66
"@context": ["https://w3id.org/did/v1"],
77
"id": "did:op:601075d81cb25f2ceb669c8527c0186596a15baeebcc1a69be26960ada17d222",
8-
"version": "4.2.0",
8+
"version": "4.3.0",
99
"chainId": 1337,
1010
"nftAddress": "0x37BB53e3d293494DE59fBe1FF78500423dcFd43B",
1111
"metadata": {

tests/ddos/ddo_sample_algorithm_v4.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
algorithm_ddo_sample = {
66
"@context": ["https://w3id.org/did/v1"],
77
"id": "did:op:deb8141292dfa2238b2ad1a5b940510da610f6f1eaec5b9b32a2b2f3394bb5e8",
8-
"version": "4.2.0",
8+
"version": "4.3.0",
99
"chainId": 1337,
1010
"nftAddress": "0x22BB53e3d293494DE59fBe1FF78500423dcFd43B",
1111
"proof": {

0 commit comments

Comments
 (0)