Skip to content
This repository has been archived by the owner on Nov 9, 2022. It is now read-only.

v1.1.03 Beta Release

Latest
Compare
Choose a tag to compare
@ebollens ebollens released this 31 Dec 22:32
· 19 commits to master since this release

First beta release of WebBlocks 1.1

Notable changes include:

Semantically, WebBlocks 1.1 is completely backwards compatible with WebBlocks 1.0; however, please note the following two changes to the compiler configuration:

  • WebBlocks 1.1 defaults to compile without the bootstrap adapter. For those that still need the Bootstrap adapter, the following line should be added to Rakefile-config.rb: WebBlocks.config[:src][:adapter] = 'bootstrap'
  • WebBlocks 1.1 changed the namespace for package configurations to WebBlocks.config[:src][:packages] instead of WebBlocks.config[:build][:packages]. Packages appended to the old configuration array will still be included, but issuing a .delete against WebBlocks.config[:build][:packages] will no longer work. For example, to remove the :jquery package, Rakefile-config.rb should be updated as follows: WebBlocks.config[:src][:packages].delete :query

For a full diff of changes between v1.0.11 and v1.1.03, see v1.0.11...v1.1.03