From 532ab7fae06f1c6e34f4ea144414d9d36d0d5076 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?G=C3=A9ry=20Debongnie?= Date: Thu, 9 Mar 2023 13:11:21 +0100 Subject: [PATCH] [REL] v2.0.8 # v2.0.8 - [IMP] implement .alike suffix on props - [IMP] release: add version number on App - [IMP] app: add name as a config option - [FIX] runtime, compiler: fix refs getting set or unset incorrectly - [FIX] compiler: call translate function with correct string - [FIX] compiler: properly handle readonly attribute/readOnly property - [REF] blockdom,compiler: implement properties - [REF] tests: move properties tests in own file - [FIX] compiler: dynamic value on inputs doesn't turn 0 into empty string --- package.json | 2 +- src/version.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/package.json b/package.json index 328782d3..1669585e 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@odoo/owl", - "version": "2.0.7", + "version": "2.0.8", "description": "Odoo Web Library (OWL)", "main": "dist/owl.cjs.js", "module": "dist/owl.es.js", diff --git a/src/version.ts b/src/version.ts index bec7bf6c..f0210427 100644 --- a/src/version.ts +++ b/src/version.ts @@ -1,2 +1,2 @@ // do not modify manually. This value is updated by the release script. -export const version = "2.0.7"; +export const version = "2.0.8";