Skip to content

Commit 7f5cf59

Browse files
committed
Bump version: 0.0.9 → 0.1.0
1 parent 08f2db0 commit 7f5cf59

File tree

10 files changed

+10
-10
lines changed

10 files changed

+10
-10
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.0.9
2+
current_version = 0.1.0
33
commit = True
44
tag = False
55

docs/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@
6969
# built documents.
7070
#
7171
# The short X.Y version.
72-
version = u'0.0.9'
72+
version = u'0.1.0'
7373
# The full version, including alpha/beta/rc tags.
7474
release = version
7575

raiden/smart_contracts/ChannelManagerContract.sol

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import "./ChannelManagerLibrary.sol";
88
// deployment the logic is moved into a library and this contract will work
99
// only as a proxy/state container.
1010
contract ChannelManagerContract is Utils {
11-
string constant public contract_version = "0.0._";
11+
string constant public contract_version = "0.1._";
1212

1313
using ChannelManagerLibrary for ChannelManagerLibrary.Data;
1414
ChannelManagerLibrary.Data data;

raiden/smart_contracts/ChannelManagerLibrary.sol

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import "./Token.sol";
44
import "./NettingChannelContract.sol";
55

66
library ChannelManagerLibrary {
7-
string constant public contract_version = "0.0._";
7+
string constant public contract_version = "0.1._";
88

99
struct Data {
1010
Token token;

raiden/smart_contracts/EndpointRegistry.sol

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
pragma solidity ^0.4.11;
88

99
contract EndpointRegistry{
10-
string constant public contract_version = "0.0._";
10+
string constant public contract_version = "0.1._";
1111

1212
event AddressRegistered(address indexed eth_address, string socket);
1313

raiden/smart_contracts/NettingChannelContract.sol

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ pragma solidity ^0.4.11;
33
import "./NettingChannelLibrary.sol";
44

55
contract NettingChannelContract {
6-
string constant public contract_version = "0.0._";
6+
string constant public contract_version = "0.1._";
77

88
using NettingChannelLibrary for NettingChannelLibrary.Data;
99
NettingChannelLibrary.Data public data;

raiden/smart_contracts/NettingChannelLibrary.sol

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ pragma solidity ^0.4.11;
33
import "./Token.sol";
44

55
library NettingChannelLibrary {
6-
string constant public contract_version = "0.0._";
6+
string constant public contract_version = "0.1._";
77

88
struct Participant
99
{

raiden/smart_contracts/Registry.sol

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ pragma solidity ^0.4.11;
33
import "./ChannelManagerContract.sol";
44

55
contract Registry {
6-
string constant public contract_version = "0.0._";
6+
string constant public contract_version = "0.1._";
77

88
mapping(address => address) public registry;
99
address[] public tokens;

raiden/smart_contracts/Utils.sol

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
pragma solidity ^0.4.11;
22

33
contract Utils {
4-
string constant public contract_version = "0.0._";
4+
string constant public contract_version = "0.1._";
55
/// @notice Check if a contract exists
66
/// @param channel The address to check whether a contract is deployed or not
77
/// @return True if a contract exists, false otherwise

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,7 @@ def run(self):
126126

127127
test_requirements = []
128128

129-
version = '0.0.9' # Do not edit: this is maintained by bumpversion (see .bumpversion.cfg)
129+
version = '0.1.0' # Do not edit: this is maintained by bumpversion (see .bumpversion.cfg)
130130

131131

132132
def read_version_from_git():

0 commit comments

Comments
 (0)