Skip to content

Commit 0c8bc9e

Browse files
committed
v0.4.1
1 parent 8882903 commit 0c8bc9e

File tree

8 files changed

+59
-6
lines changed

8 files changed

+59
-6
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 = 0.4.0
2+
current_version = 0.4.1
33

44
[bumpversion:file:setup.cfg]
55

CHANGELOG.md

Lines changed: 15 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,21 @@ All notable changes to this project will be documented in this file. Dates are d
44

55
Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog).
66

7-
#### [v0.2.5](https://github.com/oceanprotocol/ocean-contracts/compare/v0.3.5...v0.2.5)
7+
#### [v0.4.1](https://github.com/oceanprotocol/ocean-contracts/compare/v0.4.0...v0.4.1)
8+
9+
> 31 August 2020
10+
11+
- update slither report [`#192`](https://github.com/oceanprotocol/ocean-contracts/pull/192)
12+
- Fix/slither results [`#184`](https://github.com/oceanprotocol/ocean-contracts/pull/184)
13+
- fix input validation in BPool [`#180`](https://github.com/oceanprotocol/ocean-contracts/pull/180)
14+
- Fix/minor errors in dt template [`#183`](https://github.com/oceanprotocol/ocean-contracts/pull/183)
15+
- Fix/more tests for fixed rate [`#182`](https://github.com/oceanprotocol/ocean-contracts/pull/182)
16+
- Release/v0.4.0 [`#178`](https://github.com/oceanprotocol/ocean-contracts/pull/178)
17+
- prepare for release v0.4.1 [`8882903`](https://github.com/oceanprotocol/ocean-contracts/commit/8882903225e072d6ef7e9baf0354eb0707426e23)
18+
- add slither report [`d10e346`](https://github.com/oceanprotocol/ocean-contracts/commit/d10e346963a8ebde1aa224c1ceff50f6bf7f5da3)
19+
- fix (#191) [`a09aa00`](https://github.com/oceanprotocol/ocean-contracts/commit/a09aa00ea6b42bb1815de3f8aad1c2809ee9cb92)
20+
21+
#### [v0.4.0](https://github.com/oceanprotocol/ocean-contracts/compare/v0.3.5...v0.4.0)
822

923
> 29 August 2020
1024

docs/RELEASE_PROCESS.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,8 @@ cp ./build/contracts/* ./artifacts/
1515
- Update contracts documentation
1616
```bash
1717
npm run doc:generate
18+
git add .
19+
git commit -m 'prepare for a new release'
1820
```
1921

2022
- install bumpversion `pip install bumpversion` (if you don't have it installed on your machine)

docs/deployments.md

Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,43 @@
22

33
## Rinkeby
44

5+
### V0.4.1
6+
7+
The contracts addresses for the latest deployment:
8+
9+
Find [here](https://github.com/oceanprotocol/atlantic/blob/master/logs/Rinkeby-datatokens-deployment-31082020.txt) more deployment details
10+
11+
```bash
12+
Deploying 'OPFCommunityFeeCollector'
13+
-----------------------------
14+
> contract address: 0x0e99d409d45DEcABfc663Fa5D9865b5d314FBC18
15+
16+
Deploying 'DataTokenTemplate'
17+
-----------------------------
18+
> contract address: 0x1E8c9E895a2Ae0D3Fbd60a70F1b12feF2e6BcBCd
19+
20+
Deploying 'DTFactory'
21+
---------------------
22+
> contract address: 0x3ECd1429101f93149D799Ef257C07a2B1Dc30897
23+
24+
Deploying 'BPool'
25+
-----------------
26+
> contract address: 0xfF5Ec3cEB493d0Ed6ca2EA76Fb0DDF5C2b537e49
27+
28+
Deploying 'BFactory'
29+
--------------------
30+
> contract address: 0x9B90A1358fbeEC1C4bB1DA7D4E85C708f87556Ec
31+
32+
Deploying 'FixedRateExchange'
33+
--------------------
34+
> contract address: 0x991c08bD00761A299d3126a81a985329096896D4
35+
36+
Deploying 'DDO'
37+
--------------------
38+
> contract address: 0xEfA25E39192b3175d451D79C1c0a41Fa3C32c87d
39+
40+
```
41+
542
### V0.3.5
643

744
The contracts addresses for the latest deployment:

package-lock.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@oceanprotocol/contracts",
3-
"version": "0.4.0",
3+
"version": "0.4.1",
44
"description": "Ocean Protocol L1 - DataTokens",
55
"bugs": {
66
"url": "https://github.com/oceanprotocol/contracts/issues"

setup.cfg

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

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,6 @@
5050
test_suite='tests',
5151
tests_require=test_requirements,
5252
url='https://github.com/oceanprotocol/ocean-contracts',
53-
version='0.4.0',
53+
version='0.4.1',
5454
zip_safe=False,
5555
)

0 commit comments

Comments
 (0)