@@ -39,7 +39,7 @@ export type ExecFunction = (
3939 * @example
4040 * ```typescript
4141 * const validator = new EnvironmentValidator();
42- * await validator.validate('0.25 .0');
42+ * await validator.validate('0.26 .0');
4343 * const version = await validator.getDevToolsVersion();
4444 * ```
4545 */
@@ -100,7 +100,7 @@ export class EnvironmentValidator {
100100 * @throws {Error } If the CLI is not available or command fails
101101 * @example
102102 * ```typescript
103- * const toolchainVersion = await validator.getToolchainVersion('0.25 .0');
103+ * const toolchainVersion = await validator.getToolchainVersion('0.26 .0');
104104 * console.log(`Toolchain: ${toolchainVersion}`);
105105 * ```
106106 */
@@ -122,7 +122,7 @@ export class EnvironmentValidator {
122122 * @example
123123 * ```typescript
124124 * try {
125- * await validator.validate('0.25 .0');
125+ * await validator.validate('0.26 .0');
126126 * console.log('Environment validated successfully');
127127 * } catch (error) {
128128 * if (error instanceof CompactCliNotFoundError) {
@@ -215,7 +215,7 @@ export class FileDiscovery {
215215 * const result = await compiler.compileFile(
216216 * 'contracts/Token.compact',
217217 * '--skip-zk --verbose',
218- * '0.25 .0'
218+ * '0.26 .0'
219219 * );
220220 * console.log('Compilation output:', result.stdout);
221221 * ```
@@ -247,7 +247,7 @@ export class CompilerService {
247247 * const result = await compiler.compileFile(
248248 * 'security/AccessControl.compact',
249249 * '--skip-zk',
250- * '0.25 .0'
250+ * '0.26 .0'
251251 * );
252252 * console.log('Success:', result.stdout);
253253 * } catch (error) {
@@ -296,7 +296,7 @@ export class CompilerService {
296296 * @class UIService
297297 * @example
298298 * ```typescript
299- * UIService.displayEnvInfo('compact 0.1.0', 'Compactc 0.25 .0', 'security');
299+ * UIService.displayEnvInfo('compact 0.1.0', 'Compactc 0.26 .0', 'security');
300300 * UIService.printOutput('Compilation successful', chalk.green);
301301 * ```
302302 */
@@ -333,9 +333,9 @@ export const UIService = {
333333 * ```typescript
334334 * UIService.displayEnvInfo(
335335 * 'compact 0.1.0',
336- * 'Compactc version: 0.25 .0',
336+ * 'Compactc version: 0.26 .0',
337337 * 'security',
338- * '0.25 .0'
338+ * '0.26 .0'
339339 * );
340340 * ```
341341 */
@@ -419,7 +419,7 @@ export const UIService = {
419419 * @example
420420 * ```typescript
421421 * // Basic usage
422- * const compiler = new CompactCompiler('--skip-zk', 'security', '0.25 .0');
422+ * const compiler = new CompactCompiler('--skip-zk', 'security', '0.26 .0');
423423 * await compiler.compile();
424424 *
425425 * // Factory method usage
@@ -452,7 +452,7 @@ export class CompactCompiler {
452452 *
453453 * @param flags - Space-separated compiler flags (e.g., '--skip-zk --verbose')
454454 * @param targetDir - Optional subdirectory within src/ to compile (e.g., 'security', 'token')
455- * @param version - Optional toolchain version to use (e.g., '0.25 .0')
455+ * @param version - Optional toolchain version to use (e.g., '0.26 .0')
456456 * @param execFn - Optional custom exec function for dependency injection
457457 * @example
458458 * ```typescript
@@ -463,7 +463,7 @@ export class CompactCompiler {
463463 * const compiler = new CompactCompiler('', 'security');
464464 *
465465 * // Compile with specific version
466- * const compiler = new CompactCompiler('--skip-zk', undefined, '0.25 .0');
466+ * const compiler = new CompactCompiler('--skip-zk', undefined, '0.26 .0');
467467 *
468468 * // For testing with custom exec function
469469 * const mockExec = vi.fn();
@@ -500,11 +500,11 @@ export class CompactCompiler {
500500 * @throws {Error } If --dir flag is provided without a directory name
501501 * @example
502502 * ```typescript
503- * // Parse command line: compact-compiler --dir security --skip-zk +0.25 .0
503+ * // Parse command line: compact-compiler --dir security --skip-zk +0.26 .0
504504 * const compiler = CompactCompiler.fromArgs([
505505 * '--dir', 'security',
506506 * '--skip-zk',
507- * '+0.25 .0'
507+ * '+0.26 .0'
508508 * ]);
509509 *
510510 * // With environment variable
0 commit comments