diff --git a/.tkb b/.tkb index a56449c3..0aacdee1 100644 --- a/.tkb +++ b/.tkb @@ -5,6 +5,16 @@ "id": "0o1UME_ZgqZdcbYksPgDI", "description": "Update Docs\n- Use wiki - Export typedoc as md and then publish to wiki", "columnId": "column-todo" + }, + "UM-Jb2pIb9vEaDWML-_Qf": { + "id": "UM-Jb2pIb9vEaDWML-_Qf", + "description": "Update logo", + "columnId": "column-todo" + }, + "dkbgaoz9hHeYNGjMi8R9L": { + "id": "dkbgaoz9hHeYNGjMi8R9L", + "description": "Add badges to the website", + "columnId": "column-todo" } }, "columns": [ @@ -12,7 +22,9 @@ "id": "column-todo", "title": "To do", "tasksIds": [ - "0o1UME_ZgqZdcbYksPgDI" + "0o1UME_ZgqZdcbYksPgDI", + "UM-Jb2pIb9vEaDWML-_Qf", + "dkbgaoz9hHeYNGjMi8R9L" ] }, { diff --git a/scripts/manual-publish.js b/scripts/manual-publish.js index ae7b300e..2e6d63a4 100644 --- a/scripts/manual-publish.js +++ b/scripts/manual-publish.js @@ -45,6 +45,8 @@ const NEW_VERSION = JSON.parse( fs.readFileSync(path.resolve(__dirname, "..", "lib", "package.json")), ).version; +pkg.version = NEW_VERSION; + const [newMajor, newMinor] = NEW_VERSION.split("."); const [oldMajor, oldMinor] = OLD_VERSION.split(".");