Skip to content

Commit

Permalink
Version 4.3.0 (#877)
Browse files Browse the repository at this point in the history
* Upgrade schema number before version upgrade.
* Bump version: 4.2.0 → 4.3.0
  • Loading branch information
calina-c authored Aug 29, 2022
1 parent a4953b9 commit bdef2c2
Show file tree
Hide file tree
Showing 9 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion .bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 4.2.0
current_version = 4.3.0
commit = True
tag = True

Expand Down
2 changes: 1 addition & 1 deletion API.md
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,7 @@
{
"@context": ["https://w3id.org/did/v1"],
"id": "did:op:56c3d0ac76c02cc5cec98993be2b23c8a681800c08f2ff77d40c895907517280",
"version": "4.2.0",
"version": "4.3.0",
"chainId": 1337,
"nftAddress": "0xabc",
"metadata": {
Expand Down
2 changes: 1 addition & 1 deletion aquarius/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,5 +9,5 @@
__author__ = """OceanProtocol"""
# fmt: off
# bumpversion needs single quotes
__version__ = '4.2.0'
__version__ = '4.3.0'
# fmt: on
4 changes: 2 additions & 2 deletions aquarius/ddo_checker/shacl_checker.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,12 +13,12 @@
from aquarius.events.util import make_did


CURRENT_VERSION = "4.2.0"
CURRENT_VERSION = "4.3.0"


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

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@
url="https://github.com/oceanprotocol/aquarius",
# fmt: off
# bumpversion needs single quotes
version='4.2.0',
version='4.3.0',
# fmt: on
zip_safe=False,
)
2 changes: 1 addition & 1 deletion tests/ddos/ddo_event_sample_v4.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
"id": "did:op:ffa5037987b74fbab600d7515605146bb7babcb929c94c60ba93ac5ceda56775",
"created": "2000-10-31T01:30:00.000-05:00",
"updated": "2000-10-31T01:30:00.000-05:00",
"version": "4.2.0",
"version": "4.3.0",
"chainId": 1337,
"metadata": {
"type": "dataset",
Expand Down
2 changes: 1 addition & 1 deletion tests/ddos/ddo_sample1_v4.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
json_dict = {
"@context": ["https://w3id.org/did/v1"],
"id": "did:op:601075d81cb25f2ceb669c8527c0186596a15baeebcc1a69be26960ada17d222",
"version": "4.2.0",
"version": "4.3.0",
"chainId": 1337,
"nftAddress": "0x37BB53e3d293494DE59fBe1FF78500423dcFd43B",
"metadata": {
Expand Down
2 changes: 1 addition & 1 deletion tests/ddos/ddo_sample_algorithm_v4.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
algorithm_ddo_sample = {
"@context": ["https://w3id.org/did/v1"],
"id": "did:op:deb8141292dfa2238b2ad1a5b940510da610f6f1eaec5b9b32a2b2f3394bb5e8",
"version": "4.2.0",
"version": "4.3.0",
"chainId": 1337,
"nftAddress": "0x22BB53e3d293494DE59fBe1FF78500423dcFd43B",
"proof": {
Expand Down

0 comments on commit bdef2c2

Please sign in to comment.