Skip to content

Commit

Permalink
Merge branch 'master' into hotfix_1_backmerge
Browse files Browse the repository at this point in the history
  • Loading branch information
Renelvon committed Oct 5, 2014
2 parents 317e992 + ccf3d2a commit d716c5c
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ You can financially support the project by either:
- Identity/Reputation system

## Project Status
- *OpenBazaar* is currently in **beta 1.0**
- *OpenBazaar* is currently in **beta 2.0**
- New versions are scheduled for release at the end of each month
- [Development Roadmap](https://github.com/OpenBazaar/OpenBazaar/wiki/Development-Roadmap)

Expand Down
2 changes: 1 addition & 1 deletion node/constants.py
Original file line number Diff line number Diff line change
Expand Up @@ -45,4 +45,4 @@
udpDatagramMaxSize = 8192 # 8 KB

DB_PATH = "db/ob.db"
VERSION = "0.2.0"
VERSION = "0.2.1"
2 changes: 1 addition & 1 deletion node/market.py
Original file line number Diff line number Diff line change
Expand Up @@ -357,7 +357,7 @@ def republish_contracts(self):
contract = listing.get('Contract')
keywords = contract.get('item_keywords') if contract is not None else []

t3 = Thread(target=self.update_keywords_on_network, args=(listings.get('key'), keywords,))
t3 = Thread(target=self.update_keywords_on_network, args=(listing.get('key'), keywords,))
t3.start()

# Updating the DHT index of your store's listings
Expand Down

0 comments on commit d716c5c

Please sign in to comment.