Embark 0.2.0
New to Embark?
If you are new to Embark, see the documentation for a full guide
To Update to 0.2.0
npm update -g embark-framework
In this release
Support for bigger contracts
Previously no gas limit was set which was causing issues with bigger contracts. this can now be configured at config/blockchain.yml with the gas_limit option. by default this value is 100000.
web3.js 0.5.0
The web3 lib version has been updated to 0.5.0, the latest version.
config updates
You can choose the order in which to include files (for e.g to include a lib before another), in 0.1.x there were sometimes issues doing this which have been fixed in this version.
Update guide
See "embark demo" for differences. It's best to just start "embark new", in future versions there will be an "embark update" option. However, at the moment if you need to update an existing app without starting over, then the following should work:
in package.json for the depedencies
- update to embark 0.2.0
- add "hashmerge": "^1.0.2"
in Gruntfile.coffee
- replace grunt.config.merge(your config) with grunt.initConfig(@initEmbarkConfig(your config))
followed by npm install
Thanks
Special thanks to Marek Kotewicz for contributions to this release.