Automatically binds to HTML when not asked!

I’ve been following the starter tutorial. I have the following body:

<body ng-app="awesome">
  <ion-side-menus>

  <ion-side-menu-content>
    <ion-header-bar class="bar-dark">
      <h1 class="title">Awesome</h1>
    </ion-header-bar>
    <ion-content>
    </ion-content>
  </ion-side-menu-content>

  <ion-side-menu side="left">
    <ion-header-bar class="bar-dark">
      <h1 class="title">Projects</h1>
    </ion-header-bar>
  </ion-side-menu>

  </ion-side-menus>
</body>

But the generated HTML is auto ng-bound to the HTML properties! I am really frustrated and can’t get rid of this behaviour:

<header class="bar-dark bar bar-header disable-user-behavior">
  <div class="buttons">
  </div>
  <h1 class="title ng-binding" ng-bind-html="title"></h1>
  <div class="buttons">
  </div>
</header>

My code is standard:

angular.module('awesome', ['ionic']);

with linking to ionic.css and ionic.bundle.js in the head.

I didn’t ask it to add ng-binding and ng-bind-html!

I was using version 0.9…
Upgraded to 1.0.0rc_something and all ok now.