Which htmlbars version has to be used for full functionality of ember 1.11?

I created a new ember-cli project based on version 0.2.0 and changed to ember version to 1.11 beta 5. I created a template with an input:

<input value={{email}}>

Now I used the ember inspector to look a the controller dependent to the template but the value of email didn’t change if I change the value of email.

Someone has an idea?

You have to use {{input}} for two way bindings of an <input> element still.

Thanks for your reply. Will this behaviour change after the official release of ember 1.11?