diff --git a/docs.wrm/index.wrm b/docs.wrm/index.wrm index 3190c7583..823313e83 100644 --- a/docs.wrm/index.wrm +++ b/docs.wrm/index.wrm @@ -1,4 +1,4 @@ -_section: Documentation (BETA) @ +_section: Documentation (BETA) @ @nav **NOTE:** This documentation is for the **beta branch** (i.e. ``v6-beta-exports``), which is still undergoing minor changes. diff --git a/src.ts/_admin/utils/git.ts b/src.ts/_admin/utils/git.ts index 55ca7f116..cdadafa3a 100644 --- a/src.ts/_admin/utils/git.ts +++ b/src.ts/_admin/utils/git.ts @@ -24,15 +24,12 @@ export async function getModifiedTime(filename: string): Promise if (!result.ok) { throw new Error(`git log error`); } let log = result.stdout.trim(); - console.log("LL", log); if (!log) { return null; } for (let line of log.split("\n")) { line = line.trim(); - console.log("L", line); if (!line) { break; } const match = line.match(/^date:\s+(.*)$/i); - console.log("M", match); if (match) { return (new Date(match[1].trim())).getTime();; } diff --git a/src.ts/_version.ts b/src.ts/_version.ts index 14b3b78c8..2336b00f0 100644 --- a/src.ts/_version.ts +++ b/src.ts/_version.ts @@ -1 +1 @@ -export const version: string = "6.0.0-beta-exports.8"; +export const version: string = "6.0.0-beta-exports.9"; diff --git a/src.ts/abi/index.ts b/src.ts/abi/index.ts index 4855a4a81..7586df459 100644 --- a/src.ts/abi/index.ts +++ b/src.ts/abi/index.ts @@ -2,6 +2,7 @@ * Explain about ABI here... * * @_section api/abi:Application Binary Interface [abi] + * @_navTitle: ABI */ diff --git a/src.ts/index.ts b/src.ts/index.ts index 571fe8700..d2f4476d8 100644 --- a/src.ts/index.ts +++ b/src.ts/index.ts @@ -3,6 +3,7 @@ * functions, classes and types offered by the Ethers library. * * @_section: api:API Specification [about-api] + * @_navTitle: API */ import * as ethers from "./ethers.js";